/* Braintrust SPARK · Clinical Brief Deck
   1600 × 900 (16:9). Built on the Braintrust design system tokens.
   No black backgrounds. Decorative shapes are real DOM elements. */
@import url('./colors_and_type.css');

* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); color: var(--ink-900); background: #1a1322; }

deck-stage { background: #1a1322; }
deck-stage section {
  width: 1600px; height: 900px;
  position: relative; overflow: hidden;
  background: white;
  display: flex;
  font-family: var(--font-body);
  color: var(--ink-900);
}

/* ------------------------------------------------------------
   Shared slide chrome — eyebrow, slide-label strip, page count
   ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-2);
}

/* Top label strip — appears on every slide, ties the deck together.
   Section number, section title, slide-level subtitle on the right. */
.slide-strip {
  position: absolute; top: 0; left: 0; right: 0; height: 44px;
  display: flex; align-items: center; gap: 14px;
  padding: 0 36px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--fg-2);
  border-bottom: 1px solid var(--border-1);
  background: white;
  z-index: 10;
}
.slide-strip .num { color: var(--bt-blue); }
.slide-strip .sep { color: var(--ink-30); }
.slide-strip .title { color: var(--ink-900); }
.slide-strip .right {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
  color: var(--fg-2); letter-spacing: 0.12em;
}
.slide-strip .right .meta { text-transform: none; letter-spacing: 0.02em; font-weight: 500; color: var(--fg-2); }
.slide-strip.on-dark { background: transparent; color: rgba(255,255,255,0.65); border-bottom: 1px solid rgba(255,255,255,0.10); }
.slide-strip.on-dark .num { color: var(--bt-yellow); }
.slide-strip.on-dark .sep { color: rgba(255,255,255,0.30); }
.slide-strip.on-dark .title { color: white; }
.slide-strip.on-dark .right { color: rgba(255,255,255,0.65); }

.slide-page {
  position: absolute; bottom: 22px; right: 36px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--fg-2); z-index: 10;
}
.slide-page.on-dark { color: rgba(255,255,255,0.55); }

.brand-mark {
  position: absolute; bottom: 22px; left: 36px;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2);
  z-index: 10;
}
.brand-mark img { width: 18px; height: 18px; display: block; }
.brand-mark.on-dark { color: rgba(255,255,255,0.65); }

/* Brand wordmark — appears on every slide */
.slide-strip .strip-logo { height: 25px; width: auto; display: block; }
.deck-logo { position: absolute; z-index: 12; display: block; width: auto; }
.s-cover .deck-logo { top: 60px; left: 96px; height: 64px; }
.s-closing .deck-logo { top: 34px; left: 96px; height: 30px; }

/* Decorative shapes */
.shape { position: absolute; display: block; }
.shape.circle { border-radius: 50%; }
.shape.bg-pink { background: var(--bt-pink); }
.shape.bg-blue { background: var(--bt-blue); }
.shape.bg-green { background: var(--bt-green); }
.shape.bg-cyan  { background: var(--bt-cyan); }
.shape.bg-yellow{ background: var(--bt-yellow); }


/* ============================================================
   SLIDE 1 — COVER
   ============================================================ */
.s-cover {
  background: var(--bt-blue);
  color: white;
  padding: 80px 96px 64px;
  flex-direction: column; justify-content: space-between;
}
.s-cover .cover-eyebrow {
  color: var(--bt-yellow);
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.30em; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px;
}
.s-cover .cover-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bt-yellow); }
.s-cover .audience {
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; letter-spacing: 0.20em; text-transform: uppercase;
  color: rgba(255,255,255,0.70);
  margin-top: 12px;
}
.s-cover h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 124px; line-height: 0.90; letter-spacing: -0.035em;
  margin: 40px 0 0; max-width: 1200px;
  color: white;
}
.s-cover h1 em { font-style: normal; color: var(--bt-yellow); }
.s-cover .lede {
  margin-top: 28px;
  font-size: 24px; line-height: 1.45;
  max-width: 820px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}
.s-cover .footer-meta {
  display: flex; align-items: center; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 22px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.80);
}
.s-cover .footer-meta .col {
  display: flex; flex-direction: column; gap: 4px;
  padding-right: 56px; margin-right: 56px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.s-cover .footer-meta .col:last-child { border-right: none; }
.s-cover .footer-meta .l {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.s-cover .footer-meta .v { color: white; font-size: 15px; }
.s-cover .spark-mark {
  position: absolute; right: 96px; top: 76px;
  width: 200px; height: auto;
  z-index: 2;
}

/* ============================================================
   SLIDE 2 — THE PROBLEM (5-step bridge diagram)
   ============================================================ */
.s-problem {
  background: white; padding: 78px 96px 80px;
  flex-direction: column; justify-content: flex-start;
}
.s-problem .header { padding-top: 36px; max-width: 1300px; }
.s-problem .header .eyebrow { margin-bottom: 18px; }
.s-problem h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 72px; line-height: 0.96; letter-spacing: -0.025em;
  margin: 0 0 22px; max-width: 1200px;
}
.s-problem h1 em { font-style: normal; color: var(--bt-blue); }
.s-problem .lede {
  font-size: 17px; line-height: 1.55; color: var(--fg-1);
  max-width: 1280px; font-weight: 400;
}
.s-problem .lede strong { font-weight: 700; color: var(--ink-900); }

.s-problem .scope {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
}
.s-problem .scope .scope-label { color: var(--fg-2); }
.s-problem .scope .chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bt-blue); color: white;
  padding: 7px 14px; border-radius: 999px;
  font-size: 11px;
}
.s-problem .scope .chip.alt { background: var(--ink-90); }
.s-problem .scope .chip .sub { font-weight: 500; color: rgba(255,255,255,0.70); letter-spacing: 0.06em; }

/* The bridge — 5 cards in a row with the bridge label */
.bridge {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.bridge-step {
  background: white; border: 1.5px solid var(--border-1);
  border-radius: 18px;
  padding: 22px 20px 22px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative;
  min-height: 220px;
}
.bridge-step .n {
  font-family: var(--font-display); font-weight: 900;
  font-size: 16px; letter-spacing: 0.20em;
  color: var(--bt-blue);
}
.bridge-step h3 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 4px 0 6px; line-height: 1.05;
}
.bridge-step p {
  font-size: 13px; line-height: 1.45; color: var(--fg-2);
  margin: 0;
}
.bridge-step .icon {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--bt-blue);
}
.bridge-step.is-bridge {
  background: var(--bt-blue); border-color: var(--bt-blue); color: white;
}
.bridge-step.is-bridge .n { color: var(--bt-yellow); }
.bridge-step.is-bridge h3 { color: white; }
.bridge-step.is-bridge p { color: rgba(255,255,255,0.85); }
.bridge-step.is-bridge .icon { color: var(--bt-yellow); }

/* The bridge banner across the middle 2 cards (Instructional plan + Teaching). */
.bridge-banner {
  position: absolute; top: -14px;
  left: calc((100% / 5) * 1 + 8px); width: calc((100% / 5) * 2 - 16px);
  height: 28px;
  background: var(--bt-yellow); color: var(--ink-900);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900;
  font-size: 11px; letter-spacing: 0.30em;
  z-index: 3;
  box-shadow: 0 4px 0 rgba(254,202,19,0.18);
}

.bridge-connector {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  right: -16px; width: 16px; height: 2px;
  background: var(--ink-20);
  z-index: 1;
}
.bridge-connector::after {
  content: ''; position: absolute; right: -1px; top: 50%;
  width: 6px; height: 6px;
  border-top: 2px solid var(--ink-20); border-right: 2px solid var(--ink-20);
  transform: translateY(-50%) rotate(45deg);
}

.clinical-note {
  margin-top: 26px;
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--peechee-purple-10);
  border-left: 3px solid var(--bt-blue);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 13px; line-height: 1.5; color: var(--fg-1);
}
.clinical-note .lbl {
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 900;
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--bt-blue);
  padding-top: 2px;
}

/* ============================================================
   SPARK APP CHROME (slides 3, 6, 7, 8)
   ============================================================ */
.spark-frame {
  position: absolute; inset: 44px 0 0 0;
  display: grid; grid-template-columns: 84px 1fr;
  background: var(--peechee-purple-10);
  font-family: var(--font-body);
}
.spark-sidebar-deck {
  background: var(--peechee-purple-90); color: white;
  display: flex; flex-direction: column; align-items: center;
  padding: 22px 0 20px;
}
.spark-sidebar-deck .logo {
  width: 44px; height: 44px; margin-bottom: 26px;
  display: flex; align-items: center; justify-content: center;
}
.spark-sidebar-deck .logo img { width: 34px; height: 34px; }
.spark-sidebar-deck .nav {
  display: flex; flex-direction: column; gap: 4px; width: 100%; padding: 0 12px; flex: 1;
}
.spark-sidebar-deck .nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 0; border-radius: 12px;
  color: rgba(255,255,255,0.70);
  font-size: 10px; font-weight: 600; letter-spacing: 0.02em;
}
.spark-sidebar-deck .nav-item svg { width: 22px; height: 22px; stroke-width: 1.75; }
.spark-sidebar-deck .nav-item.active { background: rgba(188,168,255,0.18); color: white; }
.spark-sidebar-deck .nav-item.active svg { color: #bca8ff; }
.spark-sidebar-deck .spacer { flex: 1; }

.spark-main {
  display: flex; flex-direction: column;
  overflow: hidden;
}
.spark-topbar-deck {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: var(--peechee-purple-10);
  border-bottom: 1px solid var(--border-1);
}
.spark-topbar-deck h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -0.01em; margin: 0;
}
.spark-topbar-deck .right {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.spark-topbar-deck .pill-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px;
  border: 1px solid var(--border-1); background: white;
  color: var(--fg-1); font-size: 12px; font-weight: 600;
  cursor: pointer;
}
.spark-topbar-deck .user {
  display: flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 4px; border-radius: 999px;
  border: 1px solid var(--border-1); background: white;
  font-size: 12px; font-weight: 600;
}
.spark-topbar-deck .user .avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--bt-cyan); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 11px;
}

