/* Bootcamp Cohort dashboard styles. Scoped under .bc- to avoid collisions. */

.bc-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  margin: 0 0 24px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.1), rgba(91, 140, 255, 0.08));
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 16px;
  flex-wrap: wrap;
}

.bc-hero__text { flex: 1 1 320px; }

.bc-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary, #a4a4bf);
  margin-bottom: 8px;
}

.bc-hero__title {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #fff);
}

.bc-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.bc-hero__stat { display: flex; flex-direction: column; gap: 4px; }

.bc-hero__stat-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  line-height: 1;
}

.bc-hero__stat-label {
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
}

.bc-hero__gauge {
  position: relative;
  width: 140px;
  height: 140px;
  flex-shrink: 0;
}

.bc-hero__gauge-fill {
  transition: stroke-dashoffset 900ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-hero__gauge-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bc-hero__gauge-num {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  line-height: 1;
}

.bc-hero__gauge-num span {
  font-size: 16px;
  color: var(--text-secondary, #a4a4bf);
  font-weight: 500;
}

.bc-hero__gauge-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary, #a4a4bf);
  margin-top: 4px;
}

/* ── Seat-package selector in the invite form ──── */
.bc-invite-batch-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary, #a4a4bf);
}
.bc-invite-batch-select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 8px;
  background: var(--bg, #0f0f1a);
  color: var(--text, #fff);
  font-size: 14px;
  font-family: inherit;
}
.bc-invite-batch-select:focus {
  outline: none;
  border-color: var(--accent, #7c5cff);
}
.bc-no-batches {
  padding: 14px 16px;
  border: 1px solid rgba(234, 179, 8, 0.35);
  background: rgba(234, 179, 8, 0.08);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text, #fff);
}

/* ── Section wrapper ─────────────────────────── */
.bc-section {
  margin-bottom: 24px;
  padding: 24px;
  background: var(--surface, #161625);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 12px;
}

.bc-section__title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #fff);
}

/* Section header with right-aligned export button. */
.bc-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}

.bc-section__head .bc-section__title { margin-bottom: 0; }

.bc-pl-export {
  flex: 0 0 auto;
  background: rgba(124, 92, 255, 0.12);
  color: #b4a0ff;
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.bc-pl-export:hover {
  background: rgba(124, 92, 255, 0.22);
  color: #d6c8ff;
}

.bc-pl-export:focus-visible {
  outline: 2px solid #7c5cff;
  outline-offset: 2px;
}

/* Single page-level CSV export — one button for the whole tab. */
.bc-market-toolbar {
  display: flex;
  justify-content: flex-end;
  margin: 4px 0 12px;
}

/* ── Funnel ──────────────────────────────────── */
.bc-funnel { display: flex; flex-direction: column; gap: 10px; }

.bc-funnel__row {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  align-items: center;
  gap: 12px;
}

.bc-funnel__label {
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
}

.bc-funnel__bar {
  height: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
}

.bc-funnel__fill {
  height: 100%;
  border-radius: 6px;
  transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-funnel__stage--invited { background: linear-gradient(90deg, #8a6eff, #7855e4); }
.bc-funnel__stage--active  { background: linear-gradient(90deg, #4fbf7c, #3e9a64); }
.bc-funnel__stage--expired { background: linear-gradient(90deg, #6a7287, #4d5365); }
.bc-funnel__stage--revoked { background: linear-gradient(90deg, #e06060, #b44848); }

.bc-funnel__count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #fff);
  text-align: right;
}

/* ── Cohort activity tiles ───────────────────── */
.bc-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.bc-tile {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 10px;
  text-align: center;
}

.bc-tile__icon { font-size: 22px; line-height: 1; margin-bottom: 6px; }

.bc-tile__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin-bottom: 4px;
}

.bc-tile__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-secondary, #a4a4bf);
}

/* ── Expirations list ────────────────────────── */
.bc-exp-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }

.bc-exp-list__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 8px;
}

.bc-exp-list__who { display: flex; flex-direction: column; gap: 2px; }

.bc-exp-list__name { font-weight: 600; color: var(--text-primary, #fff); font-size: 14px; }
.bc-exp-list__email { font-size: 12px; color: var(--text-secondary, #a4a4bf); }

.bc-exp-list__days {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary, #fff);
}

.bc-exp-list__days--warn {
  background: rgba(255, 170, 60, 0.15);
  color: #ffb04d;
}

.bc-exp-list__days--urgent {
  background: rgba(224, 96, 96, 0.18);
  color: #ff7575;
}

/* ── Top performers ──────────────────────────── */
.bc-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.bc-top__card {
  position: relative;
  padding: 20px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid var(--border, #2a2a3d);
  border-radius: 12px;
  text-align: center;
}

.bc-top__card--gold   { border-color: #e5b24d; box-shadow: 0 0 0 1px rgba(229, 178, 77, 0.25) inset; }
.bc-top__card--silver { border-color: #9aa5bd; box-shadow: 0 0 0 1px rgba(154, 165, 189, 0.2) inset; }
.bc-top__card--bronze { border-color: #c27a54; box-shadow: 0 0 0 1px rgba(194, 122, 84, 0.22) inset; }

.bc-top__medal {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 20px;
}

.bc-top__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c5cff, #5b8cff);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.bc-top__name {
  font-weight: 600;
  color: var(--text-primary, #fff);
  font-size: 14px;
  margin-bottom: 6px;
}

.bc-top__stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  margin-bottom: 8px;
}

.bc-top__last {
  font-size: 11px;
  color: var(--text-secondary, #a4a4bf);
  opacity: 0.75;
}

/* ── Needs Attention list ────────────────────── */
.bc-na { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }

.bc-na__row {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 170, 60, 0.04);
  border: 1px solid rgba(255, 170, 60, 0.2);
  border-radius: 10px;
}

.bc-na__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #ffa83d, #ff8040);
  color: #fff; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

.bc-na__body { min-width: 0; }

.bc-na__name { font-weight: 600; color: var(--text-primary, #fff); font-size: 14px; }
.bc-na__email { font-size: 12px; color: var(--text-secondary, #a4a4bf); margin-bottom: 6px; }

.bc-na__flags { display: flex; flex-wrap: wrap; gap: 6px; }

.bc-na__flag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary, #a4a4bf);
}

.bc-na__flag--inactive  { background: rgba(106, 114, 135, 0.25); color: #c5cad8; }
.bc-na__flag--expiring  { background: rgba(224, 96, 96, 0.18); color: #ff9494; }
.bc-na__flag--lowscore  { background: rgba(255, 170, 60, 0.18); color: #ffc47a; }
.bc-na__flag--noactivity { background: rgba(138, 110, 255, 0.2); color: #c9b8ff; }

.bc-na__meta { text-align: right; font-size: 12px; color: var(--text-primary, #fff); }
.bc-na__last { font-size: 11px; color: var(--text-secondary, #a4a4bf); margin-top: 2px; }

/* ── Sponsorship header meta line ────────────── */
.biz-sponsor-header__meta {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
}

/* ── Courses matrix ──────────────────────────── */
.bc-courses-wrap {
  margin-top: 8px;
  background: var(--surface, #161625);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 12px;
  overflow: auto;
}

.bc-courses-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.bc-courses-table th, .bc-courses-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border, #2a2a3d);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.bc-courses-table th {
  color: var(--text-secondary, #a4a4bf);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  background: var(--surface, #161625);
  z-index: 1;
}

.bc-courses-table th.bc-col-actions,
.bc-courses-table td.bc-col-actions {
  text-align: right;
  white-space: nowrap;
  min-width: 88px;
}

.bc-goal__chip--more {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary, #a4a4bf);
}

.bc-courses-table td.bc-course-cell { padding: 6px 10px; }

.bc-course-cell--none { color: var(--text-secondary, #a4a4bf); font-style: italic; opacity: 0.6; }

.bc-course-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 8px;
}

.bc-course-card--completed { border-color: #3e9a64; background: rgba(62, 154, 100, 0.08); }
.bc-course-card--stuck     { border-color: #e06060; background: rgba(224, 96, 96, 0.08); }
.bc-course-card--active    { border-color: #7855e4; background: rgba(120, 85, 228, 0.08); }
.bc-course-card--paused    { opacity: 0.7; }

.bc-course-title {
  font-weight: 600; color: var(--text-primary, #fff); font-size: 12px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 180px;
}

.bc-course-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.bc-course-progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--go-xp-start, #7c5cff), var(--go-xp-end, #5b8cff));
  border-radius: 2px;
}

.bc-course-progress-bar--completed .bc-course-progress-bar__fill { background: linear-gradient(90deg, #4fbf7c, #3e9a64); }
.bc-course-progress-bar--stuck     .bc-course-progress-bar__fill { background: linear-gradient(90deg, #e06060, #b44848); }

.bc-course-meta {
  font-size: 10px; color: var(--text-secondary, #a4a4bf);
  display: flex; gap: 6px; flex-wrap: wrap;
}

.bc-course-stuck-badge { color: #ff9494; font-weight: 600; }

.bc-courses-student-cell {
  position: sticky; left: 0;
  background: var(--surface, #161625);
  min-width: 180px;
}

.bc-courses-empty {
  padding: 32px;
  text-align: center;
  color: var(--text-secondary, #a4a4bf);
}

/* Revoke modal reuses .biz-modal classes — nothing extra */

/* ── Placement hero + tiles ──────────────────── */
.bc-pl-hero {
  padding: 24px;
  background: linear-gradient(135deg, rgba(79, 191, 124, 0.08), rgba(91, 140, 255, 0.06));
  border: 1px solid rgba(79, 191, 124, 0.22);
}

.bc-pl-hero__stats {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 2fr);
  gap: 24px;
  align-items: center;
}

.bc-pl-hero__main { min-width: 0; }

.bc-pl-hero__main-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary, #fff);
  line-height: 1;
  background: linear-gradient(90deg, #4fbf7c, #5b8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bc-pl-hero__main-label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #fff);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.bc-pl-hero__main-sub {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
}
.bc-pl-hero__main-note {
  margin-top: 4px;
  font-size: 11px;
  font-style: italic;
  color: var(--text-tertiary, #6b6b86);
  max-width: 520px;
  line-height: 1.4;
}
.bc-pl-hero__updated {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-secondary, #a4a4bf);
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
}

.bc-pl-hero__breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.bc-pl-hero__tile {
  padding: 14px 10px;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, #2a2a3d);
}

.bc-pl-hero__tile-icon { font-size: 22px; line-height: 1; }
.bc-pl-hero__tile-num {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary, #fff);
}
.bc-pl-hero__tile-label {
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-secondary, #a4a4bf);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bc-pl-hero__tile.bc-pl-status--offer        { border-color: #3e9a64; background: rgba(62, 154, 100, 0.1); }
.bc-pl-hero__tile.bc-pl-status--interviewing { border-color: #7855e4; background: rgba(120, 85, 228, 0.1); }
.bc-pl-hero__tile.bc-pl-status--applying     { border-color: #e5b24d; background: rgba(229, 178, 77, 0.1); }
.bc-pl-hero__tile.bc-pl-status--searching    { border-color: rgba(255, 255, 255, 0.1); opacity: 0.85; }

/* ── Placement status badges ─────────────────── */
.bc-pl-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.bc-pl-status--offer        { background: rgba(62, 154, 100, 0.22); color: #66dd8f; }
.bc-pl-status--interviewing { background: rgba(120, 85, 228, 0.22); color: #b4a0ff; }
.bc-pl-status--applying     { background: rgba(229, 178, 77, 0.2);  color: #ffc47a; }
.bc-pl-status--searching    { background: rgba(255, 255, 255, 0.06); color: #a4a4bf; }

/* ── Pipeline chips (per-student compact) ────── */
.bc-pl-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.bc-pl-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary, #a4a4bf);
}
.bc-pl-chip b { color: var(--text-primary, #fff); font-weight: 700; }
.bc-pl-chip--applied    { background: rgba(229, 178, 77, 0.18); color: #ffc47a; }
.bc-pl-chip--interview  { background: rgba(120, 85, 228, 0.22); color: #b4a0ff; }
.bc-pl-chip--offer      { background: rgba(62, 154, 100, 0.22); color: #66dd8f; }
.bc-pl-chip--dim        { opacity: 0.45; }

.bc-pl-muted { color: var(--text-secondary, #a4a4bf); opacity: 0.6; }

.bc-pl-event__title { font-weight: 600; color: var(--text-primary, #fff); font-size: 13px; }
.bc-pl-event__meta  { font-size: 11px; color: var(--text-secondary, #a4a4bf); }

/* ── Pipeline funnel drop annotation ─────────── */
.bc-pl-funnel__drop {
  font-size: 11px;
  color: var(--text-secondary, #a4a4bf);
  font-weight: 400;
  opacity: 0.7;
}
.bc-pl-funnel__note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  font-style: italic;
}

.bc-funnel__stage.bc-pl-funnel--interviewing { background: linear-gradient(90deg, #8a6eff, #6d4fd1); }
.bc-pl-funnel--interviewing                  { background: linear-gradient(90deg, #8a6eff, #6d4fd1); }
.bc-funnel__stage.bc-pl-funnel--offer        { background: linear-gradient(90deg, #4fbf7c, #3e9a64); }
.bc-pl-funnel--offer                          { background: linear-gradient(90deg, #4fbf7c, #3e9a64); }

/* ── Top-list (companies / roles / topics) ──── */
.bc-pl-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}
.bc-pl-column { margin-bottom: 0; }

.bc-pl-toplist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.bc-pl-toplist__row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(80px, 3fr) 32px;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
}
.bc-pl-toplist__name { font-size: 13px; color: var(--text-primary, #fff); }
.bc-pl-toplist__bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  overflow: hidden;
}
.bc-pl-toplist__fill {
  height: 100%;
  background: linear-gradient(90deg, #5b8cff, #7c5cff);
  border-radius: 5px;
}
.bc-pl-toplist__fill--red {
  background: linear-gradient(90deg, #e06060, #b44848);
}
.bc-pl-toplist__count {
  text-align: right;
  font-weight: 600;
  color: var(--text-primary, #fff);
  font-size: 13px;
}

/* ── Students list — unified expandable cards (desktop + mobile) ───
 *
 * Single layout for all viewports: a compact card per student.
 * Click anywhere on the card toggles a labelled details block.
 * Compact view shows: avatar · status dot · name · role · email/stack · days chip · chevron.
 * Expanded view appends a <dl> with full human-readable metric labels.
 */
.bc-st-section { padding: 16px 20px 8px; }
.bc-st-section__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.bc-st-section__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 8px;
  margin-left: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary, #a4a4bf);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.bc-st-list { display: flex; flex-direction: column; gap: 8px; }

.bc-st-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 10px;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease;
  outline: none;
}
.bc-st-row:hover { background: rgba(99, 102, 241, 0.08); border-color: rgba(124, 92, 255, 0.3); }
.bc-st-row:focus-visible { border-color: #7c5cff; box-shadow: 0 0 0 2px rgba(124, 92, 255, 0.25); }
.bc-st-row[data-expanded="true"] {
  background: rgba(124, 92, 255, 0.1);
  border-color: rgba(124, 92, 255, 0.35);
}
/* Desktop-only legacy header strip (now unused). */
.bc-st-row--head { display: none; }

.bc-st-cell { min-width: 0; }
.bc-st-cell--avatar { display: flex; align-items: center; justify-content: center; align-self: start; }
.bc-st-cell--main { min-width: 0; }
.bc-st-cell--status {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  align-self: start;
}

/* Hide all the legacy metric-tile cells from the compact card. They
 * are still emitted by older renders for backwards-compat; if rendered
 * they're invisible. */
.bc-st-cell--mock,
.bc-st-cell--vac,
.bc-st-cell--last,
.bc-st-cell--days { display: none; }

/* Avatar */
.bc-st-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* Status dot — readiness verdict at a glance */
.bc-st-row__name-line { display: flex; align-items: center; gap: 8px; min-width: 0; }
.bc-st-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.bc-st-dot--ready    { background: #4fbf7c; box-shadow: 0 0 0 3px rgba(79, 191, 124, 0.18); }
.bc-st-dot--building { background: #ffb04d; box-shadow: 0 0 0 3px rgba(255, 176, 77, 0.18); }
.bc-st-dot--at_risk  { background: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.20); }

/* Days remaining chip */
.bc-st-days-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  font-variant-numeric: tabular-nums;
}
.bc-st-days-chip b { color: var(--text-primary, #fff); font-weight: 700; font-size: 13px; }
.bc-st-days-chip.bc-st-stat--bad  { background: rgba(239, 68, 68, 0.18); color: #ff7575; }
.bc-st-days-chip.bc-st-stat--bad  b { color: #ff7575; }
.bc-st-days-chip.bc-st-stat--warn { background: rgba(255, 176, 77, 0.16); color: #ffb04d; }
.bc-st-days-chip.bc-st-stat--warn b { color: #ffb04d; }

/* Chevron — rotates when expanded */
.bc-st-row__chevron {
  color: var(--text-secondary, #a4a4bf);
  transition: transform 200ms ease;
  flex-shrink: 0;
}
.bc-st-row[data-expanded="true"] .bc-st-row__chevron { transform: rotate(180deg); color: #7c5cff; }

/* Main column: name (line 1) + role+exp (line 2) + email·stack (line 3) */
.bc-st-row__name {
  font-weight: 600;
  color: var(--text-primary, #fff);
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.bc-st-row__role {
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bc-st-row__exp {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 500;
  color: #c9b8ff;
  background: rgba(124, 92, 255, 0.14);
  border-radius: 4px;
  vertical-align: 1px;
  white-space: nowrap;
}
.bc-st-row__sub {
  font-size: 11px;
  color: var(--text-secondary, #a4a4bf);
  opacity: 0.7;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  gap: 6px;
}
.bc-st-row__email,
.bc-st-row__stack {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.bc-st-row__sep { opacity: 0.4; }
.bc-st-row__more {
  display: inline-block;
  padding: 0 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  font-size: 10px;
  font-weight: 600;
}

/* Stat cells */
.bc-st-stat {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}
.bc-st-stat b {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #fff);
}
.bc-st-stat span {
  font-size: 10px;
  color: var(--text-secondary, #a4a4bf);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.bc-st-stat--ok b { color: #66dd8f; }
.bc-st-stat--warn b { color: #ffc47a; }
.bc-st-stat--bad b { color: #ff7575; }
.bc-st-stat--empty b { color: var(--text-secondary, #a4a4bf); opacity: 0.5; }

/* ── Expanded details block ──────────────────────────────────── */
.bc-st-row__details {
  grid-column: 1 / -1;
  display: none;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border, #2a2a3d);
}
.bc-st-row[data-expanded="true"] .bc-st-row__details {
  display: block;
}
.bc-st-row__details-dl {
  display: grid;
  grid-template-columns: minmax(160px, max-content) minmax(0, 1fr);
  gap: 8px 16px;
  margin: 0;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.bc-st-row__details-dl dt {
  color: var(--text-secondary, #a4a4bf);
  font-weight: 500;
  font-size: 12px;
  align-self: start;
}
.bc-st-row__details-dl dd {
  margin: 0;
  color: var(--text-primary, #fff);
  font-weight: 600;
  word-break: break-word;
}
.bc-st-row__details-dl dd .bc-st-stat--ok   { color: #66dd8f; }
.bc-st-row__details-dl dd .bc-st-stat--warn { color: #ffc47a; }
.bc-st-row__details-dl dd .bc-st-stat--bad  { color: #ff7575; }
.bc-st-row__detail--wrap {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
}

/* ── Mobile (≤640px): tighter padding, single-column dl ─────── */
@media (max-width: 640px) {
  .bc-section { padding: 14px 14px; border-radius: 10px; margin-bottom: 16px; }
  .bc-st-section { padding: 12px 12px 8px; }
  .bc-st-section__head { margin-bottom: 8px; }
  .bc-section__title { font-size: 15px; margin-bottom: 12px; }

  .bc-privacy-banner {
    padding: 10px 12px;
    margin-bottom: 12px;
    gap: 10px;
    border-radius: 8px;
  }
  .bc-privacy-banner__icon { font-size: 16px; }
  .bc-privacy-banner__text { font-size: 12px; line-height: 1.45; }

  .bc-st-row { padding: 12px; column-gap: 10px; }
  .bc-st-avatar { width: 36px; height: 36px; font-size: 13px; }
  .bc-st-row__sub {
    /* Phone width too narrow for ellipsis; allow wrap. */
    white-space: normal;
    line-height: 1.4;
    flex-wrap: wrap;
    gap: 4px 6px;
  }
  .bc-st-row__email,
  .bc-st-row__stack {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: 100%;
  }
  .bc-st-row__details-dl {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px 0;
  }
  .bc-st-row__details-dl dt {
    padding-top: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.85;
  }
  .bc-st-row__details-dl dt:first-child { padding-top: 0; }
}

/* ── Phone overrides for placement / readiness / market hero ── */
@media (max-width: 640px) {
  .bc-pl-hero { padding: 16px 14px; }
  .bc-pl-hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .bc-pl-hero__main-num { font-size: 40px; }
  .bc-pl-hero__main-label { font-size: 12px; }
  .bc-pl-hero__main-sub { font-size: 12px; }
  .bc-pl-hero__breakdown {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .bc-pl-hero__tile { padding: 10px 6px; }
  .bc-pl-hero__tile-icon { font-size: 18px; }
  .bc-pl-hero__tile-num { font-size: 18px; margin-top: 4px; }
  .bc-pl-hero__tile-label { font-size: 10px; }

  /* Per-student readiness table → horizontal scroll inside card */
  .bc-courses-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .bc-courses-table { min-width: 560px; font-size: 12px; }
  .bc-courses-table th, .bc-courses-table td { padding: 8px 10px; }

  /* Top-list rows (companies / roles / skills) — name above bar */
  .bc-pl-toplist__row {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name count"
      "bar  bar";
    row-gap: 4px;
    column-gap: 8px;
  }
  .bc-pl-toplist__name { grid-area: name; font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .bc-pl-toplist__bar  { grid-area: bar; height: 8px; }
  .bc-pl-toplist__count { grid-area: count; font-size: 12px; white-space: nowrap; }

  /* Skill cloud — keep wrap, smaller chips */
  .bc-skill-chip { padding: 5px 9px; font-size: 12px; }
  .bc-skill-chip--lg { font-size: 13px; }
  .bc-skill-chip--xl { font-size: 14px; }

  /* Pending invites list */
  .bc-exp-list__row { padding: 10px 12px; flex-wrap: wrap; gap: 8px; }
  .bc-exp-list__row > div:last-child { width: 100%; }

  /* Salary band — already 1col via existing 640px block */
  .bc-salary-band__num { font-size: 22px; }
}

/* ── Privacy banner ──────────────────────────── */
.bc-privacy-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: rgba(91, 140, 255, 0.08);
  border: 1px solid rgba(91, 140, 255, 0.22);
  border-radius: 10px;
}
.bc-privacy-banner__icon { font-size: 20px; line-height: 1.2; }
.bc-privacy-banner__text {
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
  line-height: 1.5;
}
.bc-privacy-banner__text b { color: var(--text-primary, #fff); }

/* ── Goal chips (self-declared) ──────────────── */
.bc-goal { font-size: 13px; }
.bc-goal__role { font-weight: 600; color: var(--text-primary, #fff); }
.bc-goal__exp  { font-size: 11px; color: var(--text-secondary, #a4a4bf); margin-top: 2px; }
.bc-goal__stack { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.bc-goal__chip {
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(124, 92, 255, 0.18);
  color: #c9b8ff;
  font-size: 10px;
  font-weight: 500;
}

/* ── Readiness criteria list ─────────────────── */
.bc-readiness-criteria { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.bc-readiness-criteria li {
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
  line-height: 1.5;
}

/* ── Salary band tiles ───────────────────────── */
.bc-salary-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bc-salary-band__tile {
  padding: 18px 14px;
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, #2a2a3d);
}
.bc-salary-band__tile--median {
  background: linear-gradient(135deg, rgba(79, 191, 124, 0.12), rgba(91, 140, 255, 0.1));
  border-color: rgba(79, 191, 124, 0.35);
}
.bc-salary-band__num {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary, #fff);
}
.bc-salary-band__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary, #a4a4bf);
  margin-top: 4px;
}

/* ── Skill cloud ─────────────────────────────── */
.bc-skill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
}
.bc-skill-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border, #2a2a3d);
  color: var(--text-primary, #fff);
  font-weight: 500;
}
.bc-skill-chip b { color: #7c5cff; font-weight: 700; }
.bc-skill-chip--sm { font-size: 12px; opacity: 0.7; }
.bc-skill-chip--md { font-size: 13px; opacity: 0.85; }
.bc-skill-chip--lg { font-size: 15px; background: rgba(124, 92, 255, 0.12); border-color: rgba(124, 92, 255, 0.3); }
.bc-skill-chip--xl {
  font-size: 17px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.22), rgba(91, 140, 255, 0.18));
  border-color: rgba(124, 92, 255, 0.45);
  color: #fff;
}
.bc-skill-chip--xl b { color: #a898ff; }

@media (max-width: 640px) {
  .bc-pl-hero__stats { grid-template-columns: 1fr; }
  .bc-pl-hero__main-num { font-size: 42px; }
  .bc-salary-band { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .bc-hero { padding: 20px; }
  .bc-hero__title { font-size: 22px; }
  .bc-hero__stats { gap: 20px; }
  .bc-hero__gauge { width: 120px; height: 120px; }
  .bc-hero__gauge svg { width: 120px; height: 120px; }
  .bc-section { padding: 16px; }
  .bc-funnel__row { grid-template-columns: 96px 1fr 32px; gap: 8px; }
}

/* ── Alumni section (expired + revoked) ── */
.bc-alumni { padding: 0; background: transparent; border: none; }
.bc-alumni__details {
  background: var(--surface, #161625);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}
.bc-alumni__summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  user-select: none;
}
.bc-alumni__summary::-webkit-details-marker { display: none; }
.bc-alumni__summary::after {
  content: '▾';
  position: absolute;
  right: 24px;
  margin-top: 2px;
  color: var(--text-secondary, #a4a4bf);
  transition: transform 0.2s;
}
.bc-alumni__details[open] > .bc-alumni__summary::after { transform: rotate(180deg); }
.bc-alumni__summary { position: relative; }
.bc-alumni__hint {
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  font-weight: 400;
}
.bc-alumni__list {
  list-style: none;
  margin: 0;
  padding: 0 24px 20px;
  display: grid;
  gap: 12px;
}
.bc-alumni-row {
  padding: 14px 16px;
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}
.bc-alumni-row__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.bc-alumni-row__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #fff);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.bc-alumni-row__email {
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  margin-top: 2px;
}
.bc-alumni-row__when {
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.bc-alumni-row__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bc-alumni-row__badge--graduated {
  background: rgba(79, 191, 124, 0.15);
  color: #66dd8f;
  border: 1px solid rgba(79, 191, 124, 0.3);
}
.bc-alumni-row__badge--revoked {
  background: rgba(244, 114, 114, 0.12);
  color: #ff9494;
  border: 1px solid rgba(244, 114, 114, 0.3);
}
.bc-alumni-row__outcome {
  font-size: 13px;
  margin-top: 4px;
  font-weight: 500;
}
.bc-alumni-row__outcome--win { color: #66dd8f; }
.bc-alumni-row__outcome--ok { color: var(--text-primary, #fff); }
.bc-alumni-row__outcome--warn { color: #ffb04d; }
.bc-alumni-row__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
  font-variant-numeric: tabular-nums;
}
.bc-alumni-row__stats--muted {
  font-style: italic;
  color: var(--text-tertiary, #6b6b86);
  font-size: 12px;
}
.bc-alumni-row__stats b {
  color: var(--text-primary, #fff);
  font-weight: 600;
}

@media (max-width: 640px) {
  .bc-alumni__list { padding: 0 14px 16px; }
  .bc-alumni__summary { padding: 14px 14px 14px 16px; }
  .bc-alumni__summary::after { right: 14px; }
  .bc-alumni-row__stats { gap: 10px; font-size: 12px; }
}

/* ── Offer-outcome badge + control (Students + Alumni tabs) ───── */
.bc-st-offer-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(79, 191, 124, 0.15);
  color: #66dd8f;
  border: 1px solid rgba(79, 191, 124, 0.3);
  white-space: nowrap;
}
.bc-st-offer-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border, #2a2a3d);
}
.bc-alumni-row .bc-st-offer-control {
  margin-top: 8px;
}
.bc-st-offer-undo {
  background: none;
  border: none;
  padding: 2px 6px;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  cursor: pointer;
  text-decoration: underline;
}
.bc-st-offer-undo:hover { color: var(--text-primary, #fff); }
.bc-st-offer-undo:disabled,
.bc-st-offer-mark:disabled { opacity: 0.5; cursor: not-allowed; }
.bc-st-offer-mark { padding: 4px 12px; font-size: 12px; }

/* ── Inactivity warning badge (Students tab) ─────────────────── */
.bc-st-inactive-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 176, 77, 0.16);
  color: #ffb04d;
  border: 1px solid rgba(255, 176, 77, 0.3);
  white-space: nowrap;
}

/* ── Alumni standalone tab (hero + per-student cards) ── */
.bc-alumni-hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bc-alumni-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.bc-alumni-hero__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  margin: 0 0 6px;
}
.bc-alumni-hero__sub {
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
  line-height: 1.5;
  max-width: 560px;
  margin: 0;
}
.bc-alumni-hero__big {
  text-align: right;
  min-width: 120px;
}
.bc-alumni-hero__big-num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #66dd8f, #5b8cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.bc-alumni-hero__big-label {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary, #a4a4bf);
}
.bc-alumni-hero__breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.bc-alumni-hero__tile {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border, #2a2a3d);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}
.bc-alumni-hero__tile-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary, #fff);
  font-variant-numeric: tabular-nums;
}
.bc-alumni-hero__tile-label {
  margin-top: 4px;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
}
.bc-alumni-hero__tile-pct {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.bc-alumni-hero__tile--win {
  background: rgba(79, 191, 124, 0.10);
  border-color: rgba(79, 191, 124, 0.32);
}
.bc-alumni-hero__tile--win .bc-alumni-hero__tile-num,
.bc-alumni-hero__tile--win .bc-alumni-hero__tile-pct { color: #66dd8f; }
.bc-alumni-hero__tile--ok {
  background: rgba(91, 140, 255, 0.08);
  border-color: rgba(91, 140, 255, 0.28);
}
.bc-alumni-hero__tile--ok .bc-alumni-hero__tile-num { color: #8ab0ff; }
.bc-alumni-hero__tile--warn {
  background: rgba(255, 176, 77, 0.08);
  border-color: rgba(255, 176, 77, 0.28);
}
.bc-alumni-hero__tile--warn .bc-alumni-hero__tile-num { color: #ffb04d; }
.bc-alumni-hero__tile--revoked {
  background: rgba(244, 114, 114, 0.08);
  border-color: rgba(244, 114, 114, 0.26);
}
.bc-alumni-hero__tile--revoked .bc-alumni-hero__tile-num { color: #ff9494; }
.bc-alumni-hero__totals {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border, #2a2a3d);
  font-size: 13px;
  color: var(--text-secondary, #a4a4bf);
}
.bc-alumni-hero__total-num {
  font-weight: 700;
  color: var(--text-primary, #fff);
  font-variant-numeric: tabular-nums;
}

/* Standalone list mode — full cards, no collapsible wrapper. */
.bc-alumni__list--standalone {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.bc-alumni-row__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border, #2a2a3d);
}
.bc-alumni-row__metric {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 8px;
}
.bc-alumni-row__metric-num {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary, #fff);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.bc-alumni-row__metric-label {
  margin-top: 2px;
  font-size: 11px;
  color: var(--text-secondary, #a4a4bf);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .bc-alumni-hero__top { gap: 12px; }
  .bc-alumni-hero__big { text-align: left; }
  .bc-alumni-hero__big-num { font-size: 44px; }
  .bc-alumni-hero__breakdown { grid-template-columns: 1fr 1fr; }
  .bc-alumni-hero__tile-num { font-size: 22px; }
  .bc-alumni-row__metrics { grid-template-columns: 1fr 1fr; }
  .bc-alumni-row__metric-num { font-size: 17px; }
}

/* ── Seat-package usage summary (Students tab) ───── */
.bc-seat-summary__headline {
  font-size: 14px;
  color: var(--text-secondary, #a4a4bf);
  margin-bottom: 16px;
}
.bc-seat-summary__num {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary, #fff);
}

.bc-seat-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bc-seat-row {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, #2a2a3d);
  border-radius: 10px;
}
.bc-seat-row--low {
  border-color: rgba(234, 179, 8, 0.4);
  background: rgba(234, 179, 8, 0.06);
}
.bc-seat-row--exhausted {
  border-color: rgba(224, 96, 96, 0.45);
  background: rgba(224, 96, 96, 0.07);
}

.bc-seat-row__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.bc-seat-row__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary, #fff);
}
.bc-seat-row__term {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
  white-space: nowrap;
}
.bc-seat-row__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
.bc-seat-row__badge--amber {
  background: rgba(234, 179, 8, 0.18);
  color: #f0c44a;
}
.bc-seat-row__badge--red {
  background: rgba(224, 96, 96, 0.18);
  color: #ef8a8a;
}

.bc-seat-row__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}
.bc-seat-row__fill {
  height: 100%;
  background: linear-gradient(90deg, #5b8cff, #7c5cff);
  border-radius: 4px;
  transition: width 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bc-seat-row__fill--amber { background: linear-gradient(90deg, #eab308, #d99a06); }
.bc-seat-row__fill--red   { background: linear-gradient(90deg, #e06060, #b44848); }

.bc-seat-row__stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-secondary, #a4a4bf);
}
.bc-seat-row__stats b {
  color: var(--text-primary, #fff);
  font-weight: 600;
}

/* ============================================================
   GLOBAL COHORT SELECTOR  (persistent, scopes every bootcamp tab)
   A seat package = a cohort (поток). Lives directly under the tab bar.
   "Все потоки · за всё время" = school-wide cumulative (default).
   Ported from references/mockups/bootcamp-packages/_base.css.
   ============================================================ */
.cohort-scope {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 12px 16px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.07), rgba(168, 85, 247, 0.04));
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  border-radius: 12px;
}
.cohort-scope__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #8a8a94);
  white-space: nowrap;
}
.cohort-pick { position: relative; }
.cohort-pick__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
  background: var(--surface, #18181b);
  border: 1px solid var(--border-hover, rgba(255, 255, 255, 0.12));
  color: var(--text, #fafafa);
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.15s;
}
.cohort-pick__btn:hover { border-color: var(--accent, #6366f1); }
.cohort-pick__swatch {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  background: var(--pk, #818cf8);
  flex-shrink: 0;
}
.cohort-pick__swatch--all { background: linear-gradient(135deg, #818cf8, #a855f7); }
.cohort-pick__caret { color: var(--text-muted, #8a8a94); font-size: 11px; }
.cohort-pick__sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary, #a1a1aa);
}

.cohort-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  min-width: 340px;
  max-width: min(420px, 90vw);
  max-height: 70vh;
  overflow-y: auto;
  padding: 6px;
  border-radius: 12px;
  background: var(--surface, #18181b);
  border: 1px solid var(--border-hover, rgba(255, 255, 255, 0.12));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.cohort-menu[hidden] { display: none; }
.cohort-menu__group {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted, #8a8a94);
  padding: 8px 10px 4px;
}
.cohort-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 9px 10px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text, #fafafa);
  font-family: inherit;
  font-size: 14px;
  transition: background 0.12s;
}
.cohort-opt:hover { background: rgba(255, 255, 255, 0.04); }
.cohort-opt.is-active { background: rgba(99, 102, 241, 0.14); }
.cohort-opt__swatch {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--pk, #818cf8);
  flex-shrink: 0;
}
.cohort-opt__swatch--all { background: linear-gradient(135deg, #818cf8, #a855f7); }
.cohort-opt__txt { flex: 1; min-width: 0; }
.cohort-opt__name { font-weight: 600; }
.cohort-opt__meta { font-size: 12px; color: var(--text-secondary, #a1a1aa); margin-top: 1px; }
.cohort-opt__badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.cohort-opt__badge--live  { background: rgba(34, 197, 94, 0.16); color: #4fbf7c; }
.cohort-opt__badge--low   { background: rgba(234, 179, 8, 0.18); color: #f0c44a; }
.cohort-opt__badge--full  { background: rgba(224, 96, 96, 0.18); color: #ef8a8a; }
.cohort-opt__badge--ended { background: rgba(255, 255, 255, 0.07); color: var(--text-muted, #8a8a94); }
.cohort-opt__check { color: var(--accent-light, #818cf8); font-weight: 700; }
.cohort-menu__div { height: 1px; background: var(--border, rgba(255, 255, 255, 0.06)); margin: 6px 4px; }

.cohort-scope__now {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-left: auto;
}
.cohort-scope__now-lbl { font-size: 11px; color: var(--text-muted, #8a8a94); }
.cohort-now-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  color: var(--text-secondary, #a1a1aa);
}
.cohort-now-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pk, #818cf8); }

/* Scope context line shown on each tab (what's currently scoped) */
.scope-ctx {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--text-secondary, #a1a1aa);
}
.scope-ctx b { color: var(--text, #fafafa); font-weight: 700; }
.scope-ctx:empty { display: none; }
.scope-ctx__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--accent-light, #818cf8);
  font-weight: 600;
  font-size: 12px;
}

/* ============================================================
   BIG STAT TILES  (school overview dashboard headline)
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}
.stat-tile {
  padding: 20px 18px;
  border-radius: 14px;
  background: var(--surface, #18181b);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
}
.stat-tile--accent {
  background: linear-gradient(135deg, rgba(79, 191, 124, 0.12), rgba(91, 140, 255, 0.08));
  border-color: rgba(79, 191, 124, 0.3);
}
.stat-tile__num {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text, #fafafa);
  font-variant-numeric: tabular-nums;
}
.stat-tile--accent .stat-tile__num {
  background: linear-gradient(90deg, #66dd8f, #5b8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-tile__label { margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--text, #fafafa); }
.stat-tile__sub { margin-top: 2px; font-size: 12px; color: var(--text-secondary, #a1a1aa); }
.stat-tile__live { display: inline-flex; align-items: center; gap: 6px; }
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4fbf7c;
  box-shadow: 0 0 0 3px rgba(79, 191, 124, 0.2);
}

/* ============================================================
   PER-COHORT COMPARISON TABLE  (track record, shared across tabs)
   ============================================================ */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.cmp-table th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted, #8a8a94);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.cmp-table td {
  padding: 12px;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  color: var(--text, #fafafa);
  vertical-align: middle;
  font-variant-numeric: tabular-nums;
}
.cmp-table tr:hover td { background: var(--bg-subtle, #111114); }
.cmp-table th.r, .cmp-table td.r { text-align: right; }
.cmp-cohort { display: flex; align-items: center; gap: 9px; }
.cmp-cohort__sw {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--pk, #818cf8);
  flex-shrink: 0;
}
.cmp-cohort__name { font-weight: 600; }
.cmp-cohort__status { font-size: 11px; color: var(--text-muted, #8a8a94); margin-top: 1px; }
.meter { display: flex; align-items: center; gap: 8px; justify-content: flex-end; }
.meter__bar {
  width: 90px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.meter__fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #4fbf7c, #5b8cff); }
.meter__fill--warn { background: linear-gradient(90deg, #eab308, #d99a06); }
.meter__val { font-weight: 700; min-width: 38px; text-align: right; }
.meter__val.ok { color: #66dd8f; }
.meter__val.warn { color: #ffc47a; }
.meter__val.bad { color: #ff7575; }
.cmp-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}
.cmp-badge--live  { background: rgba(34, 197, 94, 0.15); color: #4fbf7c; }
.cmp-badge--ended { background: rgba(255, 255, 255, 0.07); color: var(--text-muted, #8a8a94); }

/* Row highlight when a cohort is scoped in the school overview */
.bc-school-row--active td { background: rgba(99, 102, 241, 0.1); }
.bc-school-muted { color: var(--text-muted, #8a8a94); }
.bc-school-placement-ok { color: #66dd8f; }
.bc-school-cmp-hint { font-size: 12px; color: var(--text-secondary, #a1a1aa); }
.bc-school-cmp-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted, #8a8a94);
  font-style: italic;
}
/* Running cohorts dimmed in the alumni breakdown */
.bc-alumni-row--running td { opacity: 0.7; }

/* ============================================================
   SCHOOL OVERVIEW — funnel + activity (school dashboard body)
   ============================================================ */
.bc-school-grid2 {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 1080px) { .bc-school-grid2 { grid-template-columns: 1fr; } }

.bc-school-funnel { display: flex; flex-direction: column; gap: 10px; }
.bc-school-funnel__row {
  display: grid;
  grid-template-columns: 150px 1fr 56px;
  align-items: center;
  gap: 12px;
}
.bc-school-funnel__label { font-size: 13px; color: var(--text-secondary, #a1a1aa); }
.bc-school-funnel__bar {
  height: 26px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  overflow: hidden;
}
.bc-school-funnel__fill { height: 100%; border-radius: 6px; }
.bc-school-funnel__fill--enrolled { background: linear-gradient(90deg, #5b8cff, #7c5cff); }
.bc-school-funnel__fill--ready    { background: linear-gradient(90deg, #8a6eff, #6d4fd1); }
.bc-school-funnel__fill--applied  { background: linear-gradient(90deg, #e5b24d, #d99a06); }
.bc-school-funnel__fill--offer    { background: linear-gradient(90deg, #4fbf7c, #3e9a64); }
.bc-school-funnel__count {
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.bc-school-activity { display: flex; flex-direction: column; gap: 14px; font-size: 14px; }
.bc-school-activity__row { display: flex; justify-content: space-between; gap: 12px; }
.bc-school-activity__row > span { color: var(--text-secondary, #a1a1aa); }
.bc-school-activity__row--total {
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  padding-top: 14px;
}
.bc-school-activity__ok { color: #66dd8f; }

/* ============================================================
   STUDENT COHORT CHIP  ("Поток" differentiator, Variant B)
   ============================================================ */
.vb-pkgchip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 2px 10px 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  background: color-mix(in srgb, var(--pk, #6366f1) 16%, transparent);
  color: var(--pk, #818cf8);
  border: 1px solid color-mix(in srgb, var(--pk, #6366f1) 32%, transparent);
}
.vb-pkgchip__dot {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--pk, #6366f1);
  flex-shrink: 0;
}
.vb-pkgchip--none {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted, #8a8a94);
  border: 1px dashed var(--border-hover, rgba(255, 255, 255, 0.12));
}

@media (max-width: 768px) {
  .cohort-scope { padding: 12px; }
  .cohort-scope__now { margin-left: 0; width: 100%; }
  .cohort-menu { min-width: 280px; }
  .stat-tile__num { font-size: 32px; }
  .cmp-col-opt { display: none; }
  .bc-school-funnel__row { grid-template-columns: 110px 1fr 44px; }
}

/* ============================================================
   STUDENTS TAB — Layout B (2026-05)
   2-column: sticky sidebar card (invite + pill filters + condensed
   packages) + roomy main column (full student list, narrowed in
   place — non-matching rows dimmed, never hidden).
   Ported from references/mockups/bootcamp-packages/students-v2/layout-b.html
   using the real design tokens; reuses .bc-st-row / .dot / .usebar / .vb-pkgchip.
   ============================================================ */
.sy-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.sy-side {
  position: sticky;
  top: 16px;
}
.sy-card {
  background: var(--surface, #18181b);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  border-radius: 14px;
  overflow: hidden;
}
.sy-block {
  padding: 16px;
  border-bottom: 1px solid var(--border, rgba(255, 255, 255, 0.06));
}
.sy-block:last-child { border-bottom: none; }

.sy-invite { width: 100%; }
/* Prominent sidebar CTA — compound selector beats the flat .biz-btn--primary. */
.biz-btn.sy-invite {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent, #6366f1), var(--accent-2, #a855f7));
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.38);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.biz-btn.sy-invite:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}
.biz-btn.sy-invite:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.38);
}

.sy-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.sy-head__title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text, #fafafa);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sy-clear {
  background: none;
  border: none;
  color: var(--accent-light, #818cf8);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.sy-clear:hover { text-decoration: underline; }

.sy-search { position: relative; margin-bottom: 14px; }
.sy-search input {
  width: 100%;
  padding: 9px 12px 9px 32px;
  border-radius: 9px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  background: var(--bg, #09090b);
  color: var(--text, #fafafa);
  font-size: 13px;
  font-family: inherit;
}
.sy-search input:focus { outline: none; border-color: var(--accent, #6366f1); }
.sy-search__icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted, #8a8a94);
  font-size: 13px;
}

.sy-facet { margin-bottom: 12px; }
.sy-facet:last-child { margin-bottom: 0; }
.sy-facet__label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted, #8a8a94);
  margin-bottom: 7px;
}
.sy-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.sy-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  background: var(--surface-2);
  color: var(--text-secondary, #a1a1aa);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}
.sy-pill:hover { border-color: var(--border-hover, rgba(255, 255, 255, 0.12)); color: var(--text, #fafafa); }
/* Active facet — solid accent fill so the selection reads clearly on both
   the light and dark themes (the old 16% indigo wash was invisible on light). */
.sy-pill.is-on {
  background: var(--accent, #6366f1);
  border-color: var(--accent, #6366f1);
  color: #ffffff;
  font-weight: 600;
}
.sy-pill.is-on:hover { color: #ffffff; }
.sy-pill:focus-visible { outline: 2px solid var(--accent, #6366f1); outline-offset: 2px; }
.sy-pill .dot { box-shadow: none; }
.sy-pill__n { font-size: 11px; opacity: 0.7; font-variant-numeric: tabular-nums; }
/* Count badge stays legible on the filled active pill. */
.sy-pill.is-on .sy-pill__n { color: #ffffff; opacity: 0.85; }

/* Condensed packages — chip + bar, dense rows */
.sy-pkg__total {
  font-size: 12px;
  color: var(--text-secondary, #a1a1aa);
  margin-bottom: 10px;
}
.sy-pkg__total b { color: var(--accent-light, #818cf8); font-weight: 700; }
.sy-pkg-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 8px;
  padding: 8px 0;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.06));
  align-items: center;
}
.sy-pkg-row:first-of-type { border-top: none; }
.sy-pkg-row__name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text, #fafafa);
  min-width: 0;
}
.sy-pkg-row__sw {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--pk, #818cf8);
  flex-shrink: 0;
}
.sy-pkg-row__nameTxt { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sy-pkg-row__val {
  font-size: 11px;
  color: var(--text-muted, #8a8a94);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.sy-pkg-row__val b { color: var(--text-secondary, #a1a1aa); }
.sy-pkg-row__bar { grid-column: 1 / -1; }
.sy-pkg-row__badge {
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}
.sy-pkg-row__badge--amber { background: rgba(234, 179, 8, 0.18); color: #f0c44a; }
.sy-pkg-row__badge--red { background: rgba(224, 96, 96, 0.18); color: #ef8a8a; }
.sy-pkg__create { width: 100%; margin-top: 12px; }

/* Main column */
.sy-main { min-width: 0; }
.sy-main__bar {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.sy-main__title { font-size: 16px; font-weight: 600; color: var(--text, #fafafa); }
.sy-main__sub { font-size: 12px; color: var(--text-muted, #8a8a94); }
.sy-main__sub:empty { display: none; }

/* Reuses .bc-st-row for full feature parity (expander, details). Non-matching
   rows are hidden outright (a normal filter), not dimmed. */
.sy-list .bc-st-row { transition: background 120ms ease, border-color 120ms ease; }
.sy-list .bc-st-row.is-hidden { display: none; }

/* Empty hint when a facet filter matches nobody. */
.bc-st-filter-empty {
  padding: 18px 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted, #8a8a94);
  border: 1px dashed var(--border, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  margin-top: 4px;
}

/* Ended-cohort notice — replaces the empty active list when the global scope
   is a completed cohort, guiding the admin to the Alumni tab. */
.sy-ended {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 40px 24px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.08));
  border-radius: 16px;
  background: var(--surface, #18181b);
}
.sy-ended__icon { font-size: 34px; line-height: 1; }
.sy-ended__title { font-size: 17px; font-weight: 700; color: var(--text, #fafafa); }
.sy-ended__sub { font-size: 13px; color: var(--text-secondary, #a1a1aa); max-width: 440px; }
.sy-ended__cta { margin-top: 8px; padding: 10px 22px; }

/* The pending-invites section sits below the list inside the main column. */
.sy-main .bc-section { margin-top: 20px; margin-bottom: 0; }

@media (max-width: 900px) {
  .sy-layout { grid-template-columns: 1fr; }
  .sy-side { position: static; }
}
@media (max-width: 768px) {
  .sy-layout { gap: 16px; }
  .sy-block { padding: 14px; }
}

/* Invite modal — reuses the .biz-modal pattern; a touch wider than the
   default confirm modal so the seat-batch select isn't truncated and the
   email textarea has comfortable room. */
.biz-modal--invite { max-width: 520px; }
.biz-modal--invite .biz-sponsor-invite__form { gap: 4px; }
.biz-modal--invite .bc-invite-batch-select { margin-bottom: 8px; }
.biz-modal--invite .biz-sponsor-invite__textarea { margin-top: 4px; margin-bottom: 4px; }
.biz-modal--invite .biz-modal__actions { margin-top: 16px; }