.spark-body {
  flex: 1; padding: 18px 28px;
  display: flex; flex-direction: column; gap: 14px;
  min-height: 0; overflow: hidden;
}

.spark-card {
  background: white; border-radius: 16px; padding: 18px 22px;
  border: 1px solid var(--border-1);
  box-shadow: 0 1px 3px rgba(10,10,18,0.04);
}
.spark-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; margin: 0;
}

/* Tabs (the rounded pill tab group) */
.spark-tabs {
  display: inline-flex; gap: 2px; padding: 4px;
  background: var(--peechee-purple-90); border-radius: 12px;
}
.spark-tabs .t {
  padding: 7px 16px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.65); border-radius: 9px;
  cursor: pointer;
}
.spark-tabs .t.active { background: rgba(188,168,255,0.28); color: white; }


/* ============================================================
   SLIDE 3 — DIAGNOSTIC (interactive letter-sound)
   ============================================================ */
.s-diagnostic { padding: 0; background: white; }

.diag-layout {
  flex: 1; display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  min-height: 0;
}
.diag-main {
  background: white; border-radius: 18px;
  border: 1px solid var(--border-1);
  padding: 22px 28px;
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.diag-main .top-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.diag-main .lesson-meta {
  display: flex; align-items: baseline; gap: 14px;
}
.diag-main .lesson-meta .lesson-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: 19px; letter-spacing: -0.005em;
}
.diag-main .lesson-meta .lesson-sub {
  font-size: 12px; color: var(--fg-2); font-weight: 500;
}
.diag-main .branching-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--peechee-purple-10);
  color: var(--bt-blue);
  padding: 6px 12px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid var(--bt-blue-30);
}
.diag-main .branching-pill .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bt-blue);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.diag-tabs-row {
  display: flex; gap: 24px;
  border-bottom: 1px solid var(--border-1);
  margin-bottom: 22px;
}
.diag-tab {
  font-family: var(--font-display); font-weight: 600;
  font-size: 13px; padding: 8px 2px 14px;
  color: var(--fg-2); cursor: pointer;
  position: relative;
}
.diag-tab .meta { display: block; font-size: 10px; font-weight: 500; color: var(--fg-3); margin-top: 1px; letter-spacing: 0.02em; }
.diag-tab.active { color: var(--bt-blue); }
.diag-tab.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--bt-blue); border-radius: 2px;
}

.diag-question-area {
  flex: 1; display: flex; flex-direction: column; align-items: stretch;
  padding: 8px 20px 22px;
}
.diag-prompt {
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px; color: var(--fg-1);
  margin-bottom: 24px;
  text-align: center;
}
.diag-prompt-row {
  display: flex; align-items: center; gap: 12px;
  justify-content: flex-start; margin-bottom: 24px;
}
.diag-prompt-row .diag-prompt { margin-bottom: 0; text-align: left; }
.diag-qbody {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 80px; min-height: 0;
}
.audio-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--bt-blue);
  background: var(--bt-blue-5);
  color: var(--bt-blue);
  border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.01em;
  padding: 8px 15px 8px 12px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0;
  transition: all 140ms var(--ease-out);
}
.audio-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.audio-btn:hover { background: var(--bt-blue); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 14px rgba(60,1,247,0.10); }
.audio-btn:active { transform: scale(0.98); }
.audio-btn.playing { background: var(--bt-blue); color: #fff; }
.audio-btn.playing svg { animation: audio-pulse 800ms var(--ease-out) infinite; }
@keyframes audio-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.diag-image-row {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.diag-image-row .pic {
  width: 160px; height: 160px;
  background: var(--peechee-purple-10);
  border: 1px solid var(--border-1);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 104px;
}
.diag-image-row .word {
  font-family: var(--font-display); font-weight: 800;
  font-size: 44px; letter-spacing: -0.02em;
  color: var(--ink-900);
}
.diag-image-row .word .silent { opacity: 0.32; }

.diag-choices {
  display: grid;
  grid-template-columns: repeat(2, 190px);
  gap: 16px;
}
.diag-choice {
  height: 96px;
  border-radius: 18px;
  background: white;
  border: 2px solid var(--ink-20);
  font-family: var(--font-display); font-weight: 900;
  font-size: 48px; color: var(--ink-900);
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: all 160ms var(--ease-out);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.diag-choice:hover { border-color: var(--bt-blue); transform: translateY(-1px); box-shadow: 0 6px 14px rgba(60,1,247,0.08); }
.diag-choice.correct {
  background: var(--bt-green); color: white; border-color: var(--bt-green);
}
.diag-choice.wrong {
  background: white; color: var(--bt-red); border-color: var(--bt-red);
}
.diag-choice.locked { pointer-events: none; opacity: 0.95; }

.diag-footnote {
  margin-top: auto;
  font-size: 11px; color: var(--fg-3);
  text-align: center;
}

/* Right rail — live scoring */
.diag-rail {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 0;
}
.rail-card {
  background: white; border-radius: 16px;
  border: 1px solid var(--border-1);
  padding: 16px 18px;
}
.rail-card .label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: space-between;
}
.rail-card .label .live {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--bt-green); letter-spacing: 0.12em;
}
.rail-card .label .live .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bt-green);
  animation: pulse 1.6s ease-in-out infinite;
}
.rail-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 6px 0;
}
.rail-row .k { font-size: 12px; color: var(--fg-2); font-weight: 500; }
.rail-row .v { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink-900); }

.rail-skill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-1);
  font-size: 12px;
}
.rail-skill:last-child { border-bottom: none; }
.rail-skill .name { color: var(--ink-900); font-weight: 500; }

.skill-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 9px; letter-spacing: 0.10em; text-transform: uppercase;
}
.skill-pill .dot { width: 6px; height: 6px; border-radius: 50%; }
.skill-pill.pending { background: var(--ink-10); color: var(--fg-2); }
.skill-pill.pending .dot { background: var(--ink-30); }
.skill-pill.strong { background: #defaec; color: #007a3f; }
.skill-pill.strong .dot { background: var(--bt-green); }
.skill-pill.emerging { background: #ffe2f2; color: #b8377f; }
.skill-pill.emerging .dot { background: var(--bt-pink); }
.skill-pill.limited { background: #ffe2ce; color: #b24700; }
.skill-pill.limited .dot { background: var(--bt-orange); }

.rail-card .branching-note {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--peechee-purple-10);
  border-radius: 10px;
  font-size: 11px; line-height: 1.45; color: var(--fg-1);
  border-left: 3px solid var(--bt-blue);
}

/* ============================================================
   SLIDE 4 — INSTRUCTIONAL PLAN
   ============================================================ */
.s-plan {
  background: white; padding: 70px 96px 48px;
  flex-direction: column; justify-content: flex-start;
}
.s-plan .header { padding-top: 24px; }
.s-plan .header .eyebrow { margin-bottom: 14px; }
.s-plan h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 72px; line-height: 0.94; letter-spacing: -0.025em;
  margin: 0 0 16px; max-width: 1100px;
}
.s-plan h1 em { font-style: normal; color: var(--bt-blue); }
.s-plan .lede {
  font-size: 15px; color: var(--fg-2); max-width: none;
  font-weight: 400; line-height: 1.55; white-space: nowrap;
}

.plan-layout {
  margin-top: 22px;
  display: grid; grid-template-columns: 360px 1fr; gap: 28px;
  align-items: flex-start;
}
.student-card {
  background: white; border: 1.5px solid var(--border-1);
  border-radius: 18px; padding: 20px 22px;
}
.student-card .head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border-1);
}
.student-card .av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bt-pink); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 16px;
}
.student-card .nm {
  font-family: var(--font-display); font-weight: 800;
  font-size: 17px;
}
.student-card .sub {
  font-size: 12px; color: var(--fg-2); margin-top: 2px;
}
.student-card .baseline-lbl {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2); margin-bottom: 10px;
}
.student-card .baseline-val {
  font-family: var(--font-display); font-weight: 900;
  font-size: 68px; line-height: 1; letter-spacing: -0.03em;
  color: var(--bt-blue);
}
.student-card .baseline-status {
  font-size: 12px; color: var(--fg-2); margin-top: 4px;
}

.student-card .areas-lbl {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2); margin: 22px 0 10px;
}
.student-card .area {
  display: flex; justify-content: space-between; align-items: center;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px solid var(--border-1);
}
.student-card .area:last-child { border-bottom: none; }
.student-card .area .nm2 { font-weight: 500; }

.plan-board {
  background: white; border: 1.5px solid var(--border-1);
  border-radius: 18px; padding: 20px 24px;
}
.plan-board .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.plan-board .head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; margin: 0;
}
.plan-board .ready {
  display: inline-flex; align-items: center; gap: 6px;
  background: #defaec; color: #007a3f;
  padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
}
.plan-board .ready .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--bt-green); }

.plan-intro {
  font-size: 13px; color: var(--fg-2); line-height: 1.5;
  margin-bottom: 16px;
}

.plan-table {
  width: 100%; border-collapse: separate; border-spacing: 0 4px;
  font-size: 13px;
}
.plan-table th {
  text-align: left;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-2);
  padding: 6px 12px;
}
.plan-table .pill-cell {
  font-family: var(--font-display); font-weight: 800;
  font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase;
  padding: 10px 14px;
  background: var(--peechee-purple-10);
  border-radius: 10px 0 0 10px;
  color: var(--bt-blue);
  vertical-align: middle;
  width: 130px;
}
.plan-table .lvl {
  padding: 10px 14px;
  background: var(--peechee-purple-10);
  vertical-align: middle;
  line-height: 1.4;
  color: var(--ink-900);
}
.plan-table .lvl strong { font-weight: 700; }
.plan-table .meta {
  padding: 10px 14px;
  background: var(--peechee-purple-10);
  border-radius: 0 10px 10px 0;
  text-align: right;
  font-size: 11px;
  color: var(--fg-2);
  white-space: nowrap;
  vertical-align: middle;
  width: 200px;
}
.plan-table .meta strong { color: var(--ink-900); font-weight: 700; display: block; }

.plan-actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 16px;
  font-size: 12px;
}
.plan-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px;
}
.plan-btn.primary { background: var(--bt-blue); color: white; }
.plan-btn.secondary { background: white; border: 1px solid var(--border-1); color: var(--ink-900); }
.plan-actions .note { color: var(--fg-3); font-size: 11px; }


/* ============================================================
   SLIDE 5 — THREE CURRICULA
   ============================================================ */
.s-curricula {
  background: white; padding: 70px 96px 48px;
  flex-direction: column; justify-content: flex-start;
}
.s-curricula .header { padding-top: 28px; max-width: 1200px; }
.s-curricula .header .eyebrow { margin-bottom: 14px; }
.s-curricula h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 62px; line-height: 0.94; letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.s-curricula h1 em { font-style: normal; color: var(--bt-blue); }
.s-curricula .lede {
  font-size: 15px; color: var(--fg-2); max-width: 1100px;
  line-height: 1.5;
}

.cur-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cur-card {
  background: white; border: 1.5px solid var(--border-1);
  border-radius: 18px;
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  overflow: hidden;
}
.cur-card .grades {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 10px;
}
.cur-card h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.cur-card .chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
.cur-card .chips .chip {
  display: inline-flex;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.04em;
  background: var(--peechee-purple-10);
  color: var(--ink-900);
}
.cur-card .lede {
  font-size: 13px; line-height: 1.5; color: var(--fg-1);
  margin-bottom: 16px;
}
.cur-card .areas-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 10px;
}
.cur-card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.cur-card li {
  font-size: 12px; line-height: 1.4;
  color: var(--ink-900);
  padding-left: 14px;
  position: relative;
}
.cur-card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent, var(--bt-blue));
}
.cur-card li strong { font-weight: 700; }
.cur-card .footer-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-1);
}
.cur-card .footer-row .col .l {
  font-family: var(--font-display); font-weight: 700;
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-3);
}
.cur-card .footer-row .col .v {
  font-size: 11px; color: var(--ink-900); font-weight: 600;
  margin-top: 2px;
}
.cur-card.math { --accent: var(--bt-blue); }
.cur-card.math .grades { color: var(--bt-blue); }
.cur-card.math h2 { color: var(--bt-blue); }
.cur-card.found { --accent: var(--bt-pink); }
.cur-card.found .grades { color: var(--bt-pink); }
.cur-card.found h2 { color: var(--bt-pink); }
.cur-card.adv { --accent: var(--bt-green); }
.cur-card.adv .grades { color: #007a3f; }
.cur-card.adv h2 { color: #007a3f; }

.cur-footer {
  margin-top: 14px;
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bt-blue); color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 12.5px; line-height: 1.45;
}
.cur-footer .lbl {
  font-family: var(--font-display); font-weight: 900;
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--bt-yellow);
  flex-shrink: 0;
  padding-top: 2px;
}
.cur-footer .body { color: rgba(255,255,255,0.92); }
.cur-footer .body strong { color: white; font-weight: 700; }


/* ============================================================
   SLIDE 6 — CURRICULUM LIBRARY (lesson plan)
   ============================================================ */
.s-library { padding: 0; background: white; }

.lib-layout {
  flex: 1;
  display: grid; grid-template-columns: 280px 1fr;
  gap: 14px; min-height: 0;
}
.lib-tree {
  background: white; border-radius: 16px; border: 1px solid var(--border-1);
  padding: 16px 16px;
  font-size: 12px;
  overflow: hidden;
}
.lib-tree .tabs-row {
  display: flex; gap: 14px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 11px;
  border-bottom: 1px solid var(--border-1);
  padding-bottom: 10px; margin-bottom: 12px;
}
.lib-tree .tabs-row .t { color: var(--fg-2); padding-bottom: 6px; position: relative; }
.lib-tree .tabs-row .t.active { color: var(--bt-blue); }
.lib-tree .tabs-row .t.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -11px;
  height: 2px; background: var(--bt-blue);
}
.lib-tree .group {
  font-family: var(--font-display); font-weight: 800;
  font-size: 12px; color: var(--ink-900);
  padding: 8px 6px; cursor: pointer;
  display: flex; align-items: center; gap: 6px;
}
.lib-tree .group .caret { color: var(--fg-3); font-size: 10px; transition: transform 140ms; }
.lib-tree .group.open .caret { transform: rotate(90deg); color: var(--bt-blue); }
.lib-tree .group.open { color: var(--bt-blue); }
.lib-tree .subgroup {
  font-size: 11px; color: var(--fg-2); padding: 5px 6px 5px 22px;
  cursor: pointer;
}
.lib-tree .subgroup.active {
  background: var(--peechee-purple-10);
  color: var(--ink-900); font-weight: 600;
  border-radius: 6px;
}
.lib-tree .subgroup.lesson {
  padding-left: 38px; color: var(--fg-2);
}
.lib-tree .subgroup.lesson.active {
  background: var(--bt-blue); color: white;
}
.lib-tree .leaf {
  font-size: 10px; color: var(--fg-3); padding: 3px 6px 3px 56px;
  display: flex; align-items: center; gap: 6px;
}
.lib-tree .leaf .ic { width: 4px; height: 4px; border-radius: 50%; background: var(--ink-30); }

.lib-detail {
  background: white; border-radius: 16px; border: 1px solid var(--border-1);
  display: flex; flex-direction: column;
  min-height: 0;
  overflow: hidden;
}
.lib-detail .top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border-1);
}
.lib-detail .top .ttl {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px;
}
.lib-detail .top .sub {
  font-size: 11px; color: var(--fg-2); margin-top: 2px;
}
.lib-detail .top .actions { display: flex; gap: 8px; }
.lib-detail .lesson-tabs {
  display: flex; gap: 26px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border-1);
  font-family: var(--font-display); font-weight: 600; font-size: 12px;
}
.lib-detail .lesson-tabs .t {
  padding: 10px 0; color: var(--fg-2);
  position: relative;
}
.lib-detail .lesson-tabs .t.active { color: var(--bt-blue); }
.lib-detail .lesson-tabs .t.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 2px; background: var(--bt-blue);
}
.lib-detail .materials-row {
  display: flex; gap: 16px; padding: 12px 22px;
  background: var(--peechee-purple-10);
  font-size: 11px; color: var(--fg-2);
  border-bottom: 1px solid var(--border-1);
}
.lib-detail .materials-row strong { font-weight: 700; color: var(--ink-900); margin-right: 4px; }
.lib-detail .materials-row .m {
  display: inline-flex; align-items: center; gap: 6px;
}
.lib-detail .activity-note {
  padding: 10px 22px;
  font-size: 11px; color: var(--fg-2); line-height: 1.5;
  background: #fff8db;
  border-bottom: 1px solid var(--border-1);
}
.lib-detail .activity-note .em { color: var(--bt-orange); font-weight: 700; }

.lib-detail .steps {
  flex: 1; overflow: auto;
  padding: 6px 22px 18px;
  display: flex; flex-direction: column;
  gap: 0;
}
.lib-step {
  display: grid; grid-template-columns: 32px 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-1);
  align-items: flex-start;
}
.lib-step:last-child { border-bottom: none; }
.lib-step .num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--peechee-purple-10); color: var(--bt-blue);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.lib-step.is-active .num { background: var(--bt-blue); color: white; }
.lib-step.is-active .ttl { color: var(--bt-blue); }
.lib-step .ttl {
  font-family: var(--font-display); font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.lib-step .ttl .activity-flag {
  font-size: 11px; color: var(--bt-orange); font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
}
.lib-step .body {
  font-size: 12px; line-height: 1.55; color: var(--fg-1);
  margin-top: 4px;
}
.lib-step .body .lbl {
  font-family: var(--font-display); font-weight: 700;
  color: var(--bt-blue);
  margin-right: 6px;
}
.lib-step .launch {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 999px;
  background: white; border: 1.5px solid var(--bt-orange); color: var(--bt-orange);
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: all 160ms var(--ease-out);
}
.lib-step .launch:hover { background: var(--bt-orange); color: white; }
.lib-step .launch.live {
  background: var(--bt-orange); color: white;
}
.lib-step .launch.live .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: white;
  animation: pulse 1.4s ease-in-out infinite;
}

/* ---- Slide 6 resource viewer (Lesson Plan / Teaching Slides / Formative Activity) ---- */
/* Value-callout band (top of slide 6) — makes the page read standalone */
.lib-callouts {
  position: absolute; top: 44px; left: 0; right: 0; height: 142px;
  background: white; border-bottom: 1px solid var(--border-1);
  display: flex; align-items: center; gap: 30px;
  padding: 0 36px; z-index: 6;
}
.lib-callouts .lc-lead { flex: 0 0 37%; }
.lib-callouts .lc-eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bt-blue); margin-bottom: 7px;
}
.lib-callouts .lc-head {
  font-family: var(--font-display); font-weight: 800; font-size: 21px;
  line-height: 1.12; letter-spacing: -0.01em; color: var(--ink-900); text-wrap: balance;
}
.lib-callouts .lc-head em { font-style: normal; color: var(--bt-blue); }
.lib-callouts .lc-sub { font-size: 12px; line-height: 1.45; color: var(--fg-2); margin-top: 8px; }
.lib-callouts .lc-sub strong { color: var(--ink-900); font-weight: 700; }
.lib-callouts .lc-cards { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lib-callouts .lc-card {
  background: var(--peechee-purple-10); border-radius: 12px; padding: 12px 14px;
  border: 1px solid var(--border-1);
}
.lib-callouts .lc-card .n {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.04em; color: var(--bt-blue);
}
.lib-callouts .lc-card .t {
  font-family: var(--font-display); font-weight: 800; font-size: 15px;
  color: var(--ink-900); margin: 4px 0 5px;
}
.lib-callouts .lc-card .d { font-size: 11px; line-height: 1.42; color: var(--fg-2); }

/* ============================================================
   STORY HERO + POP-OUT DEMO (slides 3 & 6)
   ============================================================ */
.story {
  position: absolute; inset: 44px 0 0 0;
  background: white; overflow: hidden;
  padding: 76px 96px 60px;
  display: flex; flex-direction: column;
}
.story .story-sun {
  position: absolute; top: -56px; right: -44px; width: 320px; height: auto;
  opacity: 0.10; pointer-events: none;
}
.story .story-eyebrow {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bt-blue);
  margin-bottom: 18px;
}
.story .story-head {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.03em;
  color: var(--ink-900); max-width: 17ch; margin: 0; text-wrap: balance;
}
.story .story-head em { font-style: normal; color: var(--bt-blue); }
.story .story-lede {
  font-size: 21px; line-height: 1.5; color: var(--fg-2);
  max-width: 760px; margin: 24px 0 0; font-weight: 400;
}
.story .story-lede strong { color: var(--ink-900); font-weight: 600; }
.story .story-cta { margin-top: 32px; display: flex; align-items: center; gap: 16px; }
.preview-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bt-blue); color: white; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: 0.01em; padding: 15px 26px 15px 18px; border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(60,1,247,0.22);
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out);
}
.preview-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(60,1,247,0.30); }
.preview-btn:active { transform: scale(0.99); }
.preview-btn .play {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.preview-btn .play svg { width: 13px; height: 13px; margin-left: 2px; }
.story .story-hint {
  font-size: 13px; color: var(--fg-3); font-weight: 500; white-space: nowrap;
}
.story .story-hint strong { color: var(--bt-blue); font-weight: 700; }
.story .story-points {
  margin-top: auto; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; border-top: 1px solid var(--border-1); padding-top: 26px;
}
.story .story-point .n {
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.04em; color: var(--bt-blue);
}
.story .story-point .t {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  color: var(--ink-900); margin: 7px 0 6px;
}
.story .story-point .d { font-size: 13px; line-height: 1.5; color: var(--fg-2); }

/* Slide 6 — deliverer / staffing-model callout */
.deliverer-callout {
  position: absolute; top: 150px; right: 96px; width: 470px;
  background: var(--bt-blue-5);
  border: 1px solid var(--bt-blue-10);
  border-radius: 20px;
  padding: 30px 32px 32px;
  box-shadow: var(--shadow-sm);
}
.deliverer-callout .dc-eyebrow {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--bt-blue);
  margin-bottom: 14px;
}
.deliverer-callout .dc-lead {
  font-size: 18px; line-height: 1.45; color: var(--ink-900);
  margin: 0 0 22px; font-weight: 400;
}
.deliverer-callout .dc-lead strong { font-weight: 700; }
.deliverer-callout .dc-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 15px;
}
.deliverer-callout .dc-list li {
  position: relative; padding-left: 26px;
  font-size: 13.5px; line-height: 1.5; color: var(--fg-2);
}
.deliverer-callout .dc-list li strong { color: var(--ink-900); font-weight: 700; }
.deliverer-callout .dc-list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--bt-blue);
}

/* Pop-out demo modal */
.demo-modal { position: absolute; inset: 0; z-index: 50; display: none; }
.demo-modal.open { display: block; }
.demo-backdrop {
  position: absolute; inset: 0; background: rgba(26,19,34,0.55);
  animation: demo-fade 200ms var(--ease-out);
}
.demo-window {
  position: absolute; inset: 26px; background: white;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 36px 90px rgba(10,10,18,0.45);
  animation: demo-pop 240ms var(--ease-pop);
}
.demo-window .spark-frame { inset: 0; }
.demo-close {
  position: absolute; top: 16px; right: 18px; z-index: 60;
  width: 38px; height: 38px; border-radius: 50%;
  background: white; border: 1px solid var(--border-1); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink-900); box-shadow: var(--shadow-md);
  transition: all 140ms var(--ease-out);
}
.demo-close:hover { background: var(--ink-900); color: white; transform: rotate(90deg); }
@keyframes demo-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes demo-pop { from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); } }

/* ---- Reports pop-out: District / School / Student ---- */
.rpt-body { padding: 0; gap: 0; }
.rpt-tabs {
  display: flex; gap: 28px; padding: 0 26px;
  border-bottom: 1px solid var(--border-1); flex-shrink: 0;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
}
.rpt-tabs .t { padding: 14px 0; color: var(--fg-2); cursor: pointer; position: relative; user-select: none; }
.rpt-tabs .t.active { color: var(--bt-blue); }
.rpt-tabs .t.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--bt-blue); }
.rpt-panes { position: relative; flex: 1; min-height: 0; }
.rpt-pane { position: absolute; inset: 0; display: none; overflow: auto; padding: 18px 26px 22px; }
.rpt-pane.active { display: block; }

.rpt-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.rpt-head h2 { font-family: var(--font-display); font-weight: 800; font-size: 20px; margin: 0; color: var(--ink-900); }
.rpt-head .sub { font-size: 12px; color: var(--fg-2); margin-top: 3px; }
.rpt-filters { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.rpt-filters .sel {
  font-size: 11px; color: var(--fg-1); background: var(--bg-2);
  border: 1px solid var(--border-1); border-radius: 999px; padding: 6px 12px; white-space: nowrap;
}
.report-stat-row { margin-bottom: 14px; }
.rpt-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rpt-card { border: 1px solid var(--border-1); border-radius: 14px; padding: 16px 18px; background: white; }
.rpt-card.full { grid-column: 1 / -1; }
.rpt-card-h { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--ink-900); margin-bottom: 12px; }

/* distribution stacked-bar chart */
.dist-chart { display: flex; align-items: flex-end; gap: 12px; height: 150px; }
.dist-col { flex: 1; display: flex; flex-direction: column; height: 100%; }
.dist-stack { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; border-radius: 6px; overflow: hidden; }
.dist-seg { width: 100%; }
.dist-seg.exc { background: var(--bt-blue); }
.dist-seg.meet { background: var(--bt-green); }
.dist-seg.appr { background: #ffd9a8; }
.dist-seg.below { background: #ffc2bd; }
.dist-m { text-align: center; font-size: 10px; color: var(--fg-3); margin-top: 6px; font-weight: 600; }
.dist-legend { display: flex; gap: 16px; margin-top: 12px; font-size: 11px; color: var(--fg-2); }
.dist-legend i { display: inline-block; width: 10px; height: 10px; border-radius: 3px; margin-right: 5px; vertical-align: -1px; }
.dist-legend i.exc { background: var(--bt-blue); } .dist-legend i.meet { background: var(--bt-green); }
.dist-legend i.appr { background: #ffd9a8; } .dist-legend i.below { background: #ffc2bd; }
.dist-tally { margin-top: 14px; font-size: 12px; color: var(--fg-1); }
.dist-tally-row { display: flex; gap: 16px; margin-top: 14px; font-size: 12px; color: var(--fg-2); flex-wrap: wrap; }
.dist-tally-row b { font-size: 16px; font-family: var(--font-display); }

/* report tables */
.rpt-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.rpt-table th { text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 11px; color: var(--fg-2); padding: 7px 8px; border-bottom: 1px solid var(--border-1); }
.rpt-table td { padding: 8px; border-bottom: 1px solid var(--border-1); color: var(--ink-900); }
.rpt-table tr:last-child td { border-bottom: none; }
.rpt-table th:not(:first-child), .rpt-table td:not(:first-child) { text-align: center; }
.rpt-table.std td:first-child, .rpt-table.std th:first-child { text-align: left; }
.rpt-table .avg td { font-weight: 700; background: var(--bg-2); }
.rpt-mini { font-size: 10px; color: var(--fg-3); margin-top: 8px; }
.sp { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 6px; font-family: var(--font-display); font-weight: 800; font-size: 11px; }
.sp.b { background: #ffc2bd; color: #8a1a12; }
.sp.a { background: #ffd9a8; color: #8a4a00; }
.sp.m { background: #b6e8c9; color: #0a5b30; }
.sp.e { background: var(--spark-blue-20, #d6dcfd); color: var(--bt-blue); }

/* pacing bar */
.pacing-stats { display: flex; gap: 20px; font-size: 12px; color: var(--fg-2); margin-bottom: 22px; }
.pacing-stats b { font-family: var(--font-display); font-size: 15px; color: var(--ink-900); }
.pacing-bar { position: relative; height: 8px; background: var(--bg-3); border-radius: 999px; margin: 28px 8px 40px; }
.pacing-bar .pb-done { position: absolute; left: 0; width: 30%; height: 100%; background: var(--bt-blue); border-radius: 999px; }
.pacing-bar .pb-proj { position: absolute; left: 30%; width: 34%; height: 100%; background: var(--bt-orange); border-radius: 999px; }
.pacing-bar .pb-dot { position: absolute; top: 50%; width: 13px; height: 13px; border-radius: 50%; transform: translate(-50%,-50%); border: 2px solid white; }
.pacing-bar .pb-dot.now { background: var(--bt-blue); }
.pacing-bar .pb-dot.proj { background: var(--bt-orange); }
.pacing-bar .pb-dot span { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: 10px; font-weight: 700; color: var(--ink-900); white-space: nowrap; }
.pacing-bar .pb-target { position: absolute; right: -2px; top: -8px; bottom: -8px; width: 2px; background: var(--bt-pink); }
.pacing-bar .pb-target span { position: absolute; top: -16px; right: 0; font-size: 10px; font-weight: 700; color: var(--bt-pink); white-space: nowrap; }
.pacing-note { font-size: 11px; color: var(--fg-2); line-height: 1.45; }
.std-rows { display: flex; flex-direction: column; gap: 7px; margin-top: 4px; }
.std-r { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--ink-900); }
.std-r .acc { margin-left: auto; font-weight: 700; font-family: var(--font-display); }
.rpt-foot { margin-top: 14px; font-size: 12px; color: var(--fg-2); line-height: 1.45; border-top: 1px solid var(--border-1); padding-top: 12px; }
.sc-src { font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--fg-3); letter-spacing: 0; }
.sc-table { width: 100%; border-collapse: collapse; font-size: 11.5px; margin-top: 2px; }
.sc-table th { text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.03em; text-transform: uppercase; color: var(--fg-2); padding: 6px 8px; background: var(--bg-2); border-bottom: 1px solid var(--border-1); }
.sc-table td { padding: 5px 8px; border-bottom: 1px solid var(--border-1); color: var(--ink-900); }
.sc-table tr:last-child td { border-bottom: none; }
.sc-table .ct { width: 46px; text-align: center; font-family: var(--font-display); font-weight: 800; }
.sc-table th.ct { color: var(--fg-2); }
.sc-table .div { border-left: 1px solid var(--border-1); padding-left: 14px; }
.sc-table .s-ct { color: var(--bt-green); }
.sc-table .c-ct { color: var(--bt-orange); }

.lib-tree .group:first-of-type { margin-top: 2px; }
.lib-detail .step-time {
  font-family: var(--font-body); font-weight: 600; font-size: 10px;
  letter-spacing: 0.04em; color: var(--fg-3);
  background: var(--bg-2); border-radius: 999px; padding: 2px 8px;
}
.res-tabs .t { cursor: pointer; user-select: none; white-space: nowrap; }
.lib-step .ttl .activity-flag, .lib-detail .activity-flag { white-space: nowrap; }
.spark-topbar-deck .user { white-space: nowrap; }

.res-caption {
  padding: 11px 22px;
  background: var(--peechee-purple-10);
  border-bottom: 1px solid var(--border-1);
  font-size: 12px; line-height: 1.45; color: var(--fg-1);
}
.res-caption strong { color: var(--bt-blue); font-weight: 700; }

.tab-bodies { position: relative; flex: 1; min-height: 0; }
.tab-pane {
  position: absolute; inset: 0;
  display: none; flex-direction: column; min-height: 0;
}
.tab-pane.active { display: flex; }

/* Lesson-plan objective banner */
.lesson-objective {
  padding: 11px 22px; font-size: 12px; line-height: 1.5; color: var(--fg-1);
  border-bottom: 1px solid var(--border-1);
}
.lesson-objective .lbl {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--bt-blue);
  margin-right: 8px;
}
.lesson-objective strong { color: var(--ink-900); font-weight: 700; }
.tab-pane[data-pane="plan"] .steps { padding-top: 8px; flex: none; overflow: visible; }
.tab-pane[data-pane="plan"].active { display: block; overflow: auto; }

/* Scaffold differentiation note */
.scaffold-note {
  margin: 4px 22px 18px; border: 1px solid var(--border-1);
  border-radius: 14px; overflow: hidden;
}
.scaffold-note .sc-head {
  background: var(--bt-blue); color: white;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 0.02em; padding: 9px 16px;
}
.scaffold-note .sc-cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.scaffold-note .sc-col { padding: 12px 16px; border-right: 1px solid var(--border-1); }
.scaffold-note .sc-col:last-child { border-right: none; }
.scaffold-note .sc-lbl {
  font-family: var(--font-display); font-weight: 700; font-size: 11px;
  color: var(--ink-900); margin-bottom: 4px;
}
.scaffold-note .sc-body { font-size: 11px; line-height: 1.5; color: var(--fg-2); }

/* ---- Teaching-slides viewer ---- */
.slides-viewer {
  flex: 1; min-height: 0; display: flex; align-items: center; gap: 14px;
  padding: 16px 22px 8px;
}
.sv-arrow {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-1); background: white; color: var(--ink-900);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 140ms var(--ease-out);
}
.sv-arrow:hover { background: var(--bt-blue); color: white; border-color: var(--bt-blue); transform: translateY(-1px); }
.sv-stage {
  flex: 1; height: 100%; min-height: 0;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border-1);
  box-shadow: var(--shadow-sm);
}
.sv-footer {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 22px 14px;
}
.sv-count { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--fg-2); white-space: nowrap; }
.sv-scaffold { margin-left: auto; margin-right: 56px; font-size: 11px; color: var(--fg-2); white-space: nowrap; }
.sv-dots { display: flex; gap: 6px; }
.sv-dots .d {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink-20);
  cursor: pointer; transition: all 140ms var(--ease-out);
}
.sv-dots .d.on { background: var(--bt-blue); transform: scale(1.25); }
.sv-count { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--fg-2); }
.sv-scaffold { margin-left: auto; font-size: 11px; color: var(--fg-2); }


/* The teaching slide canvas (rendered into .sv-stage) */
.tslide {
  width: 100%; height: 100%; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  padding: 26px 36px; font-family: var(--font-display);
}
.tslide.dark { background: var(--bt-blue); color: white; }
.tslide.paper { background: #fbfbfd; color: var(--ink-900); }
.tslide .ts-eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 700; opacity: 0.7; margin-bottom: 8px;
}
.tslide.dark .ts-eyebrow { color: var(--bt-yellow); opacity: 1; }
.tslide .ts-title { font-weight: 900; font-size: 34px; line-height: 1.0; letter-spacing: -0.02em; }
.tslide .ts-sub { font-weight: 500; font-size: 15px; margin-top: 12px; opacity: 0.85; font-family: var(--font-body); }
.tslide .ts-sun { position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; }
.tslide .ts-audio {
  position: absolute; bottom: 18px; right: 24px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  font-family: var(--font-body); font-weight: 600; font-size: 11px;
  background: rgba(255,255,255,0.16); color: inherit;
  border: 1px solid currentColor; border-radius: 999px; padding: 5px 11px;
  cursor: pointer; opacity: 0.85;
}
.tslide.paper .ts-audio { background: var(--bt-blue-5); border-color: var(--bt-blue); color: var(--bt-blue); }
.tslide .ts-ell {
  position: absolute; bottom: 18px; left: 36px;
  font-family: var(--font-body); font-weight: 700; font-size: 10px;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--bt-green); color: white; border-radius: 999px; padding: 4px 10px;
}
/* counters (manipulatives) */
.ts-counters { display: flex; gap: 14px; margin-top: 18px; align-items: center; }
.ts-pair { display: flex; gap: 7px; padding: 9px; border-radius: 14px; background: rgba(15,181,242,0.12); }
.ts-dot { width: 30px; height: 30px; border-radius: 50%; background: var(--bt-cyan); }
.ts-dot.odd { background: var(--bt-orange); box-shadow: 0 0 0 3px rgba(254,102,0,0.25); }
.ts-pair.lone { background: rgba(254,102,0,0.14); }
/* number sequence */
.ts-seq { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ts-seq .n {
  font-weight: 800; font-size: 22px; padding: 8px 14px; border-radius: 12px;
  background: var(--bt-blue-5); color: var(--bt-blue);
}
.ts-seq .n.even { background: var(--bt-cyan); color: white; }
.ts-stamp {
  margin-top: 16px; display: inline-block; align-self: flex-start;
  font-weight: 900; font-size: 18px; letter-spacing: 0.02em;
  color: var(--bt-green); border: 2px solid var(--bt-green);
  border-radius: 10px; padding: 5px 14px; transform: rotate(-3deg);
}
/* hundred-chart strip */
.ts-chart { display: grid; grid-template-columns: repeat(10, 1fr); gap: 5px; margin-top: 18px; max-width: 560px; }
.ts-chart .c {
  aspect-ratio: 1; border-radius: 7px; background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--fg-2);
}
.ts-chart .c.even { background: var(--bt-cyan); color: white; }
/* rule columns */
.ts-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.ts-rule { border-radius: 14px; padding: 16px 18px; }
.ts-rule.even { background: var(--bt-cyan); color: white; }
.ts-rule.odd { background: var(--bt-orange); color: white; }
.ts-rule .rl { font-weight: 900; font-size: 20px; }
.ts-rule .rd { font-weight: 700; font-size: 26px; margin-top: 6px; letter-spacing: 0.04em; }

/* ---- Formative activity + real-time results ---- */
.fa-layout {
  flex: 1; min-height: 0; display: grid; grid-template-columns: 1fr 448px;
  gap: 14px; padding: 16px 22px 18px;
}
.fa-activity {
  border: 1px solid var(--border-1); border-radius: 16px; padding: 18px 20px;
  display: flex; flex-direction: column; min-height: 0;
}
.fa-act-head { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-2); white-space: nowrap; }
.fa-act-head .fa-link strong { color: var(--ink-900); }
.fa-pub {
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  background: var(--status-success-bg); color: var(--status-success-fg);
  border-radius: 999px; padding: 2px 9px;
}
.fa-act-head .fa-ref { margin-left: auto; font-size: 11px; color: var(--fg-3); }
.fa-question { margin-top: 16px; }
.fa-q-prompt {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--ink-900);
}
.fa-q-seq {
  display: flex; align-items: center; gap: 10px; margin-top: 8px;
  font-size: 18px; font-weight: 600; color: var(--fg-1); letter-spacing: 0.06em;
}
.fa-audio {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--bt-cyan); color: white; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.fa-audio svg { width: 14px; height: 14px; }
.fa-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.fa-choice {
  display: flex; align-items: center; gap: 12px;
  border: 1.5px solid var(--border-1); border-radius: 12px;
  padding: 13px 16px; cursor: pointer; background: white;
  font-size: 18px; font-weight: 600; color: var(--ink-900);
  transition: all 130ms var(--ease-out); text-align: left;
}
.fa-choice .rad {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--ink-30); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.fa-choice:hover:not(.locked) { border-color: var(--bt-blue); background: var(--bt-blue-5); }
.fa-choice.correct { border-color: var(--bt-green); background: var(--status-success-bg); color: var(--ink-900); }
.fa-choice.correct .rad { border-color: var(--bt-green); background: var(--bt-green); }
.fa-choice.correct .rad::after { content: '✓'; color: white; font-size: 12px; font-weight: 900; }
.fa-choice.wrong { border-color: var(--bt-red); background: rgba(254,45,35,0.08); color: var(--bt-red); }
.fa-choice.wrong .rad { border-color: var(--bt-red); }
.fa-choice.locked { cursor: default; }
.fa-feedback {
  margin-top: 14px; font-size: 12px; line-height: 1.45; min-height: 18px;
  font-weight: 600;
}
.fa-feedback.bad { color: var(--bt-orange); }
.fa-feedback.good { color: var(--bt-green); }
.fa-nav {
  margin-top: auto; padding-top: 14px; display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--border-1);
}
.fa-navbtn {
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  border: 1px solid var(--border-1); background: white; color: var(--ink-900);
  border-radius: 999px; padding: 6px 14px; cursor: pointer;
}
.fa-navbtn:hover:not(:disabled) { background: var(--bt-blue); color: white; border-color: var(--bt-blue); }
.fa-navbtn:disabled { opacity: 0.4; cursor: default; }
.fa-progress { font-size: 12px; color: var(--fg-2); font-weight: 600; white-space: nowrap; }
.fa-navbtn { white-space: nowrap; }

/* results panel */
.fa-results {
  border: 1px solid var(--border-1); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 0; background: white;
}
.fa-res-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 16px; border-bottom: 1px solid var(--border-1);
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--ink-900);
}
.fa-live { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--bt-orange); }
.fa-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bt-orange); animation: pulse 1.4s ease-in-out infinite; }
.fa-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.fa-table th {
  text-align: left; font-family: var(--font-display); font-weight: 700;
  font-size: 11px; color: var(--fg-2); padding: 8px 12px;
  border-bottom: 1px solid var(--border-1); background: var(--bg-2);
}
.fa-table th:nth-child(2), .fa-table th:nth-child(3) { text-align: center; width: 64px; }
.fa-table td { padding: 9px 12px; border-bottom: 1px solid var(--border-1); color: var(--ink-900); }
.fa-table td:nth-child(2), .fa-table td:nth-child(3) { text-align: center; font-weight: 700; }
.fa-table tr:last-child td { border-bottom: none; }
.fa-table .stu { color: var(--ink-30); font-weight: 600; }
.fa-table .stu.first { background: var(--status-success-bg); color: var(--ink-900); }
.fa-table .stu.flagged { background: #ffe2cc; color: var(--ink-900); }
.fa-tally { font-family: var(--font-display); }
.fa-tally .big { font-weight: 900; font-size: 14px; }
.fa-res-foot {
  margin-top: auto; padding: 11px 16px; font-size: 11px; line-height: 1.45;
  color: var(--fg-2); border-top: 1px solid var(--border-1); background: var(--bg-2);
}
.fa-res-foot .flag {
  display: inline-block; margin-top: 6px;
  font-weight: 700; color: var(--bt-orange);
}

/* ---- Live group view (one column per student) ---- */
.fa-table.fa-class th, .fa-table.fa-class td { padding: 7px 4px; }
.fa-table.fa-class th.qh, .fa-table.fa-class td.q { text-align: left; padding-left: 14px; width: auto; }
.fa-table.fa-class th.sh {
  width: 50px; text-align: center; vertical-align: bottom; padding-top: 9px;
}
.fa-table.fa-class th.sh.live, .fa-table.fa-class td.cell.live { background: var(--bt-blue-5); }
.fa-table.fa-class th.ch, .fa-table.fa-class td.cls { width: 52px; text-align: center; }
.fa-table.fa-class td.cell { text-align: center; }
.fa-class .av {
  display: flex; align-items: center; justify-content: center; margin: 0 auto 4px;
  width: 27px; height: 27px; border-radius: 50%; color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 9.5px; letter-spacing: 0;
}
.fa-class .snm { display: block; font-size: 9.5px; font-weight: 600; color: var(--fg-2); white-space: nowrap; }
.fa-class td.q { font-weight: 600; color: var(--ink-900); font-size: 12px; }
.fa-class .cg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 23px; height: 23px; border-radius: 7px; font-size: 12px; font-weight: 900; line-height: 1;
}
.fa-class .cg.ok   { background: var(--status-success-bg); color: var(--bt-green); }
.fa-class .cg.no   { background: rgba(254,45,35,0.12); color: var(--bt-red); }
.fa-class .cg.pend { background: transparent; color: var(--ink-30); font-weight: 700; }
.fa-class .cg.new  { animation: cgpop .42s var(--ease-pop); }
@keyframes cgpop { 0% { transform: scale(.3); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.fa-class td.cls { font-family: var(--font-display); font-weight: 800; font-size: 12px; color: var(--ink-30); }
.fa-class td.cls.good { color: var(--bt-green); }
.fa-class td.cls.mid  { color: var(--bt-orange); }
.fa-class td.cls.low  { color: var(--bt-red); }
.fa-class tr.reteach td.q { color: var(--bt-red); }
.fa-class tr.reteach td.q::after { content: ' \2691'; }
.fa-results .fa-res-foot .flag { display: block; }


.s-session { padding: 0; background: white; }

.session-layout {
  flex: 1; display: grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
  min-height: 0;
}

/* Left: simulated iPad with student question */
.ipad {
  background: white;
  border-radius: 28px;
  border: 1px solid var(--border-1);
  padding: 16px;
  display: flex; flex-direction: column;
  align-items: stretch;
  position: relative;
}
.ipad .ipad-label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--fg-2);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.ipad .ipad-label .step-pill {
  background: var(--bt-blue); color: white;
  padding: 3px 9px; border-radius: 999px; font-size: 9px;
}
.ipad-screen {
  flex: 1;
  background: var(--peechee-purple-10);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex; flex-direction: column;
  border: 1px solid var(--border-1);
}
.ipad-screen .student-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--fg-2);
  margin-bottom: 12px;
}
.ipad-screen .student-row .who {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink-900);
}
.ipad-screen .student-row .av {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--bt-pink); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700;
}

.ipad-screen .q-prompt {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; line-height: 1.15;
  color: var(--ink-900);
  margin-bottom: 18px;
}
.ipad-screen .q-pic {
  flex: 1; min-height: 0;
  background: white; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 140px;
  margin-bottom: 16px;
  border: 1px solid var(--border-1);
}
.ipad-screen .q-choices {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.ipad-screen .q-choice {
  background: white;
  border: 2px solid var(--ink-20);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px;
  color: var(--ink-900);
  cursor: pointer;
  transition: all 160ms var(--ease-out);
}
.ipad-screen .q-choice:hover { border-color: var(--bt-blue); }
.ipad-screen .q-choice.correct { background: var(--bt-green); color: white; border-color: var(--bt-green); }
.ipad-screen .q-choice.wrong { color: var(--bt-red); border-color: var(--bt-red); }

/* Right: live feed grid */
.live-feed {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 0;
}
.live-feed .head {
  background: white; border-radius: 16px; border: 1px solid var(--border-1);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.live-feed .head .ttl {
  font-family: var(--font-display); font-weight: 800; font-size: 14px;
}
.live-feed .head .sub { font-size: 11px; color: var(--fg-2); margin-top: 2px; }
.live-feed .head .timer {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--bt-blue); color: white;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.06em;
}
.live-feed .head .timer .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--bt-yellow);
  animation: pulse 1.4s ease-in-out infinite;
}

.student-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.student-mini {
  background: white; border-radius: 12px; border: 1px solid var(--border-1);
  padding: 10px 12px;
  font-size: 11px;
}
.student-mini .row1 {
  display: flex; align-items: center; gap: 8px;
}
.student-mini .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bt-cyan); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 10px;
}
.student-mini .av.alex { background: var(--bt-pink); }
.student-mini .av.david { background: var(--bt-orange); }
.student-mini .av.jenny { background: var(--bt-blue); }
.student-mini .av.marco { background: var(--bt-green); }
.student-mini .nm { font-family: var(--font-display); font-weight: 800; font-size: 12px; }
.student-mini .st {
  margin-left: auto;
  font-size: 8px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 999px;
  background: var(--ink-10); color: var(--fg-2); font-weight: 700;
}
.student-mini .st.live { background: var(--bt-green); color: white; }
.student-mini .progress {
  margin-top: 8px;
  height: 6px; border-radius: 999px;
  background: var(--ink-10);
  overflow: hidden;
}
.student-mini .progress .bar {
  height: 100%; background: var(--bt-blue);
  transition: width 400ms var(--ease-out);
}
.student-mini .count {
  margin-top: 6px;
  display: flex; justify-content: space-between;
  font-size: 10px; color: var(--fg-2);
}
.student-mini .count strong { color: var(--ink-900); font-weight: 700; }

.live-table-wrap {
  flex: 1; min-height: 0;
  background: white; border-radius: 16px; border: 1px solid var(--border-1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.live-table-wrap .ttl {
  padding: 12px 18px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 13px;
  border-bottom: 1px solid var(--border-1);
  display: flex; align-items: center; justify-content: space-between;
}
.live-table-wrap .ttl .meta { font-size: 10px; color: var(--fg-2); font-weight: 500; }

.live-table {
  flex: 1; overflow: auto;
  font-size: 11px;
}
.live-table table { width: 100%; border-collapse: collapse; }
.live-table thead th {
  background: var(--peechee-purple-10);
  font-family: var(--font-display); font-weight: 700;
  font-size: 10px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--fg-2);
  text-align: left;
  padding: 10px 12px;
  position: sticky; top: 0;
  border-bottom: 1px solid var(--border-1);
}
.live-table thead th.key { color: var(--bt-blue); }
.live-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-1);
  vertical-align: middle;
}
.live-table tbody td.q {
  font-family: var(--font-display); font-weight: 700;
  color: var(--ink-900);
}
.live-table tbody td.key {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 11px; color: var(--bt-blue);
  background: var(--bt-blue-5);
}
.live-cell {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px;
}
.live-cell .dot { width: 5px; height: 5px; border-radius: 50%; }
.live-cell.pending { color: var(--ink-30); }
.live-cell.pending .dot { background: var(--ink-30); }
.live-cell.progress { color: var(--bt-orange); }
.live-cell.progress .dot { background: var(--bt-orange); animation: pulse 1.4s ease-in-out infinite; }
.live-cell.right { color: var(--bt-green); font-weight: 700; }
.live-cell.right .dot { background: var(--bt-green); }
.live-cell.wrong { color: var(--bt-red); font-weight: 700; }
.live-cell.wrong .dot { background: var(--bt-red); }


/* ============================================================
   SLIDE 8 — GROWTH REPORT
   ============================================================ */
.s-report { padding: 0; background: white; }

.report-grid {
  flex: 1; display: grid; gap: 12px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  min-height: 0;
}
.report-grid > .full { grid-column: 1 / -1; }

.report-head-card {
  background: white; border-radius: 14px; border: 1px solid var(--border-1);
  padding: 14px 20px;
}
.report-head-card h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 18px; margin: 0;
}
.report-head-card .sub {
  font-size: 11px; color: var(--fg-2); margin-top: 2px;
}
.report-filters {
  display: flex; gap: 10px;
  margin-top: 14px;
}
.report-filters .sel {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--border-1); border-radius: 10px;
  padding: 8px 14px; font-size: 12px;
  color: var(--ink-900);
}
.report-filters .sel .lbl { color: var(--fg-2); font-weight: 600; }
.report-filters .sel .ch { color: var(--fg-3); margin-left: 4px; }

.report-stat-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 14px;
  background: var(--peechee-purple-10);
  border-radius: 14px;
  padding: 14px 18px;
}
.report-stat-cell { padding: 0 14px; position: relative; }
.report-stat-cell + .report-stat-cell { border-left: 1px solid var(--border-1); }
.report-stat-cell .v {
  font-family: var(--font-display); font-weight: 900;
  font-size: 42px; line-height: 1; letter-spacing: -0.03em;
  color: var(--bt-pink);
}
.report-stat-cell .v.c-blue { color: var(--bt-blue); }
.report-stat-cell .v.c-green { color: var(--bt-green); }
.report-stat-cell .v.c-orange { color: var(--bt-orange); }
.report-stat-cell .v.c-cyan { color: var(--bt-cyan); }
.report-stat-cell .l {
  font-size: 11px; color: var(--fg-2); margin-top: 6px;
  font-weight: 600;
}
.report-stat-cell .excellent {
  display: inline-block;
  margin-left: 6px;
  background: var(--bt-green); color: white;
  padding: 2px 7px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 800;
  font-size: 9px; letter-spacing: 0.12em;
  vertical-align: middle;
  white-space: nowrap;
}

/* Big growth chart */
.report-chart-card {
  background: white; border-radius: 14px; border: 1px solid var(--border-1);
  padding: 14px 18px;
  display: flex; flex-direction: column;
  min-height: 0;
}
.report-chart-card .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.report-chart-card .head .ttl {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.report-chart-card .head .tabs {
  display: inline-flex; padding: 3px;
  background: var(--peechee-purple-10);
  border-radius: 8px; gap: 2px;
  font-size: 10px;
}
.report-chart-card .head .tabs .t {
  padding: 5px 12px; border-radius: 6px;
  color: var(--fg-2); font-weight: 600;
}
.report-chart-card .head .tabs .t.active { background: white; color: var(--ink-900); font-weight: 700; }
.report-chart-card .legend {
  display: flex; gap: 14px; font-size: 10px; color: var(--fg-2);
  margin-bottom: 6px;
}
.report-chart-card .legend .x {
  display: inline-flex; align-items: center; gap: 5px;
}
.report-chart-card .legend .d { width: 8px; height: 8px; border-radius: 50%; }

.chart-area {
  flex: 1;
  display: grid; grid-template-columns: 28px 1fr; gap: 4px;
  min-height: 0;
  position: relative;
}
.chart-y {
  display: flex; flex-direction: column-reverse; justify-content: space-between;
  font-size: 9px; color: var(--fg-3);
  padding: 4px 4px 18px 0;
  text-align: right;
}
.chart-plot {
  position: relative;
  background:
    repeating-linear-gradient(to top, transparent 0, transparent calc(20% - 1px),
      var(--border-1) calc(20% - 1px), var(--border-1) 20%);
  border-bottom: 1.5px solid var(--ink-30);
  padding-bottom: 18px;
}
.chart-bars {
  position: absolute; inset: 4px 0 22px 0;
  display: flex; justify-content: space-around; align-items: flex-end;
  padding: 0 12px;
}
.chart-lolli {
  flex: 1; position: relative; height: 100%;
  display: flex; align-items: flex-end; justify-content: center;
}
.chart-lolli .stem {
  position: absolute; bottom: 0;
  width: 2px; background: var(--bt-green);
}
.chart-lolli .pre, .chart-lolli .post {
  position: absolute; left: 50%;
  width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid white;
  transform: translateX(-50%);
}
.chart-lolli .pre { background: var(--bt-orange); }
.chart-lolli .post { background: var(--bt-blue); width: 11px; height: 11px; border-radius: 3px; }
.chart-lolli .delta {
  position: absolute; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700; font-size: 9px;
  color: var(--bt-green);
}
.chart-x {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: space-around;
  padding: 4px 12px 0;
  font-size: 8px; color: var(--fg-3);
}
.chart-x span { flex: 1; text-align: center; }

/* Skill mastery card */
.mastery-card {
  background: white; border-radius: 14px; border: 1px solid var(--border-1);
  padding: 14px 18px;
  display: flex; flex-direction: column;
  min-height: 0;
}
.mastery-card .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.mastery-card .head .ttl {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.mastery-card .nums {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 14px;
}
.mastery-card .nums .cell {
  background: var(--peechee-purple-10); border-radius: 10px;
  padding: 12px 14px;
}
.mastery-card .nums .v {
  font-family: var(--font-display); font-weight: 900;
  font-size: 32px; line-height: 1; letter-spacing: -0.02em;
  color: var(--bt-green);
}
.mastery-card .nums .cell.progressing .v { color: var(--bt-orange); }
.mastery-card .nums .cell.needs .v { color: var(--fg-3); }
.mastery-card .nums .l { font-size: 10px; color: var(--fg-2); margin-top: 4px; font-weight: 600; }
.mastery-list {
  flex: 1; overflow: auto;
}
.mastery-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-1);
  font-size: 12px;
}
.mastery-row:last-child { border-bottom: none; }


/* ============================================================
   SLIDE 9 — CLOSING / RESULTS
   ============================================================ */
.s-closing {
  background: #ffffff; color: var(--ink-900);
  padding: 70px 96px 64px;
  flex-direction: column; justify-content: space-between;
}
.s-closing .top-eyebrow {
  color: var(--bt-blue);
  font-family: var(--font-display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.30em; text-transform: uppercase;
}
.s-closing h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 100px; line-height: 0.94; letter-spacing: -0.03em;
  margin: 38px 0 0;
  color: var(--ink-900);
  max-width: 1200px;
}
.s-closing h1 em { font-style: normal; color: var(--bt-blue); }
.s-closing h1.narr { font-size: 50px; line-height: 1.04; letter-spacing: -0.025em; max-width: 1380px; }
.results-block { display: flex; flex-direction: column; }
.results-attrib { font-family: var(--font-display); font-weight: 700; font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--bt-blue); margin-bottom: 14px; }
.s-closing .lede {
  margin-top: 20px;
  font-size: 17px; line-height: 1.45;
  max-width: 980px;
  color: var(--fg-2);
  font-weight: 300;
}

.results-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px;
  margin-top: 12px;
}
.result-cell { border-top: 1.5px solid var(--border-1); padding-top: 22px; }
.result-cell .dtag { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bt-blue); margin-bottom: 12px; }
.result-cell .big {
  font-family: var(--font-display); font-weight: 900;
  font-size: 92px; line-height: 0.85; letter-spacing: -0.05em;
  color: var(--bt-blue);
  display: flex; align-items: flex-start; gap: 0;
}
.result-cell .big sup {
  font-size: 0.45em; font-weight: 900; line-height: 1;
  margin-top: 0.08em; letter-spacing: -0.02em;
}
.result-cell .label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 17px;
  margin-top: 6px;
  color: var(--ink-900);
}
.result-cell .sub {
  font-size: 12px; color: var(--fg-2);
  margin-top: 6px; line-height: 1.5;
  max-width: 320px;
}

.closing-cta {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid var(--border-1);
  padding-top: 26px;
  gap: 30px;
}
.closing-cta .left {
  font-family: var(--font-display); font-weight: 800;
  font-size: 36px; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink-900);
  max-width: 700px;
}
.closing-cta .right {
  font-family: var(--font-display); font-weight: 600;
  font-size: 14px; color: var(--fg-2);
  text-align: right;
  line-height: 1.55;
}
.closing-cta .right .nm { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--ink-900); }
.closing-cta .right .ml { color: var(--bt-blue); font-weight: 700; }

/* Slide 8 — NSSA credential */
.nssa-credential {
  position: absolute; top: 248px; right: 96px;
  width: 360px; display: flex; align-items: center; gap: 20px;
}
.nssa-credential img { width: 122px; height: auto; flex: none; }
.nssa-credential .nssa-cap {
  font-size: 12.5px; line-height: 1.5; color: var(--fg-2);
}
.nssa-credential .nssa-cap strong { color: var(--ink-900); font-weight: 700; }

/* ============================================================
   PDF EDITION — static demo screens + neutered preview notes
   ============================================================ */
.s-demoshot { padding: 0; background: #ececed; }
.s-demoshot .demoshot-stage {
  position: absolute; inset: 44px 0 0 0;
  display: flex; align-items: center; justify-content: center;
  padding: 30px 40px 40px;
}
.s-demoshot .demoshot-stage img {
  max-width: 100%; max-height: 100%; width: auto; height: auto;
  border-radius: 12px; box-shadow: 0 12px 46px rgba(10,10,18,0.18);
  display: block;
}
.s-demoshot .slide-page { color: var(--fg-3); }

.story .static-demo-note {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: var(--bt-blue);
  background: var(--bt-blue-5); border: 1px solid var(--bt-blue-10);
  padding: 13px 24px 13px 15px; border-radius: 999px;
}
.story .static-demo-note .play {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--bt-blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.story .static-demo-note .play svg { width: 15px; height: 15px; }

/* ============================================================
   CURRICULUM DEEP-DIVE SLIDES (05A / 05B / 05C)
   ============================================================ */
.s-deepdive {
  background: white; padding: 64px 60px 44px;
  flex-direction: column; justify-content: flex-start;
  --accent: var(--bt-blue);
}
.s-deepdive.dd-math  { --accent: var(--bt-blue); }
.s-deepdive.dd-found { --accent: var(--bt-pink); }
.s-deepdive.dd-adv   { --accent: #007a3f; }

.dd-header { padding-top: 22px; max-width: 1240px; }
.dd-header .eyebrow { margin-bottom: 10px; color: var(--accent); }
.dd-header h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: 50px; line-height: 0.95; letter-spacing: -0.025em;
  margin: 0 0 9px;
}
.dd-header h1 em { font-style: normal; color: var(--accent); }
.dd-lede {
  font-size: 13.5px; color: var(--fg-2); max-width: 1120px; line-height: 1.5;
  margin: 0;
}

.dd-body {
  flex: 1; min-height: 0; margin-top: 18px;
  display: grid; grid-template-columns: 1fr 344px; gap: 24px;
}
.dd-main { display: flex; flex-direction: column; min-height: 0; }
.dd-sec-label, .dd-card-h {
  font-family: var(--font-display); font-weight: 800;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
}
.dd-sec-label { color: var(--fg-3); margin-bottom: 10px; }

/* ---- Scope & sequence matrix ---- */
.dd-matrix { width: 100%; border-collapse: collapse; table-layout: fixed; }
.dd-matrix thead th {
  font-family: var(--font-display); font-weight: 800;
  font-size: 10.5px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--accent); text-align: left;
  padding: 0 9px 7px; border-bottom: 2px solid var(--accent);
}
.dd-matrix thead th.dd-strand-h { color: var(--fg-3); width: 190px; }
.dd-matrix tbody th {
  text-align: left; vertical-align: top;
  font-family: var(--font-display); font-weight: 800;
  font-size: 12px; line-height: 1.2; color: var(--ink-900);
  padding: 9px 9px 9px 14px; border-bottom: 1px solid var(--border-1);
  position: relative;
}
.dd-matrix tbody th::before {
  content: ''; position: absolute; left: 0; top: 11px; bottom: 11px;
  width: 3px; border-radius: 2px; background: var(--accent);
}
.dd-matrix tbody td {
  font-size: 10.8px; line-height: 1.32; color: var(--fg-1);
  padding: 9px; vertical-align: top;
  border-bottom: 1px solid var(--border-1);
  border-left: 1px solid var(--border-1);
}
.dd-matrix tbody tr:hover td { background: #FAFAFC; }

/* ---- Sidebar cards ---- */
.dd-side { display: flex; flex-direction: column; gap: 12px; min-height: 0; }
.dd-card {
  background: #FAFAFC; border: 1px solid var(--border-1);
  border-radius: 14px; padding: 14px 16px;
}
.dd-card-h { color: var(--accent); margin-bottom: 10px; }

.dd-flow { display: flex; gap: 6px; margin-bottom: 11px; }
.dd-flow span {
  flex: 1; text-align: center;
  font-family: var(--font-display); font-weight: 800; font-size: 10px;
  letter-spacing: 0.02em; color: #fff; background: var(--accent);
  padding: 6px 4px; border-radius: 7px; opacity: 0.92;
}
.dd-flow span:nth-child(2) { opacity: 0.74; }
.dd-flow span:nth-child(3) { opacity: 0.56; }

.dd-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.dd-list li {
  font-size: 11px; line-height: 1.35; color: var(--ink-900);
  padding-left: 15px; position: relative;
}
.dd-list li::before {
  content: ''; position: absolute; left: 0; top: 6px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* assessment cadence stepper */
.dd-cadence { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.dd-cadence li {
  display: grid; grid-template-columns: 64px 1fr; gap: 10px; align-items: start;
  font-size: 11px; line-height: 1.32; color: var(--ink-900);
}
.dd-cadence .dd-when {
  font-family: var(--font-display); font-weight: 800; font-size: 9px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  padding-top: 1px;
}

/* research chips */
.dd-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.dd-chips .chip {
  display: inline-flex; padding: 5px 11px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 10px;
  letter-spacing: 0.01em;
  color: var(--accent); background: color-mix(in oklab, var(--accent) 10%, white);
  border: 1px solid color-mix(in oklab, var(--accent) 26%, white);
}

/* ============================================================
   LESSON GAME — SKIP COUNTING JEOPARDY (Slide 6, tab 4)
   ============================================================ */
.jeo-wrap { display: flex; flex-direction: column; height: 100%; min-height: 0; gap: 12px; position: relative; }
.jeo-head {
  display: flex; align-items: center; justify-content: space-between;
  flex: none;
}
.jeo-title {
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
  letter-spacing: -0.01em; color: var(--bt-blue);
}
.jeo-title span { color: var(--ink-30); font-weight: 700; }
.jeo-score {
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  color: var(--ink-900);
}
.jeo-score b { color: var(--bt-green); font-size: 17px; }
.jeo-board {
  flex: 1; min-height: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.jeo-col { display: grid; grid-template-rows: auto repeat(4, 1fr); gap: 8px; }
.jeo-cat {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: var(--bt-blue); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 9px; padding: 8px 6px; line-height: 1.15;
}
.jeo-cell {
  display: flex; align-items: center; justify-content: center;
  background: var(--bt-blue-10); color: var(--bt-blue);
  border: 1.5px solid var(--bt-blue-20); border-radius: 9px;
  font-family: var(--font-display); font-weight: 900; font-size: 22px;
  cursor: pointer; transition: transform .12s var(--ease-out), background .15s;
}
.jeo-cell:hover { background: var(--bt-blue-20); transform: translateY(-2px); }
.jeo-cell.done { background: #F4F4F7; color: var(--ink-30); border-color: var(--border-1); cursor: default; transform: none; }
.jeo-cell.done.right { background: var(--status-success-bg); color: var(--bt-green); border-color: color-mix(in oklab, var(--bt-green) 30%, white); }
.jeo-cell.done.wrong { background: rgba(254,45,35,0.08); color: var(--bt-red); border-color: rgba(254,45,35,0.25); }

/* question modal inside the game pane */
.jeo-modal { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; z-index: 5; }
.jeo-modal.open { display: flex; }
.jeo-modal .jeo-back { position: absolute; inset: 0; background: rgba(20,16,30,0.45); }
.jeo-card {
  position: relative; z-index: 1; width: 460px; max-width: 86%;
  background: #fff; border-radius: 18px; padding: 28px 30px 24px;
  box-shadow: 0 24px 60px rgba(20,16,30,0.30); text-align: center;
}
.jeo-card .jeo-val {
  font-family: var(--font-display); font-weight: 900; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--bt-blue); margin-bottom: 10px;
}
.jeo-card .jeo-q {
  font-family: var(--font-display); font-weight: 800; font-size: 30px;
  letter-spacing: -0.01em; color: var(--ink-900); margin-bottom: 20px; line-height: 1.1;
}
.jeo-choices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.jeo-choice {
  font-family: var(--font-display); font-weight: 800; font-size: 18px;
  padding: 14px; border-radius: 12px; cursor: pointer;
  background: var(--bt-blue-10); color: var(--bt-blue); border: 1.5px solid var(--bt-blue-20);
  transition: background .12s, transform .1s;
}
.jeo-choice:hover { background: var(--bt-blue-20); }
.jeo-choice.right { background: var(--status-success-bg); color: var(--bt-green); border-color: var(--bt-green); }
.jeo-choice.wrong { background: rgba(254,45,35,0.10); color: var(--bt-red); border-color: var(--bt-red); }
.jeo-choice.locked { pointer-events: none; }
.jeo-fb { margin-top: 16px; font-weight: 700; font-size: 14px; min-height: 20px; }
.jeo-fb.good { color: var(--bt-green); }
.jeo-fb.bad  { color: var(--bt-red); }
.jeo-done-banner {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  background: var(--bt-green); color: #fff; display: none;
  font-family: var(--font-display); font-weight: 800; font-size: 13px;
  padding: 9px 20px; border-radius: 999px; z-index: 4;
}
.jeo-done-banner.show { display: block; }


