/* ====================================================================
   iBOrbit Intensives — page-scoped styles
   Layers on top of:
     - ../../colors_and_type.css   (design tokens)
     - ../landing/landing.css      (shared section/atoms)
   Only define what differs from landing or what's net-new.
   ==================================================================== */

/* ---- Icon wrapper (span replaces <i> to avoid React/Lucide DOM conflict) */
.lucide-wrap { display: inline-flex; align-items: center; justify-content: center; }
.lucide-wrap svg { display: block; }

/* ---- Inter takes priority ---------------------------- */
:root { --font-sans: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; }
body { font-family: var(--font-sans); }

/* Jakarta tops out at 800 — re-map the heaviest tokens so headings stay tight */
:root {
  --w-heavy: 800;
  --w-black: 800;

  /* ---- Intensives design system tokens (unified radii + shadows) ---- */
  --ir-radius-card:    13px;   /* large cards: coach, product, intake, parents */
  --ir-radius-card-lg: 15px;   /* hero-scale: drawer, modal, product-card hero */
  --ir-radius-inner:   10px;   /* nested elements: transcript-thumb, price matrix */
  --ir-radius-chip:    8px;    /* pills, label-chips, micro-buttons */

  --ir-line:           rgba(26,22,12,.08);   /* default hairline border */
  --ir-line-soft:      rgba(26,22,12,.06);   /* even softer divider */

  /* Editorial shadow rhythm — quieter than v1 */
  --ir-shadow-card:    0 18px 44px rgba(28,22,12,.055), 0 1px 3px rgba(28,22,12,.04), inset 0 1px 0 rgba(255,255,255,.92);
  --ir-shadow-lift:    0 24px 60px rgba(28,22,12,.075), 0 2px 6px rgba(28,22,12,.05), inset 0 1px 0 rgba(255,255,255,.94);
  --ir-shadow-modal:   0 50px 120px rgba(8,9,18,.30), 0 14px 36px rgba(8,9,18,.16), inset 0 1px 0 rgba(255,255,255,.95);
}

/* Display headings now use Fraunces (iBOrbit display serif) at semibold */
.intensives h1, .intensives h2 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.02em; }
.intensives h3, .intensives h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -.015em; }

/* Lighter eyebrow text-shadow — landing.css ships a heavy 24px blur that
   reads as a glow-blob during low-DPR rasterization; tone it down for
   intensives so the actual text always reads first. */
.intensives .eyebrow {
  text-shadow: 0 2px 8px rgba(78,73,166,.10);
}

/* ============== Nav overrides — "INTENSIVES" sub-label ============== */
.nav.intensives-nav { grid-template-columns: 1fr auto 1fr; }
.nav.intensives-nav .brand { display: inline-flex; align-items: center; gap: 12px; }
.nav.intensives-nav .brand .logo { width: 96px; height: 38px; }
.nav.intensives-nav .brand .sub {
  display: inline-flex; align-items: center;
  padding: 4px 9px; border-radius: 7px;
  background: #f1e7d2; color: var(--ink);
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(184,138,69,.3);
}
.nav.intensives-nav .links { gap: 32px; font-size: 13.5px; }

/* ============== Hero — overrides ============== */
.intensives .hero { padding-top: 100px; padding-bottom: 32px; }
.intensives .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.intensives .hero h1 {
  font-size: 64px; font-weight: 800;
  max-width: 580px; line-height: .98; letter-spacing: -.038em;
  margin: 22px 0 20px;
}
.intensives .hero h1 .scribble::after {
  left: -2%; right: -4%; bottom: -.14em; border-bottom-width: 4px; transform: rotate(-1.6deg);
}
.intensives .hero-copy .lede {
  font-size: 18.5px; line-height: 1.55; color: var(--ink-2); max-width: 540px;
  margin: 0 0 26px;
  font-weight: 500;
}
.intensives .hero-actions { display: flex; gap: 12px; margin: 0 0 14px; flex-wrap: wrap; }
.intensives .hero-actions .btn { height: 58px; padding: 0 26px; font-size: 15px; }
.intensives .hero-actions .btn.white { background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.78)); }
.intensives .hero-microline {
  font-size: 12.5px; color: var(--soft); line-height: 1.55; max-width: 460px;
  letter-spacing: -.005em; margin: 0;
}

/* Mobile-only elements: hidden by default, shown in the 720px media query */
.lede-mobile              { display: none; }
.vf-mobile-cta-wrap       { display: none; }
.mobile-hero-proof        { display: none; }
.vf-breakdown-link-mobile { display: none; }
.vf-mobile-eyebrow        { display: none; }

/* ---- Right column: visual stage ---- */
.intensives .hero-visual { position: relative; height: 540px; }

/* Annotated-IA creative image — enlarged, bleeds gently into the right gutter */
.intensives .hero-visual { height: auto; display: flex; align-items: center; justify-content: center; min-height: 540px; }
.intensives .hero-creative {
  width: 100%;
  max-width: 580px;
  height: auto;
  display: block;
  filter: drop-shadow(0 2px 3px rgba(16,27,69,.08)) drop-shadow(0 16px 36px rgba(16,27,69,.14));
}
/* Wide desktop: enlarge and pull left into the column gap */
@media (min-width: 1200px) {
  .intensives .hero-creative { width: 114%; max-width: 650px; transform: translateX(-3%); }
}

/* Quieter orbit density — 2 orbits instead of 3, lower opacity */
.intensives .orbit.a {
  width: 680px; height: 460px; left: -30px; top: 30px; transform: rotate(-8deg);
  opacity: .55;
}
.intensives .orbit.b {
  width: 560px; height: 560px; right: -30px; top: -10px; transform: rotate(20deg);
  opacity: .42;
}
.intensives .orbit.c { display: none; }

/* The "draft document" backdrop card — sits behind, slight tilt, suggests an IA */
.draft-doc {
  position: absolute;
  left: 24px; top: 42px;
  width: 410px; height: 470px;
  border-radius: var(--ir-radius-card);
  background: linear-gradient(180deg, #fefefe, #f4f1e8);
  border: 1px solid var(--ir-line);
  box-shadow: 0 22px 56px rgba(31,24,16,.13), 0 4px 12px rgba(31,24,16,.04), inset 0 1px 0 rgba(255,255,255,.95);
  transform: rotate(-3.2deg);
  padding: 30px 32px 36px;
  overflow: hidden;
  z-index: 2;
}
.draft-doc::before {
  /* Faint horizontal lined-paper feel */
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 31px,
    rgba(26, 22, 12, .05) 31px 32px
  );
  pointer-events: none;
  opacity: .5;
}
.draft-doc .doc-eyebrow {
  font-size: 9.5px; font-weight: 800; letter-spacing: .32em;
  color: var(--soft); text-transform: uppercase;
  position: relative; z-index: 2; margin-bottom: 6px;
}
.draft-doc .doc-title {
  font-size: 18px; font-weight: 800; letter-spacing: -.028em; line-height: 1.2;
  color: var(--ink-2);
  position: relative; z-index: 2;
  margin-bottom: 16px;
}
.draft-doc .doc-lines {
  position: relative; z-index: 2; display: grid; gap: 14px;
}
.draft-doc .doc-line {
  height: 7px; border-radius: 4px;
  background: linear-gradient(90deg, rgba(26,22,12,.14), rgba(26,22,12,.06));
}
.draft-doc .doc-line.short { width: 62%; }
.draft-doc .doc-line.mid   { width: 84%; }
.draft-doc .doc-line.full  { width: 100%; }
.draft-doc .doc-line.tiny  { width: 38%; }
.draft-doc .doc-redmark {
  position: absolute; right: 22px; top: 178px;
  width: 64px; height: 18px;
  border-radius: 3px;
  background: rgba(232, 69, 69, .12);
  border: 1.4px solid rgba(232,69,69,.5);
  transform: rotate(-2.4deg);
  z-index: 3;
}
.draft-doc .doc-redmark::after {
  content: "?"; position: absolute; right: -22px; top: -8px;
  font-size: 22px; color: var(--red); font-weight: 800; font-family: var(--font-serif);
}

/* ---- Supervisor message card — overlay A ---- */
.supervisor-msg {
  position: absolute;
  right: 36px; top: 56px;
  width: 286px;
  padding: 18px 20px 20px;
  border-radius: var(--ir-radius-card);
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.94));
  border: 1px solid var(--ir-line);
  box-shadow: 0 22px 56px rgba(31,24,16,.14), 0 4px 12px rgba(31,24,16,.05), inset 0 1px 0 rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  transform: rotate(-2.0deg);
  z-index: 6;
}
.supervisor-msg .msg-head {
  display: grid; grid-template-columns: 34px 1fr; gap: 11px; align-items: center;
  padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.supervisor-msg .msg-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(140deg, #d6d2c4, #b6afa1);
  color: #50566f; font-size: 11px; font-weight: 800;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(31,24,16,.12);
}
.supervisor-msg .msg-head b {
  display: block; font-size: 13.5px; font-weight: 800; color: var(--ink); letter-spacing: -.015em;
}
.supervisor-msg .msg-head span {
  display: block; font-size: 11px; color: var(--soft); margin-top: 2px;
}
.supervisor-msg .msg-body {
  margin: 14px 0 6px;
  font-size: 16.5px; line-height: 1.32; color: var(--ink-2);
  font-style: italic;
  font-family: "Inter", ui-sans-serif;
  font-weight: 500;
  letter-spacing: -.012em;
}
.supervisor-msg .msg-body::before {
  content: "“"; color: var(--soft); font-size: 28px; line-height: 0; vertical-align: -8px; margin-right: 2px;
  font-family: Georgia, serif;
}
.supervisor-msg .msg-body::after {
  content: "”"; color: var(--soft); font-size: 28px; line-height: 0; vertical-align: -12px; margin-left: 2px;
  font-family: Georgia, serif;
}
.supervisor-msg .msg-footer {
  font-size: 11px; color: var(--soft); letter-spacing: .02em;
  margin-top: 8px;
}

/* ---- Deadline stamp — overlay B (FIXED: no text overflow, taller card) ---- */
.deadline-stamp {
  position: absolute;
  right: 16px; bottom: 28px;
  width: 200px;
  min-height: 168px;
  padding: 18px 22px 20px;
  border-radius: var(--ir-radius-inner);
  background: linear-gradient(155deg, #e94747, #c52727);
  border: 1.5px solid rgba(120, 12, 12, .35);
  box-shadow:
    0 24px 56px rgba(232,69,69,.26),
    0 8px 20px rgba(120,12,12,.14),
    inset 0 1px 0 rgba(255,255,255,.22),
    inset 0 -1px 0 rgba(0,0,0,.16);
  transform: rotate(3.2deg);
  color: #fffdf8;
  z-index: 7;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.deadline-stamp::before {
  /* paper-texture subtle scuff */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.16), transparent 38%),
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.035) 14px 15px);
  pointer-events: none;
}
.deadline-stamp .ds-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
  position: relative; z-index: 2;
}
.deadline-stamp .ds-days {
  font-size: 64px; font-weight: 800; letter-spacing: -.05em; line-height: 1;
  margin: 2px 0 0;
  position: relative; z-index: 2;
}
.deadline-stamp .ds-unit {
  font-size: 12.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  position: relative; z-index: 2;
  margin: 2px 0 6px;
}
.deadline-stamp .ds-context {
  position: relative; z-index: 2;
  font-size: 10.5px; color: rgba(255,255,255,.74);
  letter-spacing: .01em; line-height: 1.35;
  margin: 0;
}

/* ============== Proof strip — intensives flavour ============== */
.intensives .section.proof-section { padding: 12px 0 48px; }

.hero-proof-tower {
  display: grid; gap: 14px;
}

/* ---- TOP: primary 45/45 trust band ---- */
.hero-proof-primary {
  display: block;
  text-decoration: none;
  padding: 22px 30px 22px 58px;
  border-radius: 10px;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 33px, rgba(7,21,68,.05) 33px, rgba(7,21,68,.05) 34px),
    linear-gradient(180deg, rgba(255,253,248,.93), rgba(255,251,244,.93)),
    url("paper.png");
  background-size: 100% 34px, auto, 300px 300px;
  background-blend-mode: normal, normal, multiply;
  border: 1px solid rgba(7,21,68,.12);
  box-shadow: var(--ir-shadow-card);
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
.hero-proof-primary::before {
  /* punched binding holes down the left edge — notebook paper strip */
  content: ""; position: absolute; left: 22px; top: 18px; bottom: 18px; width: 15px;
  background-image: radial-gradient(circle at 7.5px 7.5px, #e7dcc4 0 5px, rgba(7,21,68,.06) 5.5px, transparent 6.5px);
  background-size: 15px 30px; background-repeat: repeat-y;
  pointer-events: none;
}
.hero-proof-primary::after {
  /* very soft purple glow on hover */
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(78,73,166,.0);
  transition: box-shadow .25s ease;
  pointer-events: none;
}
.hero-proof-primary:hover {
  transform: translateY(-2px) scale(1.005);
  border-color: rgba(78,73,166,.32);
  box-shadow: var(--ir-shadow-lift);
}
.hero-proof-primary:hover::after { box-shadow: 0 14px 40px rgba(78,73,166,.14); }

.hpp-content {
  display: flex; justify-content: space-between; align-items: center;
  gap: 22px; flex-wrap: wrap;
}
.hpp-headline {
  display: inline-flex; align-items: baseline; gap: 12px;
  letter-spacing: -.026em; line-height: 1;
  color: var(--ink);
  font-feature-settings: "ss01" on;
}
.hpp-mult {
  font-size: 22px; font-weight: 800;
  color: var(--ink);
}
.hpp-score {
  font-size: 32px; font-weight: 800; letter-spacing: -.03em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.hpp-noun {
  font-size: 22px; font-weight: 800;
  color: color-mix(in oklab, var(--purple) 78%, #1a160c);
  letter-spacing: -.02em;
}
.hpp-meta {
  margin: 0;
  font-size: 13px; color: var(--ink-2); font-weight: 600;
  letter-spacing: -.005em;
}
.hpp-cta {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--purple); font-weight: 800;
  margin-left: 4px;
  border-bottom: 1px dotted var(--purple);
  padding-bottom: 1px;
}
.hpp-cta .lucide { width: 13px; height: 13px; stroke-width: 2.4; }

/* ---- BOTTOM: logistical fact tiles ---- */
.hero-proof-facts {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.hpf-tile {
  display: flex; flex-direction: column; gap: 4px;
  padding: 16px 20px;
  border-radius: var(--ir-radius-inner);
  background: #fffdf8;
  border: 1px solid var(--ir-line);
  box-shadow: 0 2px 6px rgba(28,22,12,.03), inset 0 1px 0 rgba(255,255,255,.9);
}
/* hpf icon badges: desktop hidden, shown on mobile */
.hpf-icon-badge { display: none; }
.hpf-text       { display: contents; } /* transparent on desktop — label/value render as tile children */

/* 3× check badge: hidden by default, shown on mobile */
.hpp-check-badge { display: none; }

.hpf-label {
  font-size: 10px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--soft);
}
.hpf-value {
  font-size: 17px; font-weight: 800; letter-spacing: -.022em;
  color: var(--ink);
  line-height: 1.2;
}

@media (max-width: 1080px) {
  .hero-proof-primary { padding: 22px 24px; }
  .hpp-headline { gap: 10px; }
  .hpp-score { font-size: 28px; }
  .hpp-mult, .hpp-noun { font-size: 20px; }
}
@media (max-width: 720px) {
  .hero-proof-facts { grid-template-columns: 1fr; }
  .hpp-content { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hpp-headline { gap: 8px; }
  .hpp-score { font-size: 26px; }
  .hpp-mult, .hpp-noun { font-size: 18px; }
}

/* ============== Eyebrow with bullet (the brand's `●ROW` style) ============== */
.eyebrow.with-bullet::before {
  content: "●"; color: var(--purple); margin-right: 8px; font-size: 9px;
  position: relative; top: -1px;
}

/* ============== Section heads — intensives flavour ============== */
.intensives-section-head { text-align: left; margin: 0 0 38px; max-width: none; }
.intensives-section-head.align-center { text-align: center; }
.intensives-section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.intensives-section-head h2 {
  font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
  max-width: 820px; margin: 0;
}
.intensives-section-head.align-center h2 { margin: 0 auto; }
.intensives-section-head .section-sub {
  font-size: 17.5px; line-height: 1.5; color: var(--ink-2);
  max-width: 600px; margin: 18px 0 0;
}
.intensives-section-head.align-center .section-sub { margin: 18px auto 0; }
.inside-programme-section .section-sub { max-width: none; }

/* ============== Section 2 — Coaches ============== */
.coaches-section { padding: 80px 0 96px; }
.coaches-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 14px;
}
.coach-card {
  position: relative;
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.92));
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-card);
  padding: 26px 26px 26px;
  box-shadow: var(--ir-shadow-card);
  display: flex; flex-direction: column; gap: 20px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.coach-card:hover {
  box-shadow: var(--ir-shadow-lift);
  transform: translateY(-2px);
}
.score-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 7px 12px; border-radius: 999px;
  background: linear-gradient(180deg, #e0ad48, #b88a45);
  color: #3a2c0c; font-weight: 800; font-size: 13.5px; letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  border: 1px solid rgba(184,138,69,.6);
  box-shadow: 0 10px 22px rgba(184,138,69,.28), inset 0 1px 0 rgba(255,255,255,.4);
}
.coach-portrait {
  width: 100%; aspect-ratio: 5 / 4;
  border-radius: var(--ir-radius-inner); overflow: hidden;
  background: linear-gradient(135deg, #ece8e0, #d6d1c6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.coach-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.coach-portrait .placeholder { width: 100%; height: 100%; border-radius: var(--ir-radius-inner); }
.coach-name {
  font-size: 26px; font-weight: 800; letter-spacing: -.028em; line-height: 1.1;
  margin: 0;
}
.receipts-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 9px;
}
.receipts-list li {
  position: relative; padding-left: 16px;
  font-size: 14.5px; line-height: 1.45; color: var(--ink-2); font-weight: 500;
  letter-spacing: -.01em;
}
.receipts-list li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--purple);
}

/* "Teaches" — editorial metadata, NOT pills.
   Inline comma-separated subjects in sentence-case at meta sizing. */
.teaches-line {
  display: grid; grid-template-columns: auto 1fr; align-items: baseline;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--ir-line-soft);
}
.teaches-label {
  font-size: 10px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--soft);
}
.teaches-subjects {
  font-size: 13px; line-height: 1.5; color: var(--ink-2);
  font-weight: 600;
  font-feature-settings: "ss01" on;
}
.teaches-subjects .sep { color: var(--line-strong); margin: 0 6px; }

/* Coach card restructure */
.coach-card {
  display: flex; flex-direction: column; gap: 0;
}
.coach-photo-wrap {
  position: relative;
}
.coach-photo-wrap .score-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
}
.coach-portrait { aspect-ratio: 4 / 3; }
.coach-info {
  display: flex; flex-direction: column; gap: 16px;
  padding: 20px 0 0;
  flex: 1;
}
.coach-name-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.coach-name { margin: 0; }

/* Specialism line */
.coach-specialism {
  margin: 0;
  font-size: 13.5px; font-weight: 700; color: var(--ink-2);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.oxford-badge {
  display: inline-grid; place-items: center;
  padding: 4px 9px; border-radius: 6px;
  background: #061d45; color: #fffdf8;
  font-family: Georgia, serif; font-size: 11px; font-weight: 700; letter-spacing: .06em;
  box-shadow: 0 6px 16px rgba(6,29,69,.22);
  flex-shrink: 0;
}
.oxford-badge-logo {
  background: #fffdf8;
  padding: 0;
  border: 1px solid rgba(26,22,12,.08);
  overflow: hidden;
}
.oxford-badge-logo img {
  height: 26px; width: auto; display: block;
}

/* Bullet list override for coach cards */
.coach-bullets { gap: 10px; }
.coach-bullets li { font-size: 14px; }

/* Subjects taken line */
.coach-subjects-taken {
  margin: 0;
  font-size: 12px; line-height: 1.5; color: var(--soft);
  font-weight: 500;
}

/* Two-button row */
.coach-actions {
  display: flex; align-items: center; gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--ir-line-soft);
  margin-top: auto;
  flex-wrap: wrap;
}

/* View results — primary trust action */
.coach-view-results {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--purple-soft);
  border: 1px solid rgba(78,73,166,.25);
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.coach-view-results:hover { background: var(--purple); color: #fffdf8; border-color: var(--purple); }
.coach-view-results .lucide { width: 11px; height: 11px; stroke-width: 2.4; }

/* Learn more — editorial dossier link at bottom of coach card */
.coach-learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; border: 0; padding: 0;
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  border-bottom: 1px dotted currentColor;
  padding-bottom: 2px;
  transition: color .2s ease;
}
.coach-learn-more:hover { color: var(--purple); }
.coach-learn-more .lucide { width: 11px; height: 11px; stroke-width: 2.4; }

@media (max-width: 720px) {
  .coach-actions { gap: 14px; }
  .coach-view-results { width: 100%; justify-content: center; }
  .coach-learn-more { align-self: center; }
}

.coaches-closer {
  margin: 44px auto 8px;
  text-align: center;
  font-size: 22px; font-weight: 700; line-height: 1.35; letter-spacing: -.022em;
  color: var(--ink); max-width: 760px;
}
.coaches-closer .scribble::after { left: 0; right: 0; bottom: -.18em; border-bottom-width: 3px; }

@media (max-width: 1080px) {
  .coaches-grid { grid-template-columns: 1fr; gap: 18px; }
  .intensives-section-head h2 { font-size: 42px; }
  .coaches-closer { font-size: 20px; }
}
@media (max-width: 720px) {
  .intensives-section-head h2 { font-size: 34px; }
  .coach-card { padding: 22px 22px 22px; }
}

/* ============== Section 3 — Differentiator ============== */
.differentiator-section { padding: 56px 0 72px; }

.diff-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.diff-left h2 {
  margin-top: 16px;
  font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1.05;
}

/* .diff-item is transparent on desktop — just passes through to .diff-card */
.diff-item { display: contents; }
.diff-num   { display: none; }

.diff-cards {
  display: flex; flex-direction: column; gap: 8px;
}
.diff-card {
  background: rgba(78,73,166, .03);
  border: 1px solid rgba(78,73,166, .12);
  border-radius: 10px;
  padding: 16px 18px;
}
.diff-card-mid {
  background: rgba(78,73,166, .07);
  border-color: rgba(78,73,166, .22);
}
.diff-card-climax {
  background: rgba(78,73,166, .13);
  border-color: rgba(78,73,166, .38);
}
.diff-card-head {
  font-size: 15px; font-weight: 700; color: var(--ink);
  letter-spacing: -.012em; line-height: 1.3; margin: 0 0 5px;
}
.diff-card-body {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  line-height: 1.55; letter-spacing: -.010em; margin: 0;
}

.diff-anchor {
  margin-top: 10px;
  background: rgba(78,73,166, .06);
  border: 1px solid rgba(78,73,166, .15);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 5px;
}
.diff-anchor-body {
  font-size: 15px; font-weight: 600; color: var(--ink);
  line-height: 1.5; letter-spacing: -.014em; margin: 0;
}
.diff-anchor-emphasis {
  font-size: 17px; font-weight: 700; color: var(--ink);
  letter-spacing: -.016em; line-height: 1.3; margin: 0;
}
.diff-anchor .scribble::after { left: 0; right: 0; bottom: -.18em; }

@media (max-width: 860px) {
  .diff-grid { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .diff-grid { gap: 16px; }

  /* ── Timeline layout ── */
  /* Restore item as a real flex row */
  .diff-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
  }

  /* Vertical connecting line runs through the number column */
  .diff-cards {
    position: relative;
    gap: 10px;
  }
  .diff-cards::before {
    content: '';
    position: absolute;
    left: 13px; /* centre of the 28px circle */
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(78,73,166, .25);
    pointer-events: none;
    z-index: 1;
  }

  /* Number circles */
  .diff-num {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fffdf8;
    border: 1.5px solid rgba(78,73,166, .35);
    font-size: 12px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 0;
    margin-top: 12px;
    position: relative;
    z-index: 2;
  }
  .diff-num-climax {
    background: #f1e7d2;
    border-color: rgba(78,73,166, .6);
  }

  /* Cards: slightly more compact */
  .diff-card {
    flex: 1;
    padding: 13px 14px;
  }
  .diff-card-body, .diff-anchor-body { font-size: 14.5px; }

  /* Anchor: centred punchline */
  .diff-anchor {
    text-align: center;
    align-items: center;
    padding: 20px 18px;
    margin-top: 14px;
  }
  .diff-anchor-emphasis { font-size: 17px; }
}

/* ============== Founders Proof — real marked essays section ============== */
/* ============================================================
   FoundersProof — three-step numbered timeline
   ============================================================ */

.founders-proof-section {
  padding: 96px 0 108px;
  background: linear-gradient(180deg, rgba(236,234,229,.40) 0%, rgba(255,255,255,0) 55%);
}

/* ── Header ── */
.fp-header {
  text-align: center;
  margin-bottom: 72px;
}
.fp-heading {
  font-size: 52px; font-weight: 800; letter-spacing: -.04em; line-height: 1.08;
  color: var(--ink); margin: 0 0 18px;
}
.fp-subheading {
  font-size: 18px; font-weight: 500; line-height: 1.6;
  color: var(--ink-2); letter-spacing: -.012em;
  max-width: 480px; margin: 0 auto;
}

/* ── Step list ── */
.fp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}
.fp-divider {
  border: none;
  border-top: 1.5px dashed rgba(78,73,166, .18);
  margin: 52px 0;
}

/* ── Each step: 2-col grid ── */
.fp-step {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* ── Left column ── */
.fp-step-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-badge {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--purple);
  color: #fffdf8;
  font-size: 16px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fp-badge-gold {
  background: linear-gradient(135deg, #7c5af5, var(--purple));
  box-shadow: 0 2px 12px rgba(78,73,166,.35);
}
.fp-label-pill {
  font-size: 10px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--soft);
}

/* Big fraction */
.fp-fraction {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}
.fp-frac-num {
  font-size: 88px; font-weight: 800;
  letter-spacing: -.05em; line-height: 1;
  color: var(--ink-2);
}
.fp-frac-denom {
  font-size: 36px; font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(26,22,12,.35);
}
.fp-fraction-purple .fp-frac-num {
  color: var(--purple);
  text-shadow: 0 2px 28px rgba(78,73,166,.22);
}
.fp-fraction-purple .fp-frac-denom { color: rgba(78,73,166,.45); }

/* Caption */
.fp-caption {
  font-size: 22px; font-weight: 700; line-height: 1.25;
  letter-spacing: -.022em; color: var(--ink);
  margin: 0;
}
.fp-caption-accent { color: var(--purple); }
.fp-caption-underline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(78,73,166,.45);
}

/* Ghost marks (step 1) */
.fp-ghost-marks {
  font-size: 30px; font-weight: 800;
  letter-spacing: .06em;
  color: rgba(26,22,12,.12);
  line-height: 1;
}

/* Annotation arrow + italic text (step 1) */
.fp-annotation {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--purple);
  font-size: 13px; font-style: italic; font-weight: 600; line-height: 1.4;
}
.fp-annotation-arrow {
  width: 48px; flex-shrink: 0;
  color: var(--purple);
  opacity: .6;
  margin-top: 2px;
}

/* ── Right column ── */
.fp-step-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-step-right-tall { align-self: stretch; }

.fp-essay-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26,22,12,.14), 0 2px 8px rgba(26,22,12,.08);
  background: #f5f5f5;
}
.fp-img { display: block; width: 100%; height: auto; }

/* Speech-bubble callouts */
.fp-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fffdf8;
  border: 1px solid var(--ir-line);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 2px 12px rgba(26,22,12,.06);
}
.fp-callout-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(78,73,166,.1);
  border: 1px solid rgba(78,73,166,.2);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fp-callout-icon .lucide { width: 15px; height: 15px; stroke-width: 2; }
.fp-callout-text {
  font-size: 14px; font-weight: 500; line-height: 1.55;
  color: var(--ink); margin: 0;
  letter-spacing: -.010em;
}
.fp-callout-text em { font-style: italic; color: var(--purple); font-weight: 600; }

/* ── Closing bar ── */
.fp-closing-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 64px;
  background: rgba(78,73,166,.06);
  border: 1px solid rgba(78,73,166,.14);
  border-radius: 12px;
  padding: 22px 28px;
}
.fp-closing-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(78,73,166,.12);
  border: 1.5px solid rgba(78,73,166,.25);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fp-closing-icon .lucide { width: 18px; height: 18px; stroke-width: 2; }
.fp-closing-text {
  font-size: 16px; font-weight: 500; line-height: 1.6;
  color: var(--ink); margin: 0; letter-spacing: -.012em;
}
.fp-closing-text strong { color: var(--purple); font-weight: 700; }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .founders-proof-section { padding: 72px 0 84px; }
  .fp-heading { font-size: 44px; }
  .fp-frac-num { font-size: 72px; }
}
@media (max-width: 767px) {
  .founders-proof-section { padding: 52px 0 60px; }
  .fp-header { margin-bottom: 44px; }
  .fp-heading { font-size: 34px; }
  .fp-subheading { font-size: 16px; }
  .fp-step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  /* On mobile, image comes after the left-col content */
  .fp-step-right { order: 1; }
  .fp-step-left  { order: 0; }
  .fp-frac-num { font-size: 64px; }
  .fp-frac-denom { font-size: 28px; }
  .fp-caption { font-size: 18px; }
  .fp-ghost-marks { font-size: 24px; }
  .fp-divider { margin: 36px 0; }
  .fp-closing-bar { padding: 18px 20px; gap: 14px; margin-top: 44px; }
  .fp-closing-text { font-size: 15px; }
}

/* ============== Why Not Alone — markscheme objection close ============== */
.why-not-alone-section {
  padding: 96px 0 108px;
}

.wna-inner {
  max-width: 640px;
  margin: 0 auto;
}
.wna-inner .intensives-section-head { margin-bottom: 44px; }

.wna-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.wna-body p {
  margin: 0;
  font-size: 17.5px; line-height: 1.74;
  color: var(--ink); font-weight: 450;
  letter-spacing: -.013em;
}

/* Running-form turn — the pivot paragraph, slight purple accent */
.wna-turn {
  padding-left: 20px;
  border-left: 3px solid var(--purple);
  color: var(--ink) !important;
}

@media (max-width: 1080px) {
  .why-not-alone-section { padding: 72px 0 84px; }
}
@media (max-width: 767px) {
  .why-not-alone-section { padding: 52px 0 60px; }
  .wna-body p { font-size: 16.5px; }
  .wna-turn { padding-left: 16px; }
}

/* ============== Urgency Beat — structural scarcity, before 1-to-1 product ============== */
.urgency-beat-section {
  padding: 88px 0 100px;
  background: linear-gradient(
    180deg,
    rgba(78,73,166, .04) 0%,
    rgba(255, 255, 255, 0) 60%
  );
}

.ub-inner {
  max-width: 640px;
  margin: 0 auto;
}
.ub-inner .intensives-section-head { margin-bottom: 40px; }

.ub-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ub-body p {
  margin: 0;
  font-size: 17.5px; line-height: 1.74;
  color: var(--ink); font-weight: 450;
  letter-spacing: -.013em;
}

/* Final punch line — purple accent */
.ub-close {
  font-weight: 600 !important;
  color: var(--purple) !important;
  font-size: 17.5px;
}

.ub-cta {
  margin-top: 40px;
}

@media (max-width: 1080px) {
  .urgency-beat-section { padding: 68px 0 80px; }
}
@media (max-width: 767px) {
  .urgency-beat-section { padding: 52px 0 60px; }
  .ub-body p { font-size: 16.5px; }
  .ub-close { font-size: 16.5px; }
  .ub-cta { margin-top: 32px; }
}

/* ============== One-to-one Bridge — lightweight framing before 1-to-1 product ============== */
.oto-bridge-section {
  padding: 80px 0 0;
}
.oto-bridge-inner {
  max-width: 680px;
  margin: 0 auto;
}
.oto-bridge-h {
  font-size: 28px; font-weight: 700; letter-spacing: -.026em; line-height: 1.24;
  color: var(--ink); margin: 14px 0 18px;
}
.oto-bridge-body {
  font-size: 16.5px; line-height: 1.68; font-weight: 500;
  color: var(--ink-2); letter-spacing: -.010em; margin: 0;
}
@media (max-width: 767px) {
  .oto-bridge-section { padding: 60px 0 0; }
  .oto-bridge-h { font-size: 23px; }
  .oto-bridge-body { font-size: 15.5px; }
}

/* ============== Programme transition (demo → products) ============== */
.into-products-section {
  padding: 72px 0 80px;
  background: rgba(78,73,166,.03);
}
.into-products-inner {
  max-width: 680px; margin: 0 auto;
  text-align: center;
}
.into-products-eyebrow {
  color: var(--soft);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.into-products-eyebrow::before,
.into-products-eyebrow::after {
  content: '';
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: rgba(78,73,166, .2);
}
.into-products-h {
  font-size: 30px; font-weight: 700; letter-spacing: -.028em; line-height: 1.2;
  color: var(--ink); margin: 0 0 22px;
}
.into-products-body {
  font-size: 16.5px; line-height: 1.65; font-weight: 500;
  color: var(--ink-2); letter-spacing: -.010em; margin: 0;
}
/* Blind-spot objection paragraph — slightly more prominent */
.into-products-objection {
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 16px;
}
@media (max-width: 1080px) {
  .into-products-h { font-size: 26px; }
}
@media (max-width: 720px) {
  .into-products-section { padding: 52px 0 60px; }
  .into-products-h { font-size: 24px; }
  .into-products-body { font-size: 15px; }
}

/* ============== Section 4/5 — Product cards (Essay + Component) ============== */
.product-section { padding: 56px 0 56px; }
.product-card {
  position: relative;
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.94));
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-card-lg);
  padding: 40px 44px 36px;
  box-shadow: var(--ir-shadow-lift);
}
.product-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: 9px;
  background: linear-gradient(180deg, #f4ecd9, #ecdfc4);
  color: var(--ink); font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; font-size: 11px;
  border: 1px solid rgba(184,138,69,.28);
  box-shadow: 0 8px 22px rgba(31,24,16,.07), inset 0 1px 0 rgba(255,255,255,.9);
}
.product-label.lavender {
  background: linear-gradient(180deg, #f4ecd9, #f1e7d2);
  font-weight: 700;
}
.product-header { margin-bottom: 30px; }
.product-name {
  font-size: 42px; font-weight: 800; letter-spacing: -.038em; line-height: 1.04;
  margin: 18px 0 14px;
}
.product-promise {
  font-size: 18px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
  letter-spacing: -.012em;
  margin: 0;
}
.product-promise b { color: var(--purple); font-weight: 800; }
.product-selector {
  font-size: 14px; font-style: italic;
  color: var(--soft); font-weight: 400;
  line-height: 1.5; letter-spacing: -.005em;
  margin: 10px 0 16px;
}
.promise-sub {
  font-size: 14px; line-height: 1.65; color: var(--ink-2);
  font-weight: 500; margin: 12px 0 0;
  letter-spacing: -.008em;
}

.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 12px 0 26px;
  border-top: 1px solid var(--ir-line);
  border-bottom: 1px solid var(--ir-line);
}
.product-left, .product-right { padding-top: 22px; }

.micro-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 14px;
}

.product-checks {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 11px;
}
.product-checks li {
  position: relative; padding-left: 22px;
  font-size: 15px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
}
.product-checks li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px rgba(78,73,166,.12);
}
.product-checks li b {
  color: var(--ink); font-weight: 800;
}

.subject-pills {
  display: flex; flex-wrap: wrap; gap: 7px;
  margin-bottom: 6px;
}
.subject-pill {
  display: inline-flex; align-items: center;
  padding: 7px 11px; border-radius: 9px;
  background: var(--purple-soft); color: var(--purple);
  font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(78,73,166,.12);
}
.subject-pills.wide-pills .subject-pill { padding: 6px 10px; font-size: 10.5px; }

/* Expand button styled as a chip; same shape, opposite ink */
.subject-pill.expand-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--purple-soft);
  color: var(--purple);
  border: 1px solid rgba(78,73,166,.18);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.subject-pill.expand-pill:hover {
  border-color: var(--purple);
  background: rgba(78,73,166,.16);
}
.expand-pill-plus {
  display: inline-grid; place-items: center;
  width: 12px; height: 12px;
  font-size: 14px; font-weight: 800; line-height: 1;
  color: var(--purple);
}

/* Secondary pills fade in when the grid expands */
.subject-pill.secondary-pill {
  animation: pillFadeIn .35s cubic-bezier(.18, .82, .35, 1) backwards;
}
.component-pills.expanded .secondary-pill:nth-child(7)  { animation-delay: 0ms; }
.component-pills.expanded .secondary-pill:nth-child(8)  { animation-delay: 32ms; }
.component-pills.expanded .secondary-pill:nth-child(9)  { animation-delay: 64ms; }
.component-pills.expanded .secondary-pill:nth-child(10) { animation-delay: 96ms; }
.component-pills.expanded .secondary-pill:nth-child(11) { animation-delay: 128ms; }
.component-pills.expanded .secondary-pill:nth-child(12) { animation-delay: 160ms; }
.component-pills.expanded .secondary-pill:nth-child(13) { animation-delay: 192ms; }

@keyframes pillFadeIn {
  from { opacity: 0; transform: translateY(-2px) scale(.96); }
  to   { opacity: 1; transform: none; }
}

.request-link {
  background: transparent; border: 0; padding: 0; margin: 16px 0 6px;
  color: var(--ink-2); font-size: 14px; font-weight: 500;
  letter-spacing: -.005em;
  cursor: pointer;
  text-align: left;
}
.scribble-arrow {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--purple); font-weight: 800;
  border-bottom: 1.5px dotted var(--purple);
  padding-bottom: 1px;
  transition: color .2s ease;
}
.scribble-arrow .lucide { width: 14px; height: 14px; stroke-width: 2.4; }
.request-link:hover .scribble-arrow { color: var(--purple-3); }

.product-audience {
  font-size: 13.5px; color: var(--soft); line-height: 1.5;
  margin: 8px 0 0;
}

.guarantee-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 10px;
  background: var(--purple-soft);
  border: 1px solid rgba(78,73,166,.15);
  color: var(--purple); font-weight: 800; font-size: 11.5px;
  letter-spacing: .14em; text-transform: uppercase;
  margin-top: 6px;
}
.product-right .guarantee-chip { margin-top: 20px; display: flex; }
.guarantee-chip .dot { font-size: 10px; }

/* Week timeline */
.weeks { display: grid; gap: 22px; position: relative; padding-left: 20px; }
.weeks::before {
  content: ""; position: absolute;
  left: 7px; top: 12px; bottom: 12px;
  border-left: 2px dotted rgba(78,73,166,.35);
}
.week-row { display: grid; grid-template-columns: 1fr; gap: 4px; position: relative; }
.week-row::before {
  content: ""; position: absolute;
  left: -20px; top: 10px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fffdf8; border: 2px solid var(--purple);
  box-shadow: 0 0 0 4px var(--bg), 0 6px 12px rgba(78,73,166,.18);
}
.week-meta .week-num {
  font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--purple);
}
.week-body h4 {
  font-size: 19px; font-weight: 800; letter-spacing: -.022em; line-height: 1.15;
  margin: 4px 0 6px; color: var(--ink);
}
.week-body p {
  font-size: 14px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
}

/* Week expand toggle + detail block */
.week-expand-btn {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 9px;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 700; letter-spacing: .01em;
  color: var(--purple); padding: 0; text-align: left;
  transition: opacity .15s;
}
.week-expand-btn:hover { opacity: .7; }
.week-expand-arrow {
  display: inline-block;
  transition: transform .2s ease;
}
.week-expand-btn.open .week-expand-arrow { transform: rotate(90deg); }
.week-detail-wrap {
  overflow: hidden;
  transition: height .32s cubic-bezier(.18,.82,.35,1);
}
.week-detail {
  margin-top: 10px; padding: 10px 0 6px 12px;
  border-left: 2px solid rgba(78,73,166,.22);
}
.week-detail-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 7px;
}
.week-detail-list li {
  font-size: 13px; line-height: 1.55; color: var(--ink-2); font-weight: 500;
}
.week-detail-list li b { color: var(--ink); font-weight: 700; }
.week-time-commitment {
  margin: 10px 0 0;
  font-size: 12px; font-weight: 600; color: var(--ink);
  letter-spacing: .005em;
}

/* Programme summary (replaces expanded timeline on main page) */
.programme-summary {
  display: flex; flex-direction: column; gap: 11px;
  margin: 0 0 18px;
}
.programme-summary p {
  font-size: 15px; line-height: 1.6; color: var(--ink-2);
  font-weight: 500; margin: 0;
}

/* Week-stack — cohort intensive right column */
.wk-stack { display: grid; gap: 0; margin-bottom: 20px; }
.wk-row {
  display: grid; grid-template-columns: 54px 1fr; gap: 14px; align-items: start;
  padding: 14px 0 14px 14px;
  border-left: 2.5px solid var(--purple);
  border-bottom: 1px solid var(--ir-line);
}
.wk-row:last-child { border-bottom: 0; }
.wk-num {
  font-size: 10px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--purple); padding-top: 3px;
}
.wk-verb {
  font-size: 15px; font-weight: 700; letter-spacing: -.012em; color: var(--ink);
  margin-bottom: 3px;
}
.wk-desc {
  font-size: 14px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
}
@media (max-width: 540px) {
  .wk-row { grid-template-columns: 1fr; gap: 3px; }
  .wk-num { padding-top: 0; }
}
.see-full-breakdown {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 20px;
  padding: 10px 18px;
  border: 1.5px solid var(--purple);
  border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  color: var(--purple); text-decoration: none;
  transition: background .15s, color .15s;
}
.see-full-breakdown:hover { background: var(--purple); color: #fffdf8; }
.see-full-breakdown svg { width: 13px; height: 13px; }

/* Pricing matrix */
.product-foot { padding-top: 28px; }
.price-matrix {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  background: #fffdf8;
}
.price-col { padding: 22px 24px; }
.price-col.launch {
  background:
    linear-gradient(180deg, rgba(184,138,69,.12), rgba(184,138,69,.05)),
    url("paper.png");
  background-size: auto, 300px 300px;
  background-blend-mode: normal, multiply;
  border-right: 1px solid var(--line);
}
.price-col.full { background: #fffdf8; }
.price-col-head { margin-bottom: 12px; }
.launch-chip {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 6px;
  background: linear-gradient(180deg, #e0ad48, #b88a45);
  color: #3a2c0c; font-size: 10.5px; font-weight: 800;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(184,138,69,.5);
  box-shadow: 0 8px 18px rgba(184,138,69,.22);
}
.full-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0;
  font-size: 14px; color: var(--ink-2); font-weight: 600;
}
.price-row b {
  font-size: 22px; font-weight: 800; letter-spacing: -.026em; color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.price-col.launch .price-row b { color: var(--ink); }
.price-col.full .price-row b { color: var(--ink-2); }
.price-note {
  font-size: 12.5px; color: var(--soft); line-height: 1.5;
  margin: 14px 0 0; max-width: 760px;
  grid-column: 1 / -1;
  padding: 0 4px;
}

.product-cta-row {
  display: flex; align-items: center; gap: 22px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.product-cta-row .btn { height: 58px; padding: 0 26px; font-size: 15px; }
.cta-micro {
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
}
.apply-clarifier {
  font-size: 13px; font-weight: 400;
  color: var(--soft);
  line-height: 1.4; letter-spacing: -.005em;
  margin: 10px 0 0;
}

@media (max-width: 1080px) {
  .product-card { padding: 32px 28px 28px; }
  .product-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 16px; }
  .product-name { font-size: 34px; }
  .product-promise { font-size: 16.5px; }
}

@media (max-width: 720px) {
  .product-card { padding: 26px 22px 24px; border-radius: 22px; }
  .product-name { font-size: 28px; }
  .price-matrix { grid-template-columns: 1fr; }
  .price-col.launch { border-right: 0; border-bottom: 1px solid var(--line); }
}

/* ============== Inline testimonials (post-Essay, post-Component) ============== */
.testimonial-section { padding: 8px 0 40px; }
.testimonial-card {
  max-width: 100%;
  margin: 0 auto;
  background: #fffdf8;
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-card);
  padding: 32px 36px 28px;
  box-shadow: var(--ir-shadow-card);
  position: relative;
}

.testimonial-head {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--ir-line-soft);
}
.testimonial-avatar {
  flex: none;
  display: grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  font-size: 18px; font-weight: 800; letter-spacing: -.015em;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 6px 14px rgba(28,22,12,.08);
}
.testimonial-avatar.testimonial-avatar-photo {
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(0,0,0,.06), 0 6px 14px rgba(28,22,12,.1);
}
.testimonial-avatar.tone-warm {
  background: linear-gradient(140deg, #ece3d4, #c8bca7);
  color: #4a3a26;
}
.testimonial-avatar.tone-cool {
  background: linear-gradient(140deg, #d8d3e6, #aba2c8);
  color: #3a3050;
}
.testimonial-id {
  display: flex; flex-direction: column; gap: 4px;
  min-width: 0;
}
.testimonial-name {
  font-size: 17px; font-weight: 800; letter-spacing: -.015em;
  color: var(--ink);
  line-height: 1.2;
}
.testimonial-meta {
  font-size: 12.5px; color: var(--soft);
  font-weight: 600; letter-spacing: -.005em;
  line-height: 1.35;
}

.testimonial-quote {
  margin: 0;
  font-size: 22px; line-height: 1.45; letter-spacing: -.022em;
  color: var(--ink);
  font-weight: 600;
  text-wrap: pretty;
}

.testimonial-tag {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--ir-line-soft);
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
}
.testimonial-trial-note {
  margin: 10px 0 0;
  font-size: 12px; font-weight: 500; line-height: 1.5;
  color: var(--soft); font-style: italic;
}

@media (max-width: 1080px) {
  .testimonial-card { padding: 28px 28px 24px; }
  .testimonial-quote { font-size: 20px; }
}
@media (max-width: 767px) {
  .testimonial-section { padding: 4px 0 28px; }
  .testimonial-card {
    padding: 22px 22px 20px;
    border-radius: var(--ir-radius-inner);
  }
  .testimonial-head {
    padding-bottom: 18px;
    margin-bottom: 18px;
    gap: 14px;
  }
  .testimonial-avatar { width: 52px; height: 52px; font-size: 15px; }
  .testimonial-name { font-size: 15.5px; }
  .testimonial-meta { font-size: 12px; }
  .testimonial-quote { font-size: 18px; line-height: 1.45; }
  .testimonial-tag { margin-top: 18px; padding-top: 16px; font-size: 10px; }
}
.thesis-bridge {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}
.thesis-bridge-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, var(--purple-soft) 0%, transparent 65%);
  opacity: .85;
  pointer-events: none;
}
.thesis-bridge::before,
.thesis-bridge::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: min(720px, 70%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26,22,12,.12), transparent);
}
.thesis-bridge::before { top: 22px; }
.thesis-bridge::after  { bottom: 22px; }

.thesis-bridge-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}
.thesis-line {
  margin: 0;
  font-size: 56px; font-weight: 800; letter-spacing: -.04em; line-height: 1.06;
  text-wrap: balance;
}
.thesis-line.ink     { color: var(--ink); }
.thesis-line.purple  { color: var(--purple); margin-top: 14px; }
.thesis-line .scribble::after {
  left: -1%; right: -3%; bottom: -.16em;
  border-bottom-width: 4px;
  border-bottom-color: rgba(78,73,166,.42);
  transform: rotate(-1.4deg);
}

@media (max-width: 1080px) {
  .thesis-bridge { padding: 48px 0; }
  .thesis-line { font-size: 42px; }
}
@media (max-width: 720px) {
  .thesis-bridge { padding: 40px 0; }
  .thesis-line { font-size: 30px; line-height: 1.1; }
  .thesis-line.purple { margin-top: 12px; }
}

/* ============== Section 5 — 1-to-1 Intensive (restructured) ============== */
/* The card itself uses .product-card chrome but a quieter background + lighter shadow */
.component-card {
  background: linear-gradient(180deg, #fdfcf8, rgba(253,252,248,.88));
  box-shadow: var(--ir-shadow-card);
}

/* Hide the inherited product-grid two-column treatment when present */
.component-card .product-grid { display: none; }

/* Single-column narrative body */
.ci-body {
  padding: 22px 0 18px;
  border-top: 1px solid var(--ir-line);
  display: grid; gap: 38px;
}

.ci-section { display: grid; gap: 14px; }
.ci-section .micro-eyebrow { margin-bottom: 0; }

.ci-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.ci-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px; line-height: 1.55; color: var(--ink-2); font-weight: 500;
  letter-spacing: -.008em;
}
.ci-list li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
}

.ci-muted {
  margin: 0;
  font-size: 13.5px; color: var(--soft); font-style: italic; line-height: 1.5;
}

.ci-components-lower {
  display: flex; gap: 32px; align-items: start; margin-top: 14px; flex-wrap: wrap;
}
.ci-components-lower-left { flex: 0 1 auto; min-width: 220px; display: grid; gap: 8px; }
.ci-components-lower .ci-capacity { flex: 1; min-width: 200px; }

.ci-guarantee-row {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
}
.ci-guarantee-row .guarantee-chip { margin-top: 0; flex: none; }
.ci-guarantee-row .ci-call-note { margin-top: 0; }

/* Promoted capacity line — pull-quote treatment */
.ci-capacity {
  position: relative;
  padding: 22px 26px;
  background: linear-gradient(180deg, var(--purple-soft), color-mix(in oklab, var(--purple-soft) 55%, #fffdf8));
  border: 1px solid rgba(78,73,166,.16);
  border-radius: var(--ir-radius-inner);
}
.ci-capacity-line {
  margin: 0;
  font-size: 18px; line-height: 1.45; color: var(--ink);
  font-weight: 700; letter-spacing: -.018em;
}
.ci-capacity-line .purple {
  color: var(--purple); font-weight: 800;
}
.ci-capacity-rule { display: none; }

/* Horizontal four-week timeline */
.ci-timeline-wrap {
  margin: 12px auto 0;
  max-width: 100%;
  padding: 26px 0 18px;
  border-top: 1px solid var(--ir-line);
}
.ci-timeline-wrap .micro-eyebrow { margin-bottom: 18px; }

/* ── 1-to-1 Intensive: four-step flow timeline ── */
.oto-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-bottom: 20px;
}
/* Connecting line running through the badge centers */
.oto-timeline::before {
  content: ""; position: absolute;
  left: 18px; right: 18px; top: 17px;
  height: 1.5px;
  background: linear-gradient(90deg,
    rgba(78,73,166,.2) 0%,
    rgba(78,73,166,.4) 60%,
    rgba(78,73,166,.65) 100%);
  z-index: 0;
}
.oto-cell {
  position: relative; z-index: 1;
  padding: 0 22px 0 0;
}
.oto-cell:last-child { padding-right: 0; }
/* Arrow tip between cells */
.oto-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 9px; top: 12px;
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(78,73,166,.35);
  z-index: 2;
}
.oto-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fffdf8; border: 2px solid var(--purple);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: var(--purple);
  letter-spacing: .04em;
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px var(--bg), 0 2px 8px rgba(78,73,166,.15);
  font-variant-numeric: tabular-nums;
}
.oto-cell-accent .oto-num {
  background: var(--purple); color: #fffdf8;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px var(--bg), 0 4px 16px rgba(78,73,166,.35);
}
.oto-label {
  font-size: 16px; font-weight: 800;
  letter-spacing: -.018em; line-height: 1.15;
  margin: 0 0 8px; color: var(--ink);
}
.oto-cell-accent .oto-label { color: var(--purple); }
.oto-body {
  font-size: 13px; line-height: 1.55; color: var(--ink-2);
  font-weight: 500; margin: 0; letter-spacing: -.004em;
}
@media (max-width: 860px) {
  .oto-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .oto-timeline::before { display: none; }
  .oto-cell::after { display: none; }
  .oto-cell {
    padding: 16px;
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    border-radius: 10px;
  }
  .oto-num { box-shadow: none; }
}
@media (max-width: 500px) {
  .oto-timeline { grid-template-columns: 1fr; }
}

.ci-horizontal-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.ci-horizontal-timeline::before {
  /* Horizontal connector that runs through the week dots */
  content: ""; position: absolute;
  left: 24px; right: 24px;
  top: 25px;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(78,73,166,.35) 50%, transparent 0);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}
.hw-cell {
  position: relative;
  padding: 12px 4px 0;
  display: grid; gap: 6px;
  z-index: 1;
}
.hw-cell::before {
  /* The dot on the timeline */
  content: ""; position: absolute;
  top: 14px; left: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fffdf8;
  border: 2px solid var(--purple);
  box-shadow: 0 0 0 4px var(--bg), 0 6px 14px rgba(78,73,166,.22);
}
.hw-cell::after {
  /* Inner dot */
  content: ""; position: absolute;
  top: 21px; left: 11px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--purple);
}
.hw-week {
  margin-top: 40px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--purple);
  font-variant-numeric: tabular-nums;
}
.hw-label {
  font-size: 18px; font-weight: 800; letter-spacing: -.022em; line-height: 1.15;
  margin: 0; color: var(--ink);
}
.hw-body {
  font-size: 13px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
  margin: 0;
  letter-spacing: -.005em;
}

@media (max-width: 1080px) {
  .ci-horizontal-timeline { grid-template-columns: repeat(2, 1fr); }
  .ci-horizontal-timeline::before { display: none; }
  .hw-week { margin-top: 0; }
  .hw-cell::before, .hw-cell::after { display: none; }
  .hw-cell {
    padding: 16px 18px;
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    border-radius: var(--ir-radius-inner);
    box-shadow: 0 2px 6px rgba(28,22,12,.03);
  }
}
@media (max-width: 720px) {
  .ci-horizontal-timeline { grid-template-columns: 1fr; gap: 10px; }
}

/* ============== Responsive: stack hero below ~1080px ============== */
@media (max-width: 1080px) {
  /* Nav simplifies — hide section links, keep brand + Apply */
  .nav.intensives-nav { grid-template-columns: 1fr auto; padding: 0 16px; height: 52px; width: calc(100% - 40px); }
  .nav.intensives-nav .links { display: none; }
  .nav.intensives-nav .brand { gap: 8px; }
  .nav.intensives-nav .brand .logo { width: 74px; height: 28px; }
  .nav.intensives-nav .brand .sub { font-size: 8.5px; padding: 2px 6px; letter-spacing: .14em; }
  .nav.intensives-nav .btn.join { height: 38px; padding: 0 14px; font-size: 13px; border-radius: 10px; }

  .intensives .hero { padding-top: 110px; padding-bottom: 24px; }
  .intensives .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
  .intensives .hero h1 { font-size: 56px; max-width: 100%; }
  .intensives .hero-copy .lede { max-width: 100%; }

  .intensives .hero-visual {
    height: 520px;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .intensives .orbit.a { width: 580px; height: 400px; left: -30px; top: 30px; transform: rotate(-9deg); }
  .intensives .orbit.b { width: 480px; height: 500px; right: -30px; top: -10px; transform: rotate(22deg); }
  .intensives .orbit.c { width: 620px; height: 320px; left: -60px; top: 150px; transform: rotate(13deg); }

  .draft-doc { left: 20px; top: 26px; width: 360px; height: 410px; padding: 26px 28px; }
  .draft-doc .doc-redmark { right: 18px; top: 160px; }
  .supervisor-msg { right: 22px; top: 50px; width: 260px; padding: 16px 18px 18px; }
  .deadline-stamp { right: 10px; bottom: 30px; width: 180px; height: 136px; }
}

@media (max-width: 720px) {
  .intensives .hero { padding-top: 96px; }
  .intensives .hero h1 { font-size: 44px; }
  .intensives .hero-copy .lede { font-size: 17px; }
  .intensives .hero-actions .btn { height: 56px; padding: 0 22px; font-size: 14.5px; }

  .intensives .hero-visual { height: 460px; max-width: 100%; }
  .intensives .orbit.a { width: 460px; height: 320px; left: -20px; }
  .intensives .orbit.b { width: 380px; height: 400px; right: -20px; }
  .intensives .orbit.c { width: 480px; height: 260px; left: -40px; top: 130px; }

  .draft-doc { left: 8px; top: 22px; width: min(320px, 78%); height: 350px; padding: 22px 24px; }
  .draft-doc .doc-title { font-size: 16px; }
  .draft-doc .doc-redmark { right: 14px; top: 138px; }
  .supervisor-msg { right: 8px; top: 36px; width: min(240px, 64%); padding: 14px 16px 16px; }
  .supervisor-msg .msg-body { font-size: 14.5px; }
  .deadline-stamp { right: 6px; bottom: 22px; width: 160px; height: 120px; padding: 18px 20px 16px; }
  .deadline-stamp .ds-days { font-size: 58px; }

  .intensives .proof-strip { grid-template-columns: repeat(2, 1fr); padding: 18px 20px; gap: 16px 0; }
  .intensives .proof-strip > div:nth-child(3) { border-left: 0; }
}

/* ============== Section 8.5 — Membership explainer ============== */
.membership-section {
  padding: 32px 0 32px;
}
.membership-card {
  background: linear-gradient(180deg, var(--purple-soft), color-mix(in oklab, var(--purple-soft) 50%, #fffdf8));
  border: 1px solid rgba(78,73,166,.14);
  border-radius: var(--ir-radius-card);
  padding: 24px 28px 22px;
  box-shadow: var(--ir-shadow-card);
  max-width: 820px;
  margin: 0 auto;
}
.membership-card .eyebrow { display: inline-block; margin-bottom: 14px; }
.membership-h {
  font-size: 17px; font-weight: 700; letter-spacing: -.01em; line-height: 1.3;
  margin: 0 0 12px;
}
.membership-h .purple { color: var(--purple); }
.membership-savings {
  font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.015em;
  margin: 0 0 18px;
}
.membership-savings b { color: var(--purple); }

.membership-lede {
  font-size: 16px; line-height: 1.55; color: var(--ink-2);
  font-weight: 500; letter-spacing: -.012em;
  max-width: 760px;
  margin: 0 0 30px;
}

.member-items {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(78,73,166,.16);
  border-bottom: 1px solid rgba(78,73,166,.16);
}
.member-item {
  padding: 0 20px;
  border-right: 1px dashed rgba(78,73,166,.18);
}
.member-item:first-child { padding-left: 0; }
.member-item:last-child { padding-right: 0; border-right: 0; }
.member-item-label {
  font-size: 11px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.member-item-body {
  font-size: 14px; line-height: 1.5; color: var(--ink-2);
  font-weight: 500; letter-spacing: -.005em;
  margin: 0;
}
.member-item-body b {
  color: var(--ink); font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.membership-cta-line {
  margin: 22px 0 0;
  font-size: 14.5px; color: var(--ink-2); font-weight: 600;
  letter-spacing: -.008em;
  display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px;
}
.membership-cta-line b {
  color: var(--ink); font-weight: 800; font-variant-numeric: tabular-nums;
}

/* Inline savings line under product pricing blocks */
.member-savings-line {
  margin: 14px 0 0;
  font-size: 13px; line-height: 1.5;
  color: var(--soft);
  font-weight: 500; letter-spacing: -.005em;
}
.member-savings-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--purple); font-weight: 800;
  border-bottom: 1px dotted var(--purple);
  padding-bottom: 1px;
  margin-left: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.member-savings-link:hover { color: var(--purple-3); border-bottom-color: var(--purple-3); }
.member-savings-link .lucide { width: 12px; height: 12px; stroke-width: 2.4; }

@media (max-width: 1080px) {
  .membership-card { padding: 32px 28px 28px; }
  .membership-h { font-size: 26px; }
  .member-items { grid-template-columns: 1fr; gap: 0; padding: 8px 0; }
  .member-item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px dashed rgba(78,73,166,.18);
  }
  .member-item:last-child { border-bottom: 0; }
}
@media (max-width: 720px) {
  .membership-card { padding: 26px 22px 24px; }
  .membership-h { font-size: 22px; }
}

/* Membership explainer drawer — narrower than coach dossier */
.membership-drawer { max-width: 480px !important; }

.membership-drawer-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 32px 36px;
}
.membership-drawer-savings {
  margin: 0;
  font-size: 22px; font-weight: 700; line-height: 1.3;
  color: var(--ink); letter-spacing: -.020em;
}
.membership-drawer-savings .purple { color: var(--purple); }
.membership-drawer-lede {
  margin: 0;
  font-size: 16px; line-height: 1.70;
  color: var(--ink-2); font-weight: 500;
  letter-spacing: -.010em;
}
.membership-drawer-cta-line {
  margin: 0;
  font-size: 15px; color: var(--ink-2);
}

/* Inline "What's the member price?" text link in price matrix */
.member-link-inline {
  all: unset;
  cursor: pointer;
  font-size: inherit;
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(78,73,166, .35);
  text-underline-offset: 2px;
  transition: text-decoration-color .15s;
}
.member-link-inline:hover {
  text-decoration-color: var(--purple);
}

.coaching-section { padding: 32px 0 64px; }

.oh-header-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 18px;
}
.members-only-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: 999px;
  background: var(--purple-soft);
  color: var(--purple);
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(78,73,166,.16);
}
.members-only-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple);
}

.coaching-header { margin-bottom: 22px; }
.coaching-name {
  font-size: 36px; font-weight: 800; letter-spacing: -.034em; line-height: 1.06;
  margin: 8px 0 16px;
}
.coaching-promise {
  font-size: 16.5px; line-height: 1.55; color: var(--ink-2); font-weight: 500;
  letter-spacing: -.012em;
  max-width: 720px;
  margin: 0 0 14px;
}

.oh-gate-line {
  margin: 0;
  font-size: 13.5px; color: var(--soft); line-height: 1.5;
  letter-spacing: -.005em;
}
.oh-gate-line em { font-style: italic; }
.oh-membership-link {
  color: var(--purple); font-weight: 800; font-style: normal;
  border-bottom: 1px dotted var(--purple);
  padding-bottom: 1px;
  display: inline-flex; align-items: center; gap: 4px;
  transition: color .2s ease, border-color .2s ease;
}
.oh-membership-link:hover { color: var(--purple-3); border-bottom-color: var(--purple-3); }
.oh-membership-link .lucide { width: 12px; height: 12px; stroke-width: 2.4; }

.oh-pricing {
  padding-top: 28px;
  margin-top: 16px;
  border-top: 1px solid var(--ir-line);
}
.oh-price-grid { margin-top: 14px; }

/* Two-card pricing — matches the Essay/Component PriceMatrix rhythm */
.coaching-price-grid.two-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--ir-radius-inner); overflow: hidden;
  border: 1px solid var(--ir-line);
  background: #fffdf8;
}
.coaching-price-card {
  position: relative;
  padding: 26px 28px 28px;
  display: flex; flex-direction: column; gap: 14px;
  background: #fafaf6;
  border-right: 1px solid var(--ir-line);
}
.coaching-price-card:last-child { border-right: 0; }
.coaching-price-card.recommended {
  background: linear-gradient(180deg, #f4ecd9, #e5ebf8);
  border-right: 0;
}
.coaching-price-grid.two-card .coaching-price-card.recommended {
  box-shadow: -1px 0 0 var(--ir-line);
}

.cpc-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; min-height: 26px;
}
.cpc-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
  line-height: 1.3;
}
.coaching-price-card.recommended .cpc-label { color: var(--purple); }
.cpc-recommended {
  display: inline-flex; align-items: center;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(78,73,166,.16);
  color: var(--purple);
  font-size: 9.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(78,73,166,.18);
}

.cpc-rows { display: grid; gap: 8px; }
.cpc-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-2); font-weight: 700;
  letter-spacing: -.005em;
}
.cpc-row > span {
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
}
.cpc-row b {
  font-size: 26px; font-weight: 800; letter-spacing: -.026em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.coaching-price-card.recommended .cpc-row b { color: var(--purple); }
.cpc-row-unavailable {
  border-top: 1px dashed var(--ir-line);
  padding-top: 8px;
}
.cpc-row-unavailable b { display: none; }
.cpc-row-unavailable .cpc-unavailable {
  font-size: 11px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft);
}

.cpc-sub {
  margin: 6px 0 0;
  font-size: 13px; line-height: 1.5; color: var(--soft);
  font-weight: 500; letter-spacing: -.005em;
}
.coaching-price-card.recommended .cpc-sub { color: var(--ink-2); font-weight: 600; }

.oh-members-only-line {
  margin: 14px 0 0;
  font-size: 12.5px; color: var(--soft);
  font-weight: 500; line-height: 1.5;
  text-align: right;
  letter-spacing: -.005em;
}

.coaching-cta-row {
  display: flex; align-items: center; gap: 20px;
  margin-top: 28px; flex-wrap: wrap;
}
.coaching-cta-row .btn { height: 56px; padding: 0 24px; font-size: 14.5px; }

.oh-tertiary {
  margin: 16px 0 0;
  font-size: 12.5px; color: var(--soft);
  font-weight: 500; letter-spacing: -.005em;
  line-height: 1.5;
}
.oh-tertiary .oh-membership-link { font-size: 12.5px; }

@media (max-width: 1080px) {
  .coaching-name { font-size: 28px; }
}
@media (max-width: 720px) {
  .coaching-name { font-size: 24px; }
  .coaching-price-grid.two-card { grid-template-columns: 1fr; }
  .coaching-price-card { border-right: 0; border-bottom: 1px solid var(--ir-line); }
  .coaching-price-card:last-child { border-bottom: 0; }
  .coaching-price-grid.two-card .coaching-price-card.recommended { box-shadow: 0 -1px 0 var(--ir-line); }
  .oh-members-only-line { text-align: left; }
}

/* ============== Section 7 — Parents ============== */
.parents-section { padding: 64px 0 72px; }

.parents-lead {
  max-width: 760px; margin: 64px auto 52px;
  text-align: center;
}
.parents-lead-eyebrow { margin-bottom: 16px; }
.parents-lead-h {
  font-size: 29px; font-weight: 700; letter-spacing: -.026em; line-height: 1.2;
  color: var(--ink); margin: 0 0 22px;
}
.parents-lead-body {
  font-size: 16.5px; line-height: 1.65; font-weight: 500;
  color: var(--ink-2); letter-spacing: -.010em;
  max-width: 640px; margin: 0 auto;
}

.parents-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  margin-top: 18px;
}
.parents-col {
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.92));
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-card); padding: 30px 28px 28px;
  box-shadow: var(--ir-shadow-card);
}
.parents-col-head {
  font-size: 22px; font-weight: 800; letter-spacing: -.024em; line-height: 1.15;
  color: var(--purple);
  margin: 0 0 18px;
}
.parents-col.never .parents-col-head { color: var(--purple); }
.red-dot { color: var(--red); margin-right: 6px; font-size: 14px; }
.parents-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.parents-list li {
  position: relative; padding-left: 22px;
  font-size: 15.5px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
}
.parents-list li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px rgba(78,73,166,.12);
}
.parents-list.never-list li::before {
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(232,69,69,.12);
}
.parents-locked {
  margin: 52px auto 14px;
  text-align: center;
  font-size: 30px; font-weight: 800; line-height: 1.18; letter-spacing: -.028em;
  color: var(--ink); max-width: 820px;
}
.parents-locked .scribble::after {
  left: -2%; right: -2%;
  bottom: -.14em;
  border-bottom-width: 3px;
  transform: rotate(-.8deg);
}
.parents-closer {
  text-align: center; margin: 0 auto 26px;
  font-size: 16.5px; line-height: 1.5; color: var(--muted);
  max-width: 660px; font-weight: 500;
}
.integrity-chip {
  display: flex; align-items: flex-start; gap: 8px;
  width: fit-content; margin: 14px auto 0;
  color: var(--purple); font-weight: 600; font-size: 14px;
  letter-spacing: -.005em; text-transform: none; line-height: 1.45;
}
.integrity-chip .lucide { flex: none; width: 16px; height: 16px; stroke-width: 2.5; margin-top: 2px; }
.integrity-note {
  text-align: center; margin: 10px auto 0; max-width: 560px;
  font-size: 13.5px; color: var(--soft); line-height: 1.55;
}

@media (max-width: 1080px) {
  .parents-grid { grid-template-columns: 1fr; gap: 18px; }
  .parents-locked { font-size: 24px; }
  .parents-lead { margin-top: 48px; margin-bottom: 40px; }
  .parents-lead-h { font-size: 24px; }
  .parents-lead-body { font-size: 15.5px; }
}
@media (max-width: 720px) {
  .parents-lead { margin-top: 40px; margin-bottom: 32px; }
  .parents-lead-h { font-size: 22px; }
  .parents-lead-body { font-size: 15px; }
}

/* ============== Section 8 — Guarantee (navy proof-vault) ============== */
.guarantee-section {
  padding: 88px 0 88px;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(94,75,182,.28), transparent 55%),
    url("starfield.png") center / cover no-repeat,
    linear-gradient(180deg, #0a1440, #07153f);
  color: #fffdf8;
  position: relative; overflow: hidden;
}
.guarantee-section::before {
  /* Disable the section's dot-grid overlay; the purple bg owns this section */
  display: none;
}
.guarantee-bg { position: absolute; inset: 0; pointer-events: none; opacity: .14; }
.g-orbit {
  position: absolute; border-radius: 50%;
  border: 1px dotted rgba(255,255,255,.5);
}
.g-orbit.a { width: 760px; height: 500px; left: -120px; top: -80px; transform: rotate(-10deg); }
.g-orbit.b { width: 640px; height: 640px; right: -180px; bottom: -200px; transform: rotate(22deg); }

.g-head { text-align: center; margin-bottom: 48px; position: relative; z-index: 2; }
.g-eyebrow-light { color: rgba(255,255,255,.95); display: inline-block; }
.g-eyebrow-light::before { color: rgba(255,255,255,.95) !important; }
.g-heading {
  font-size: 56px; font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
  color: #fffdf8;
  margin: 18px auto 0;
  max-width: 740px;
  text-wrap: balance;
}
.g-heading .scribble.white::after {
  border-bottom-color: rgba(255,255,255,.9);
  filter: drop-shadow(0 6px 10px rgba(255,255,255,.18));
}
.g-rows {
  display: grid; gap: 28px;
  max-width: 860px; margin: 0 auto;
  position: relative; z-index: 2;
}
.g-row { padding: 0 8px; }
.g-eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex; gap: 6px; align-items: baseline;
  margin-bottom: 8px;
}
.g-eyebrow span:first-child {
  color: #fffdf8; font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.g-body {
  font-size: 19px; line-height: 1.42; font-weight: 600; letter-spacing: -.018em;
  color: #fffdf8;
}
.g-body + .g-body { margin-top: 10px; }
.g-body strong { font-weight: 800; }
.g-footnote {
  margin: 56px auto 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.62); line-height: 1.5; font-style: italic;
  max-width: 760px;
  position: relative; z-index: 2;
}
.g-detail-link {
  display: flex; align-items: center; gap: 6px;
  width: fit-content; margin: 20px auto 0;
  font-size: 13px; font-weight: 700; letter-spacing: .01em;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  position: relative; z-index: 2;
  transition: color .15s;
}
.g-detail-link:hover { color: #fffdf8; }
.g-detail-link svg { width: 13px; height: 13px; }

/* Price reframe block — inner container at bottom of guarantee section */
.g-reframe {
  position: relative; z-index: 2;
  max-width: 860px; margin: 40px auto 0;
  padding: 30px 34px 34px;
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
}
.g-reframe-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-bottom: 12px;
}
.g-reframe-headline {
  font-size: 29px; font-weight: 800; letter-spacing: -.025em; line-height: 1.12;
  color: #fffdf8; margin: 0 0 20px;
}
.g-reframe-body {
  font-size: 18px; line-height: 1.58; font-weight: 500;
  color: rgba(255,255,255,.85); letter-spacing: -.01em;
  margin: 0 0 14px;
}
.g-reframe-body:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .guarantee-section { padding: 64px 0; }
  .g-heading { font-size: 38px; }
  .g-body { font-size: 17px; }
  /* Keep headline centred; left-align the numbered rows below it */
  .g-rows { text-align: left; max-width: 100%; }
  .g-row { padding: 0; }
  .g-eyebrow { justify-content: flex-start; }
  .g-footnote { text-align: left; margin-left: 0; }
  .g-detail-link { margin-left: 0; }
  .g-reframe { padding: 22px 20px 24px; margin-top: 32px; max-width: 100%; }
  .g-reframe-headline { font-size: 22px; }
  .g-reframe-body { font-size: 16px; }
}

/* ============== Section 8.6 — FAQ ============== */
.faq-section { padding: 56px 0 72px; }
.faq-section .wide { max-width: 920px; }

/* Override landing.css's `.faq-list p { padding: 0 26px 22px 78px }` which
   was designed for the iborbit.com landing FAQ (with a leading icon column).
   Our intensives FAQ uses .faq-a as the padding host, so reset the <p>. */
.intensives .faq-list p {
  padding: 0;
}
.faq-list {
  display: flex; flex-direction: column;
  margin-top: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.faq-row {
  border-top: 1px solid var(--ir-line);
  background: transparent;
}
.faq-row:last-child { border-bottom: 1px solid var(--ir-line); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  transition: padding .2s ease;
}
.faq-q-text {
  font-size: 20px; font-weight: 800; letter-spacing: -.022em; line-height: 1.3;
  color: var(--ink);
  text-wrap: pretty;
  flex: 1 1 0;
  min-width: 0;
}
.faq-row.open .faq-q-text { color: var(--purple); }
.faq-q:hover .faq-q-text { color: var(--purple); }

.faq-indicator {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #fffdf8;
  border: 1px solid var(--ir-line);
  display: grid; place-items: center;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
.faq-row:hover .faq-indicator { border-color: var(--purple); }
.faq-row.open .faq-indicator {
  background: var(--purple);
  border-color: var(--purple);
  transform: rotate(45deg);
}
.faq-plus {
  display: inline-block;
  font-size: 20px; font-weight: 800; line-height: 1;
  color: var(--ink);
  transition: color .2s ease;
  transform: translateY(-1px);
}
.faq-row.open .faq-plus { color: #fffdf8; }

.faq-a-wrap {
  overflow: hidden;
  transition: height .35s cubic-bezier(.18,.82,.35,1);
}
.faq-a {
  padding: 4px 56px 24px 4px;
}
.faq-a p {
  margin: 0;
  font-size: 15.5px; line-height: 1.65; color: var(--ink-2);
  font-weight: 500; letter-spacing: -.008em;
  max-width: 720px;
}

.faq-footer {
  margin: 32px 4px 0;
  font-size: 13.5px; color: var(--soft);
  font-weight: 500; line-height: 1.6;
  letter-spacing: -.005em;
}
.faq-link {
  color: var(--purple); font-weight: 800;
  border-bottom: 1px dotted var(--purple);
  padding-bottom: 1px;
  transition: color .2s ease, border-color .2s ease;
}
.faq-link:hover { color: var(--purple-3); border-bottom-color: var(--purple-3); }

@media (max-width: 720px) {
  .faq-q { padding: 18px 4px; gap: 14px; }
  .faq-q-text { font-size: 17px; }
  .faq-indicator { width: 28px; height: 28px; }
  .faq-plus { font-size: 16px; }
  .faq-a { padding: 4px 12px 20px 0; }
  .faq-a p { font-size: 14.5px; }
}

/* ============== Section 9 — Intake / Urgency ============== */
.intake-section { padding: 64px 0 56px; }

.intake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .intake-grid { grid-template-columns: 1fr; gap: 40px; }
}
.intake-dateline {
  display: inline-block;
  margin: -4px 0 16px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--soft);
}
.intake-card {
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.92));
  border: 1px solid var(--ir-line); border-radius: var(--ir-radius-card);
  overflow: hidden;
  box-shadow: var(--ir-shadow-card);
}
.intake-top-strip {
  background: linear-gradient(180deg, #1b2d61, #14204f);
  color: #fffdf8;
  padding: 14px 24px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 11.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
}
.intake-top-strip .divider { color: rgba(255,255,255,.5); margin: 0 4px; }

.intake-rows { padding: 6px 0; }
.intake-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1.4fr auto;
  align-items: center; gap: 22px;
  padding: 22px 28px;
  border-top: 1px solid var(--line);
}
.intake-row:first-child { border-top: 0; }

/* Purple-soft tint on the Component row only — emphasises booking urgency */
.intake-row.component-row-tint {
  background: linear-gradient(90deg, var(--purple-soft), color-mix(in oklab, var(--purple-soft) 50%, #fffdf8));
  border-top-color: rgba(78,73,166,.14);
}
.intake-row.component-row-tint + .intake-row { border-top-color: rgba(78,73,166,.14); }
.ir-context-emphasis {
  font-size: 14px; font-weight: 600; color: var(--ink);
  letter-spacing: -.008em;
}
.ir-context-emphasis .purple {
  color: var(--purple); font-weight: 800;
}

.ir-subject {
  font-size: 19px; font-weight: 800; letter-spacing: -.022em; line-height: 1.15;
  color: var(--ink);
}
.ir-subject.muted { color: var(--ink-2); font-size: 16px; }
.ir-meta {
  font-size: 12.5px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple);
}
.ir-meta.muted { color: var(--soft); }
.ir-context {
  font-size: 13.5px; color: var(--muted); line-height: 1.45; font-weight: 500;
}
.ir-context.muted { color: var(--soft); }
.ir-count {
  /* legacy "X of 12 seats remaining" label; no longer used */
  display: none;
}
.ir-apply {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px; border-radius: 9px;
  background: var(--ink); color: #fffdf8;
  font-size: 13px; font-weight: 800; letter-spacing: -.012em;
  border: 1px solid var(--ink);
  transition: transform .2s ease;
  white-space: nowrap;
}
.ir-apply:hover { transform: translateY(-1px); }
.ir-apply .lucide { width: 14px; height: 14px; stroke-width: 2.4; }
.ir-apply .ir-arrow {
  display: inline-block; width: 14px; height: 14px;
  stroke-width: 2.4;
  flex: none;
  margin-left: 4px;
  vertical-align: middle;
}
.ir-apply.secondary {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}

.seat-dots {
  /* legacy seat-counter no longer rendered, but keep styles harmless if reused */
  display: none;
}

/* ---- Status pills ---- */
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  width: fit-content;
  padding: 6px 11px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid transparent;
}
.status-pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
}
.status-pill.status-open {
  background: var(--purple-soft);
  color: var(--purple);
  border-color: rgba(78,73,166,.16);
}
.status-pill.status-open::before {
  background: var(--purple);
}
.status-pill.status-filling {
  background: rgba(245,158,11,.1);
  color: #92400e;
  border-color: rgba(245,158,11,.3);
}
.status-pill.status-filling::before {
  background: #d97706;
  animation: statusPulse 1.6s ease-in-out infinite;
}
@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,6,.5); }
  50%      { box-shadow: 0 0 0 4px rgba(217,119,6,0); }
}
.status-pill.status-final {
  background: linear-gradient(180deg, #ef4444, #dc2626);
  color: #fffdf8;
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(239,68,68,.22);
}
.status-pill.status-final::before {
  background: #fffdf8;
}
.status-pill.status-closed {
  background: #fffdf8;
  color: var(--soft);
  border-color: var(--ir-line);
}
.status-pill.status-closed::before {
  background: var(--soft);
}

.intake-footnote {
  margin: 18px 0 0;
  font-size: 12.5px; color: var(--soft); line-height: 1.5; font-style: italic;
  text-align: right;
}

/* 1-to-1 strip — sits below the cohort card; deliberately distinct */
.intake-oneToOne-strip {
  padding: 28px 32px 30px;
  background: rgba(78,73,166,.03);
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius);
}
.iots-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 10px;
}
.iots-title {
  font-size: 20px; font-weight: 800; letter-spacing: -.022em; line-height: 1.2;
  color: var(--ink); margin: 0 0 10px;
}
.iots-body {
  font-size: 15px; line-height: 1.6; color: var(--ink-2); font-weight: 500;
  max-width: 600px; margin: 0 0 18px;
}
.iots-apply {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--purple);
  text-decoration: none; letter-spacing: -.005em;
  transition: opacity .15s;
}
.iots-apply:hover { opacity: .7; }
.iots-apply .ir-arrow { width: 14px; height: 14px; }

@media (max-width: 1080px) {
  .intake-row { grid-template-columns: 1fr; gap: 8px; }
  .intake-row .ir-apply { justify-self: start; }
}

/* ============== Section 10 — Final CTA ============== */
.final-cta-section { padding: 96px 0 40px; }
.final-cta-inner { text-align: center; max-width: 760px; margin: 0 auto; }
.final-h {
  font-size: 58px; font-weight: 800; letter-spacing: -.04em; line-height: 1.02;
  margin: 0 auto 26px;
  text-wrap: balance;
}
.final-restate {
  font-size: 20px; font-weight: 700; letter-spacing: -.016em;
  color: var(--ink);
  margin: 0 auto 32px;
}
.final-restate .scribble::after { border-bottom-width: 3px; bottom: -.16em; }
.final-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 10px;
}
.final-buttons .btn { height: 64px; padding: 0 28px; font-size: 15px; min-width: 260px; }
.final-cta-section .apply-clarifier {
  text-align: center;
  margin-bottom: 22px;
}
.final-tertiary {
  margin: 0 auto 22px;
  font-size: 16px; color: var(--ink-2);
  font-weight: 500; letter-spacing: -.008em;
  line-height: 1.5;
  max-width: 580px;
}
.final-tertiary b { color: var(--ink); font-weight: 800; }

.final-secondary {
  font-size: 13.5px; color: var(--soft); margin: 0 auto 32px;
  font-weight: 500;
}
.final-secondary .text-link { font-weight: 700; color: var(--ink-2); }
.final-secondary .scribble-arrow {
  color: var(--ink-2); border-bottom-color: var(--ink-2);
}
.text-link { color: var(--purple); font-weight: 800; }
.final-micro {
  font-size: 10.5px; font-weight: 800; letter-spacing: .26em; text-transform: uppercase;
  color: var(--soft);
  display: inline-flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.final-micro .divider { color: var(--soft); opacity: .5; }

@media (max-width: 720px) {
  .final-h { font-size: 38px; }
  .final-buttons .btn { width: 100%; min-width: 0; }
  .apply-clarifier { text-align: center; }
}
@media (max-width: 400px) {
  .apply-clarifier { font-size: 12px; }
}

/* ============== Section 10.5 — Email capture strip ============== */
.email-capture-section { padding: 12px 0 56px; }
.email-strip {
  background:
    linear-gradient(180deg, rgba(184,138,69,.10), rgba(184,138,69,.04)),
    url("paper.png");
  background-size: auto, 300px 300px;
  background-blend-mode: normal, multiply;
  border: 1px solid rgba(7,21,68,.12);
  border-radius: 22px;
  padding: 38px 40px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(31,24,16,.08), inset 0 1px 0 rgba(255,255,255,.9);
}
.email-strip .eyebrow { display: inline-block; margin-bottom: 14px; }
.email-h {
  font-size: 26px; font-weight: 800; letter-spacing: -.028em; line-height: 1.18;
  margin: 0 auto 8px;
  max-width: 580px;
}
.email-body {
  font-size: 13.5px; color: var(--muted); line-height: 1.5;
  max-width: 540px; margin: 0 auto 22px;
}
.email-form {
  display: flex; gap: 10px; justify-content: center;
  max-width: 520px; margin: 0 auto;
  flex-wrap: wrap;
}
.email-form input {
  flex: 1; min-width: 240px;
  height: 56px; padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fffdf8;
  font-family: var(--font-sans);
  font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), 0 4px 12px rgba(28,22,12,.04);
  outline: none;
  transition: border-color .2s ease;
}
.email-form input:focus { border-color: var(--purple); }
.email-form .btn { height: 56px; padding: 0 22px; font-size: 14.5px; }
.email-confirm {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px;
  background: #fffdf8; border: 1px solid var(--green);
  color: var(--green); font-weight: 800; font-size: 14.5px;
}
.email-confirm .lucide { width: 20px; height: 20px; stroke-width: 2.5; }

@media (max-width: 720px) {
  .email-strip { padding: 28px 22px; }
  .email-h { font-size: 22px; }
}

/* ============== Section 11 — Footer ============== */
.intensives-footer {
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
  background: rgba(252, 251, 248, .8);
}
.intensives-footer .wide { display: grid; gap: 24px; }
.footer-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; }
.footer-logo { width: 104px; height: auto; }
.footer-sub {
  display: inline-flex; align-items: center;
  padding: 4px 9px; border-radius: 7px;
  background: #f1e7d2; color: var(--ink);
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(184,138,69,.3);
}
.footer-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 12px; border-radius: 8px;
  border: 1px solid var(--line);
  background: #fffdf8;
  transition: border-color .2s ease;
}
.footer-back:hover { border-color: rgba(7,21,68,.3); color: var(--ink); }
.footer-back .lucide { width: 13px; height: 13px; stroke-width: 2.5; }

.footer-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.footer-nav a {
  color: var(--ink-2);
  transition: color .2s ease;
}
.footer-nav a:hover { color: var(--ink); }
.footer-nav .sep { color: var(--soft); opacity: .5; }

.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  display: grid; place-items: center;
  width: 36px; height: 36px; border-radius: var(--ir-radius-chip);
  background: #fffdf8;
  border: 1px solid var(--ir-line);
  color: var(--purple);
  transition: transform .2s ease, border-color .2s ease;
}
.footer-socials a:hover { transform: translateY(-2px); border-color: rgba(7,21,68,.3); }
.footer-socials a svg { width: 16px; height: 16px; display: block; }

.footer-legal, .footer-credit {
  font-size: 12.5px; color: var(--soft); line-height: 1.45;
}
.footer-legal a { color: var(--soft); text-decoration: none; border-bottom: 1px dotted transparent; }
.footer-legal a:hover { border-bottom-color: var(--soft); }
.footer-legal .sep { opacity: .5; }

@media (max-width: 720px) {
  .footer-row { gap: 14px; }
  .footer-nav { font-size: 13px; }
}

/* ============== Request Subject Modal ============== */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 9, 18, .56);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 24px;
  animation: modalFade .25s ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
  position: relative;
  width: min(520px, 100%);
  max-height: 92vh; overflow: auto;
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.94));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 32px 28px;
  box-shadow: 0 50px 120px rgba(8,9,18,.34), 0 14px 36px rgba(8,9,18,.18), inset 0 1px 0 rgba(255,255,255,.95);
  animation: modalRise .3s cubic-bezier(.18,.89,.32,1.28);
}
@keyframes modalRise { from { transform: translateY(20px) scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }

.modal-card .eyebrow { display: inline-block; margin-bottom: 12px; }
.modal-h {
  font-size: 24px; font-weight: 800; letter-spacing: -.028em; line-height: 1.16;
  margin: 0 0 10px;
}
.modal-body {
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
  margin: 0 0 14px;
}
.modal-proof {
  font-size: 10.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--soft);
  padding: 10px 12px; border-radius: 8px;
  background: var(--purple-soft);
  border: 1px solid rgba(78,73,166,.08);
  margin: 0 0 22px;
  line-height: 1.4;
}
.modal-proof b { color: var(--purple); }

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: transparent; border: 0;
  color: var(--soft);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.modal-close:hover { background: var(--line); color: var(--ink); }
.modal-close .lucide { width: 18px; height: 18px; stroke-width: 2.4; }

.modal-form { display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field > span {
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  color: var(--ink); display: flex; align-items: center; gap: 6px;
}
.field > span em {
  font-style: normal; color: var(--soft); font-weight: 500;
  letter-spacing: 0; font-size: 11px;
  text-transform: uppercase; letter-spacing: .12em;
}
.field input, .field textarea {
  font-family: var(--font-sans);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fffdf8;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(78,73,166,.12);
}

.modal-submit { width: 100%; height: 54px; margin-top: 6px; }

.modal-confirm { text-align: center; padding: 12px 0 4px; }
.confirm-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--purple-soft);
  display: grid; place-items: center;
  color: var(--purple);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 28px rgba(78,73,166,.18);
}
.confirm-icon .lucide { width: 30px; height: 30px; stroke-width: 3; }
.modal-confirm .btn { margin-top: 14px; }

/* ============== Apply Flow Modal ============== */
.apply-backdrop {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(8, 9, 18, .58);
  backdrop-filter: blur(10px);
  display: grid; place-items: center;
  padding: 32px;
  animation: modalFade .25s ease;
}
.apply-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: linear-gradient(180deg, #fffdf8, #fafaf6);
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-card-lg);
  box-shadow: var(--ir-shadow-modal);
  padding: 36px 38px 32px;
  animation: modalRise .3s cubic-bezier(.18,.89,.32,1.28);
  transition: width .25s ease;
}
.apf-modal-wide {
  width: min(720px, 100%);
}
.apf-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: var(--ir-radius-chip);
  background: transparent; border: 1px solid var(--ir-line);
  display: grid; place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
  z-index: 4;
}
.apf-close:hover { background: #fffdf8; color: var(--ink); border-color: var(--line-strong); }
.apf-close .lucide { width: 16px; height: 16px; stroke-width: 2.4; }

.apf-step-head { margin-bottom: 28px; display: flex; align-items: flex-start; gap: 12px; }
.apf-step-head .eyebrow { display: block; margin-bottom: 8px; }
.apf-h {
  font-size: 26px; font-weight: 800; letter-spacing: -.032em; line-height: 1.1;
  margin: 0;
}
.apf-intro {
  margin-top: 12px; color: var(--muted); font-size: 14px; line-height: 1.5;
}
.apf-back {
  flex: none;
  width: 36px; height: 36px; border-radius: var(--ir-radius-chip);
  background: transparent; border: 1px solid var(--ir-line);
  display: grid; place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  margin-top: 2px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.apf-back:hover { background: #fffdf8; color: var(--ink); border-color: var(--line-strong); }
.apf-back .lucide { width: 16px; height: 16px; stroke-width: 2.4; }

.apf-fields { display: grid; gap: 22px; }
.apf-field { display: grid; gap: 8px; }
.apf-label {
  display: flex; gap: 8px; align-items: baseline;
  font-size: 12px; font-weight: 800; color: var(--ink);
  letter-spacing: -.005em;
}
.apf-label em {
  font-style: normal; color: var(--soft);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
}

.apf-field input[type="text"],
.apf-field input[type="email"],
.apf-field textarea,
.apf-field select {
  font-family: var(--font-sans);
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ir-line);
  border-radius: 10px;
  background: #fffdf8;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
  resize: vertical;
}
.apf-field input:focus,
.apf-field textarea:focus,
.apf-field select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-soft);
}
.apf-field textarea { line-height: 1.5; min-height: 76px; }

.apf-select-wrap {
  position: relative;
}
.apf-select-wrap select {
  appearance: none; -webkit-appearance: none;
  padding-right: 38px;
  cursor: pointer;
}
.apf-select-wrap .lucide {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; color: var(--soft); stroke-width: 2;
  pointer-events: none;
}

/* Radio rows */
.apf-radio {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.apf-radio-stack { flex-direction: column; }
.apf-radio-row { flex-direction: row; }

.apf-radio-opt {
  position: relative;
  flex: 1 1 0;
  min-width: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--ir-line);
  background: #fffdf8;
  font-size: 13.5px; font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  text-align: center;
}
.apf-radio-stack .apf-radio-opt {
  flex: none;
  justify-content: flex-start;
  text-align: left;
}
.apf-radio-opt input {
  position: absolute;
  opacity: 0; pointer-events: none;
}
.apf-radio-opt:hover { border-color: var(--line-strong); color: var(--ink); }
.apf-radio-opt.checked {
  border-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple);
  box-shadow: 0 0 0 3px rgba(78,73,166,.08);
  font-weight: 800;
}
.apf-radio-stack .apf-radio-opt.checked::before {
  content: "●"; margin-right: 8px; font-size: 9px;
}

.apf-error {
  margin: 14px 0 0;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(232,69,69,.07);
  border: 1px solid rgba(232,69,69,.22);
  color: var(--red);
  font-size: 13px; font-weight: 700;
  line-height: 1.4;
}

.apf-submit {
  width: 100%; height: 56px;
  margin-top: 24px;
  font-size: 15px;
}
.apf-microcopy {
  margin: 12px 0 0;
  font-size: 12px; color: var(--soft); font-weight: 500;
  text-align: center;
  letter-spacing: -.005em;
}

/* ---- Step 3 — confirmation ---- */
.apf-step-confirm { text-align: center; padding: 6px 0 4px; }
.apf-confirm-icon {
  width: 64px; height: 64px; border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--purple-soft);
  display: grid; place-items: center;
  color: var(--purple);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 12px 28px rgba(78,73,166,.16);
}
.apf-confirm-icon .lucide { width: 30px; height: 30px; stroke-width: 3; }
.apf-step-confirm .apf-h { margin: 0 0 12px; }
.apf-confirm-body {
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
  max-width: 420px; margin: 0 auto 28px;
}

.apf-confirm-email-note {
  font-size: 13px; line-height: 1.55; color: var(--ink-2);
  max-width: 420px; margin: -16px auto 28px;
  padding: 10px 14px;
  background: rgba(26,22,12,.04);
  border-radius: 6px;
  border: 1px solid rgba(26,22,12,.08);
}

.apf-while-you-wait {
  text-align: left;
  padding: 24px 22px;
  border-radius: var(--ir-radius-inner);
  background: linear-gradient(180deg, #f6f3ec, #fdfcf8);
  border: 1px solid var(--ir-line);
  margin: 0 0 22px;
}
.apf-while-you-wait .eyebrow {
  display: block;
  margin-bottom: 14px;
}
.apf-wyw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.apf-wyw-tile {
  position: relative;
  display: flex; flex-direction: column; gap: 2px;
  padding: 14px 16px;
  border-radius: 10px;
  background: #fffdf8;
  border: 1px solid var(--ir-line);
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, transform .18s ease;
}
.apf-wyw-tile:hover { transform: translateY(-2px); border-color: var(--purple); }
.apf-wyw-label {
  font-size: 10px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--soft);
}
.apf-wyw-title {
  font-size: 14px; font-weight: 800; color: var(--ink);
  letter-spacing: -.012em;
}
.apf-wyw-arrow {
  position: absolute; right: 12px; top: 14px;
  color: var(--purple);
}
.apf-wyw-arrow .lucide { width: 13px; height: 13px; stroke-width: 2.4; }

.apf-close-btn {
  width: 100%; height: 50px;
  font-size: 14px;
}

/* ---- Mobile: full-screen ---- */
@media (max-width: 720px) {
  .apply-backdrop { padding: 0; }
  .apply-modal {
    width: 100%;
    height: 100vh; max-height: 100vh;
    border-radius: 0;
    border: 0;
    padding: 64px 22px 36px;
  }
  .apf-h { font-size: 22px; }
  .apf-radio-row { flex-direction: row; }
  .apf-radio-opt { font-size: 13px; padding: 10px 12px; }
  .apf-wyw-grid { grid-template-columns: 1fr; }
}

/* ============== Section 2.5 — Coach dossier drawer ============== */
.dossier-backdrop {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(8, 9, 18, .48);
  backdrop-filter: blur(6px);
  display: flex; justify-content: flex-end;
  animation: modalFade .25s ease;
}
.dossier-drawer {
  width: min(560px, 100%); height: 100%;
  background: linear-gradient(180deg, #fdfcf8, #f6f3ec);
  border-left: 1px solid var(--ir-line);
  box-shadow: -40px 0 80px rgba(8,9,18,.18), inset 1px 0 0 rgba(255,255,255,.7);
  overflow-y: auto;
  padding: 32px 38px 48px;
  animation: drawerSlide .35s cubic-bezier(.22, .85, .35, 1);
}
@keyframes drawerSlide { from { transform: translateX(60px); opacity: 0; } to { transform: none; opacity: 1; } }

.dossier-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 28px;
}
.dossier-eyebrow {
  font-size: 10.5px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  color: var(--purple);
}
.dossier-close {
  width: 36px; height: 36px; border-radius: var(--ir-radius-chip);
  background: transparent; border: 1px solid var(--ir-line);
  display: grid; place-items: center;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.dossier-close:hover { background: #fffdf8; color: var(--ink); border-color: var(--line-strong); }
.dossier-close .lucide { width: 16px; height: 16px; stroke-width: 2.4; }

.dossier-portrait-row {
  display: grid; grid-template-columns: 110px 1fr; gap: 22px;
  align-items: center;
  padding-bottom: 28px; margin-bottom: 28px;
  border-bottom: 1px solid var(--ir-line);
}
.dossier-portrait {
  width: 110px; height: 110px;
  border-radius: var(--ir-radius-inner); overflow: hidden;
  background: linear-gradient(135deg, #ece8e0, #d6d1c6);
  box-shadow: 0 12px 30px rgba(28,22,12,.1), inset 0 1px 0 rgba(255,255,255,.7);
}
.dossier-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dossier-portrait .placeholder { width: 100%; height: 100%; border-radius: var(--ir-radius-inner); }
.dossier-name-block { display: flex; flex-direction: column; gap: 4px; }
.dossier-score {
  display: inline-flex; align-items: center;
  width: fit-content; padding: 4px 10px; border-radius: 999px;
  background: linear-gradient(180deg, var(--purple-2), var(--purple-3));
  color: #fffdf8; font-weight: 800; font-size: 12px; letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
  box-shadow: 0 6px 14px rgba(78,73,166,.2);
}
.dossier-name {
  font-size: 28px; font-weight: 800; letter-spacing: -.032em; line-height: 1.06;
  margin: 0;
}
.dossier-title {
  font-size: 12.5px; color: var(--soft); margin: 0;
  font-weight: 500; line-height: 1.4;
}

.dossier-field { margin-bottom: 28px; }
.dossier-field-label {
  font-size: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--soft); margin-bottom: 10px;
}
.dossier-field-body {
  font-size: 14px; line-height: 1.55; color: var(--ink-2);
}
.dossier-line {
  font-size: 15px; font-weight: 700; color: var(--ink); margin: 0;
  letter-spacing: -.012em;
}

.dossier-grades {
  width: 100%; border-collapse: collapse;
  background: #fffdf8; border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-inner); overflow: hidden;
  box-shadow: 0 2px 6px rgba(28,22,12,.03);
}
.dossier-grades td {
  padding: 10px 14px;
  border-top: 1px solid var(--ir-line-soft);
  font-size: 13.5px;
  font-feature-settings: "ss01" on;
}
.dossier-grades tr:first-child td { border-top: 0; }
.dossier-grades td:first-child {
  color: var(--ink-2); font-weight: 600;
  letter-spacing: -.005em;
}
.dossier-grades td:last-child {
  text-align: right; color: var(--purple); font-weight: 800;
  width: 42px; font-variant-numeric: tabular-nums;
}
.dossier-grades td:last-child b { font-size: 14.5px; }
.dossier-bonus {
  margin-top: 12px;
  font-size: 12px; color: var(--ink-2); font-weight: 600;
  display: flex; flex-wrap: wrap; gap: 4px; align-items: baseline;
}
.dossier-bonus .sep { color: var(--line-strong); margin: 0 6px; }

.dossier-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.dossier-list li {
  position: relative; padding-left: 14px;
  font-size: 14px; line-height: 1.5; color: var(--ink-2); font-weight: 500;
}
.dossier-list li::before {
  content: ""; position: absolute; left: 0; top: .65em;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--purple);
}
.dossier-results li::before { background: var(--green); }

.dossier-body {
  font-size: 14px; line-height: 1.6; color: var(--ink-2); font-weight: 500;
  margin: 0;
}
.dossier-quote {
  font-size: 15px; line-height: 1.5; color: var(--ink);
  font-style: italic; font-weight: 600; letter-spacing: -.014em;
  margin: 0;
  padding-left: 18px;
  border-left: 2px solid var(--purple);
}

.dossier-foot {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--ir-line);
}
.dossier-foot .btn { width: 100%; height: 52px; font-size: 14px; }

@media (max-width: 560px) {
  .dossier-drawer { padding: 24px 22px 36px; }
  .dossier-portrait-row { grid-template-columns: 88px 1fr; }
  .dossier-portrait { width: 88px; height: 88px; }
}

/* ============== Section 2.7 — Inside the programme (cinematic) ============== */
.inside-programme-section { padding: 40px 0 80px; }
.programme-stage { display: grid; gap: 22px; }

.loom-embed-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--ir-radius-card-lg);
  background: #111;
}
.loom-embed-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: var(--ir-radius-card-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 32%, #2a1f48 0%, transparent 50%),
    radial-gradient(circle at 78% 70%, #3b1f5e 0%, transparent 55%),
    linear-gradient(160deg, #14101f 0%, #1d162e 60%, #100c19 100%);
  border: 1px solid rgba(255,255,255,.04);
  box-shadow:
    0 40px 100px rgba(8, 9, 18, .35),
    0 8px 28px rgba(8, 9, 18, .2),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.vf-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .08; mix-blend-mode: overlay; pointer-events: none;
}
.vf-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 60%, transparent 40%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

/* Mocked still content inside the video */
.vs-content { position: absolute; inset: 0; }

/* Two-paragraph comparison still */
.vs-comparison {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%);
  display: flex; gap: 16px; align-items: flex-start;
  width: 70%;
}
.vs-para-card {
  flex: 1;
  padding: 14px 16px 16px;
  border-radius: var(--ir-radius-inner);
  background: linear-gradient(180deg, rgba(255,253,247,.97), rgba(244,240,231,.94));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 6px 16px rgba(0,0,0,.2);
}
.vs-para-card:first-child { transform: rotate(-1.2deg); }
.vs-para-card:last-child  { transform: rotate(1.4deg); }
.vs-para-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px dashed rgba(26,22,12,.18);
}
.vs-para-label {
  font-size: 9px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--soft);
}
.vs-para-score {
  display: inline-grid; place-items: center;
  min-width: 24px; padding: 2px 7px; border-radius: 5px;
  font-weight: 800; font-size: 13px;
}
.vs-para-score.score-five {
  background: rgba(235,140,40,.12); color: #b85e10;
  border: 1px solid rgba(184,94,16,.25);
}
.vs-para-score.score-seven {
  background: var(--purple-soft); color: var(--purple);
  border: 1px solid rgba(78,73,166,.2);
}
.vs-caption {
  position: absolute;
  left: 50%; bottom: 16%;
  transform: translateX(-50%);
  white-space: nowrap;
  margin: 0;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* Breakdown link row below the video frame */
.vf-breakdown-row {
  display: flex; flex-direction: column; gap: 6px;
}
.vf-breakdown-lead {
  margin: 0;
  font-size: 14px; color: var(--soft); font-weight: 500; line-height: 1.5;
}
.vf-breakdown-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--purple);
  text-decoration: none;
  border-bottom: 1px dotted var(--purple); padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.vf-breakdown-link:hover { color: var(--purple-3); border-bottom-color: var(--purple-3); }
.vf-breakdown-link .lucide { width: 14px; height: 14px; stroke-width: 2.4; }
.vs-doc {
  position: absolute;
  left: 6%; top: 14%;
  width: 38%;
  padding: 18px 20px 16px;
  border-radius: var(--ir-radius-inner);
  background: linear-gradient(180deg, rgba(255,253,247,.97), rgba(244,240,231,.94));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 6px 16px rgba(0,0,0,.2);
  transform: rotate(-1.6deg);
  color: var(--ink);
}
.vs-doc-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px; border-bottom: 1px dashed rgba(26,22,12,.18);
}
.vs-doc-eyebrow {
  font-size: 9px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--soft);
}
.vs-doc-grade {
  display: inline-grid; place-items: center;
  min-width: 24px; padding: 2px 7px; border-radius: 5px;
  background: var(--purple-soft); color: var(--purple);
  font-weight: 800; font-size: 13px;
  border: 1px solid rgba(78,73,166,.2);
}
.vs-doc-lines { display: grid; gap: 8px; }
.vs-line {
  height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, rgba(26,22,12,.18), rgba(26,22,12,.07));
}
.vs-line.short { width: 60%; }
.vs-line.mid   { width: 82%; }
.vs-line.full  { width: 100%; }
.vs-line.hl {
  background: linear-gradient(90deg, rgba(255, 213, 64, .55), rgba(255, 213, 64, .15));
  height: 9px;
}
.vs-annotation {
  margin-top: 14px;
  font-size: 11px; line-height: 1.4; color: var(--purple);
  font-weight: 700; font-style: italic;
  display: flex; gap: 6px; align-items: flex-start;
}
.vs-annotation .vs-arrow { font-size: 14px; line-height: 1; }

.vs-comment {
  position: absolute;
  right: 6%; bottom: 16%;
  width: 32%;
  padding: 16px 18px 16px;
  border-radius: var(--ir-radius-inner);
  background: linear-gradient(180deg, rgba(28, 22, 38, .9), rgba(20, 16, 32, .85));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.92);
}
.vs-comment-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.vs-avatar {
  display: grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(180deg, var(--purple-2), var(--purple-3));
  font-size: 9.5px; font-weight: 800; color: #fffdf8; letter-spacing: -.01em;
}
.vs-comment-meta {
  font-size: 10.5px; font-weight: 700; letter-spacing: .04em;
  color: rgba(255,255,255,.62);
}
.vs-comment p {
  font-size: 12.5px; line-height: 1.5;
  margin: 0;
  font-weight: 500;
  color: rgba(255,255,255,.88);
}

.vs-transcript-chip {
  position: absolute;
  right: 6%; top: 14%;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 999px;
  background: rgba(8, 9, 18, .55);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
  font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.vs-tc-label { color: var(--purple); }
.vs-tc-time { font-variant-numeric: tabular-nums; color: rgba(255,255,255,.78); }

/* Elegant play button */
.vf-play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -54%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    0 8px 22px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.9);
  display: grid; place-items: center;
  color: var(--ink);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  z-index: 4;
}
.vf-play::before {
  /* halo */
  content: ""; position: absolute; inset: -8px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  animation: pulseHalo 3s ease-in-out infinite;
}
@keyframes pulseHalo {
  0%, 100% { opacity: .35; transform: scale(1); }
  50% { opacity: 0; transform: scale(1.14); }
}
.vf-play:hover { transform: translate(-50%, -54%) scale(1.04); }
.vf-play .lucide {
  width: 30px; height: 30px; stroke-width: 0; fill: var(--ink);
  margin-left: 4px;
}
.video-frame.playing .vf-play { opacity: 0.6; }
.video-frame.playing .vf-play .lucide { margin-left: 0; }

/* Chrome */
.vf-chrome {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.6));
  display: flex; flex-direction: column; gap: 10px;
  z-index: 3;
}
.vf-progress {
  height: 3px; border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.vf-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), #7a99e8);
  border-radius: 999px;
  transition: width .4s ease;
}
.vf-chrome-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.vf-time, .vf-runtime { font-variant-numeric: tabular-nums; }
.vf-divider { color: rgba(255,255,255,.35); }
.vf-label { color: rgba(255,255,255,.55); margin-left: auto; }

/* Mini proof cards below the video */
.programme-proof-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  margin-top: 4px;
}
.programme-proof {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #fffdf8, rgba(255,255,255,.92));
  border: 1px solid var(--ir-line);
  border-radius: var(--ir-radius-inner);
  box-shadow: var(--ir-shadow-card);
}
.pp-icon {
  flex: none;
  width: 36px; height: 36px;
  border-radius: var(--ir-radius-chip);
  background: var(--purple-soft);
  display: grid; place-items: center;
  color: var(--purple);
}
.pp-icon .lucide { width: 16px; height: 16px; stroke-width: 2.2; }
.pp-text { display: flex; flex-direction: column; }
.pp-text b {
  font-size: 13px; font-weight: 800; letter-spacing: -.01em; color: var(--ink);
  line-height: 1.2;
}
.pp-text span {
  font-size: 11px; color: var(--soft); font-weight: 600;
  line-height: 1.35;
  margin-top: 2px;
}

@media (max-width: 1080px) {
  .programme-proof-strip { grid-template-columns: repeat(2, 1fr); }
  .vs-doc { width: 46%; }
  .vs-comment { width: 40%; }
  .vf-play { width: 72px; height: 72px; }
  .vf-play .lucide { width: 26px; height: 26px; }
}
@media (max-width: 720px) {
  .programme-proof-strip { grid-template-columns: 1fr; }
  .vs-doc, .vs-comment, .vs-transcript-chip { display: none; }
  .vs-comparison, .vs-caption { display: none; }
  .vf-play { width: 60px; height: 60px; }
  .vf-play .lucide { width: 22px; height: 22px; }
}

/* ====================================================================
   MOBILE — Hero only (≤ 767px)
   Scoped strictly to .intensives .hero, .hero-grid, .hero-* and the
   hero proof strip (.hero-proof-tower and its children). Appended at
   end-of-file so cascade order beats earlier @media (max-width: 720px)
   rules that touch the same selectors.
   No rules in this block affect any other section of the page.
   ==================================================================== */
@media (max-width: 767px) {

  /* --- Section padding + container gutters --- */
  .intensives .hero {
    padding: 80px 0 12px;
  }
  .intensives .hero-copy .eyebrow { display: none; }
  .intensives .hero .wide,
  .intensives .section.proof-section .wide {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  /* --- Hero grid: single column, copy only --- */
  .intensives .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }
  .intensives .hero-copy   { order: 1; }
  .intensives .hero-visual { display: none; }

  /* Rescale orbits + floating cards to fit the smaller stage.
     Clipping at edges is OK; the composition keeps its impact. */
  .intensives .orbit.a { width: 480px; height: 320px; left: -50px; top: -10px; }
  .intensives .orbit.b { width: 380px; height: 380px; right: -50px; top: -30px; }

  .draft-doc {
    left: 12px; top: 18px;
    width: 62%;
    height: calc(40vh - 60px);
    min-height: 220px;
    max-height: 310px;
    padding: 18px 20px 22px;
  }
  .draft-doc .doc-title { font-size: 14.5px; }
  .draft-doc .doc-lines { gap: 10px; }
  .draft-doc .doc-line { height: 6px; }
  .draft-doc .doc-redmark { right: 14px; top: 124px; }

  .supervisor-msg {
    right: 6px; top: 26px;
    width: 58%;
    max-width: 240px;
    padding: 14px 16px 14px;
  }
  .supervisor-msg .msg-body { font-size: 14px; }

  .deadline-stamp {
    right: 4px;
    bottom: 12px;
    width: 138px;
    min-height: 124px;
    padding: 14px 16px 14px;
    transform: rotate(3deg);
  }
  .deadline-stamp .ds-days { font-size: 48px; }
  .deadline-stamp .ds-unit { font-size: 11px; }
  .deadline-stamp .ds-eyebrow { font-size: 9.5px; }
  .deadline-stamp .ds-context { font-size: 10px; }

  /* --- Typography --- */
  .intensives .hero h1 {
    font-size: 36px;
    line-height: 1.05;
    letter-spacing: -.034em;
    margin: 18px 0 16px;
    max-width: 100%;
  }
  .intensives .hero-copy .eyebrow { font-size: 12px; }
  .intensives .hero-copy .lede {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 22px;
    max-width: 100%;
  }
  .intensives .hero-microline {
    font-size: 13px;
    margin: 14px 0 0;
    max-width: 100%;
  }

  /* --- CTAs: stack full-width, 12px gap --- */
  .intensives .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin: 0;
  }
  .intensives .hero-actions .btn {
    width: 100%;
    height: 54px;
    padding: 0 22px;
    font-size: 14.5px;
  }

  /* --- Proof strip --- */
  .intensives .section.proof-section { padding: 0 0 8px; }

  .hero-proof-tower { gap: 10px; }

  .hero-proof-primary { padding: 18px 18px; }
  .hpp-content { gap: 8px; flex-direction: column; align-items: flex-start; }
  .hpp-headline { gap: 7px; }
  .hpp-mult,
  .hpp-noun { font-size: 16px; }
  .hpp-score { font-size: 22px; }
  .hpp-meta { font-size: 12.5px; line-height: 1.45; }

  /* Secondary tiles → label above value, full-width rows */
  .hero-proof-facts {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  /* 3× check badge */
  .hpp-check-badge {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(78,73,166, .08);
    border: 1px solid rgba(78,73,166, .2);
    color: var(--purple);
    align-self: center;
  }
  .hpp-check-badge .lucide { width: 18px; height: 18px; stroke-width: 2; }

  /* Adjust primary block to sit alongside the badge */
  .hero-proof-primary { display: flex; align-items: center; gap: 16px; }

  .hpf-tile {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    gap: 14px;
  }
  .hpf-icon-badge {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(78,73,166, .08);
    border: 1px solid rgba(78,73,166, .2);
    color: var(--purple);
  }
  .hpf-icon-badge .lucide { width: 18px; height: 18px; stroke-width: 2; }
  .hpf-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 3px;
  }
  .hpf-label { font-size: 8.5px; letter-spacing: .18em; }
  .hpf-value { font-size: 16px; white-space: nowrap; }

  /* ───────── FAQ answer — flush-left at mobile to match question ───────── */
  .faq-q { padding-left: 0; padding-right: 0; }
  .faq-q-text { font-size: 16px; line-height: 1.3; }
  .faq-a { padding: 0 8px 20px 0; }
  .faq-a p { font-size: 14.5px; line-height: 1.6; max-width: 100%; }

  /* ───────── Coach-trio proof strip — full-width stack ─────────
     The ProofStrip component sets grid-template-columns INLINE via
     style={{ gridTemplateColumns: ... }}, so we need !important here
     to win against that inline rule at mobile. */
  .intensives .proof-strip {
    grid-template-columns: 1fr !important;
    padding: 8px;
    gap: 0;
    min-height: 0;
  }
  .intensives .proof-strip > div {
    grid-template-columns: 44px 1fr;
    padding: 14px 14px;
    border-left: 0;
    border-top: 1px solid rgba(26,22,12,.10);
    min-height: 56px;
  }
  .intensives .proof-strip > div:first-child { border-top: 0; }
  .intensives .proof-strip > div:nth-child(3) { border-left: 0; }
  .intensives .proof-strip strong { font-size: 15px; letter-spacing: -.022em; }
  .intensives .proof-strip span { font-size: 12.5px; }
  .intensives .proof-strip .icon { width: 32px; height: 32px; }

  /* By default ir-context-mobile is hidden; only show inside .intake-row at mobile */
  .ir-context-mobile { display: none; }

  /* ───────── Pricing matrix — separate the two blocks ───────── */
  .price-matrix {
    grid-template-columns: 1fr;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    gap: 20px;
  }
  .price-col.launch,
  .price-col.full {
    border-radius: var(--ir-radius-inner);
    padding: 22px 22px;
  }
  .price-col.launch {
    border: 1px solid rgba(78,73,166,.18);
    border-right: 0;
    border-bottom: 0;
    box-shadow: 0 8px 22px rgba(78,73,166,.10);
  }
  .price-col.full {
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    box-shadow: var(--ir-shadow-card);
  }
  .price-note {
    margin: 4px 4px 0;
    padding: 0;
  }

  /* ───────── Intake table — separate cards, larger pill, single-line context ───────── */
  .intake-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .intake-top-strip {
    border-radius: var(--ir-radius-inner);
    padding: 12px 18px;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.4;
    font-size: 10.5px;
    letter-spacing: .2em;
  }
  .intake-top-strip .divider { display: inline-block; margin: 0 6px; }
  .intake-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
  }
  .intake-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 18px;
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    border-radius: var(--ir-radius-inner);
    box-shadow: var(--ir-shadow-card);
  }
  .intake-row:first-child { border-top: 1px solid var(--ir-line); }

  /* Title slightly larger at mobile to anchor each card */
  .intake-row .ir-subject {
    font-size: 18px;
    line-height: 1.2;
  }

  /* OPEN / FILLING / FINAL pill bumped */
  .intake-row .status-pill {
    font-size: 11.5px;
    padding: 7px 13px;
    letter-spacing: .24em;
    font-weight: 800;
    align-self: flex-start;
  }

  /* "Cohort of 12 · Apply by Aug 1, 2026" — keep on one line */
  .intake-row .ir-context {
    font-size: 12.5px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Component row: quieter at mobile — neutral cream bg, no emphasis, simpler subline */
  .intake-row.component-row-tint {
    background: linear-gradient(180deg, #fbfaf4, #fdfcf8);
    border-color: var(--ir-line);
    box-shadow: var(--ir-shadow-card);
  }
  .intake-row.component-row-tint .ir-meta { display: none; }
  .intake-row.component-row-tint .ir-context-emphasis { display: none; }
  .intake-row.component-row-tint .ir-context-mobile {
    display: block;
    font-size: 12.5px;
    color: var(--soft);
    font-weight: 600;
    letter-spacing: -.005em;
    line-height: 1.4;
  }

  .intake-row .ir-apply {
    justify-self: flex-start;
    margin-top: 2px;
  }

  .intake-footnote {
    margin-top: 16px;
    font-size: 12px;
    text-align: left;
  }
}

/* ─── Apply flow additions ────────────────────────────────────────── */

.apf-sublabel {
  margin: -4px 0 0;
  font-size: 12px; color: var(--soft); line-height: 1.45;
}

.apf-date-row {
  display: flex; gap: 8px; align-items: center;
}
.apf-date-row .apf-select-wrap { flex: 1; min-width: 0; }
.apf-date-row .apf-date-day  { flex: 0 0 80px; }
.apf-date-row .apf-date-year { flex: 0 0 100px; }

.apf-multiselect {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.apf-chip {
  padding: 8px 14px;
  border: 1px solid var(--ir-line);
  border-radius: 20px;
  background: #fffdf8;
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
}
.apf-chip:hover:not(.disabled) { border-color: var(--line-strong); }
.apf-chip.selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #fffdf8;
}
.apf-chip.disabled {
  opacity: .38;
  cursor: default;
}

.apf-cal-fallback {
  margin: 12px 0 0;
  font-size: 13px; color: var(--soft); text-align: center;
}
.apf-cal-fallback a { color: var(--purple); }

.apf-cal-note {
  margin: 8px 0 0;
  font-size: 12px; color: var(--soft); text-align: center; font-style: italic;
}

/* ─── Component intensive additions ──────────────────────────────── */

.ci-pick-line {
  font-size: 15px; font-weight: 600; color: var(--ink);
  letter-spacing: -.01em; line-height: 1.45;
  margin: 16px 0 0;
}

.ci-call-note {
  margin: 12px 0 0;
  font-size: 13.5px; color: var(--soft); font-style: italic; line-height: 1.5;
}

/* ─── Guarantee page: measure paragraph ──────────────────────────── */

.gp-prod-measure {
  font-size: 14px; color: var(--ink-2); line-height: 1.6; margin: 8px 0 0;
}

/* ─── Programme match nudge (below product CTAs) ─────────────────── */

.programme-match-nudge {
  margin: 12px 0 0;
  font-size: 12.5px;
}
.programme-match-nudge a {
  color: var(--soft);
  text-decoration: none;
  transition: color .15s;
}
.programme-match-nudge a:hover { color: var(--purple); }

/* ─── Still not sure section ─────────────────────────────────────── */

.still-not-sure-section {
  background: var(--bg-wash, #f7f6f2);
  border-top: 1px solid var(--ir-line);
  border-bottom: 1px solid var(--ir-line);
}
.still-not-sure-inner {
  max-width: 560px;
  padding: 64px 0;
  text-align: center;
  margin: 0 auto;
}
.still-not-sure-heading {
  font-size: 32px; font-weight: 800; letter-spacing: -.03em;
  color: var(--ink); margin: 0 0 14px;
}
.still-not-sure-body {
  font-size: 16px; color: var(--ink-2); line-height: 1.55;
  margin: 0 0 28px;
}
.still-not-sure-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700;
  font-family: var(--font-sans);
  color: var(--purple);
  background: none; border: none;
  border-bottom: 1px solid rgba(108,63,192,.3);
  padding: 0 0 2px;
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.still-not-sure-cta:hover {
  color: var(--purple-dark, #5230b0);
  border-color: var(--purple);
}
@media (max-width: 680px) {
  .still-not-sure-inner { padding: 48px 0; }
  .still-not-sure-heading { font-size: 26px; }
}

/* ====================================================================
   MOBILE-ONLY PASS — rules added after desktop freeze.
   All rules ≤720px. Desktop (≥721px) untouched.
   ==================================================================== */

@media (max-width: 720px) {

  /* ── Container: 48px dead margins → 20px gutters (fixes every section) ── */
  .wide, .mid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* ── Headings ── */
  .intensives-section-head h2 { font-size: 26px; }
  .diff-left h2               { font-size: 26px; }
  .g-heading                  { font-size: 26px; }
  .final-h                    { font-size: 28px; }

  /* ── Purple sections: gutters + radius ── */
  .guarantee-section {
    margin: 0 16px;
    border-radius: 20px;
    width: auto; /* override width:100% from .section — avoids 32px right overflow */
  }

  /* ── into-products-section: custom inner div, not .wide, needs its own gutters ── */
  .into-products-inner { padding-left: 20px; padding-right: 20px; }

  /* ── Reduce over-large inter-section gaps ── */
  .coaches-section          { padding-top: 14px; padding-bottom: 13px; }
  .differentiator-section   { padding-top: 15px; padding-bottom: 14px; }
  .inside-programme-section { padding-top: 4px; padding-bottom: 44px; }
  .founders-proof-section   { padding: 44px 0 52px; }
  .product-section          { padding: 36px 0; }
  .coaching-section         { padding: 24px 0 40px; }
  .parents-section          { padding: 36px 0 44px; }
  .faq-section              { padding: 36px 0 44px; }
  .intake-section           { padding: 36px 0 28px; }
  .into-products-section    { padding: 32px 0 40px; }
  .email-capture-section    { padding: 8px 0 36px; }

  /* ── Final CTA: 96px top void → compact centred block ── */
  .final-cta-section  { padding: 44px 0 28px; }
  .final-h            { margin-bottom: 14px; }
  .final-restate      { margin-bottom: 18px; }

  /* ── Still not sure: tighten internal padding ── */
  .still-not-sure-inner { padding: 28px 0; }

  /* ── Product label pill: allow graceful wrap ── */
  .product-label {
    font-size: 10px;
    letter-spacing: .10em;
    line-height: 1.5;
  }

  /* ── ci-capacity callout: reduce to supporting-note scale ── */
  .ci-capacity      { padding: 16px 18px; }
  .ci-capacity-line { font-size: 15px; line-height: 1.45; }

  /* ── Tap targets ── */
  .nav.intensives-nav .btn.join { height: 44px; min-height: 44px; }
  .coach-view-results           { min-height: 44px; }
  .coach-learn-more             { min-height: 44px; display: inline-flex; align-items: center; padding: 12px 0; }
  .ir-apply                     { min-height: 44px; }
  .iots-apply                   { min-height: 44px; display: inline-flex; align-items: center; }
  .apf-close                    { width: 44px; height: 44px; top: 14px; right: 14px; }
  .modal-close                  { width: 44px; height: 44px; }
  .footer-socials a             { width: 44px; height: 44px; }

  /* ── iOS zoom prevention: all inputs ≥16px ── */
  .email-form input                              { font-size: 16px; }
  .apf-field input[type="text"],
  .apf-field input[type="email"],
  .apf-field textarea,
  .apf-field select                              { font-size: 16px; }
  .field input,
  .field textarea                                { font-size: 16px; }

  /* ── Cal.com embed: 760px fixed height → responsive ── */
  #cal-embed-1to1,
  #cal-embed-not-sure                            { height: min(520px, 60vh) !important; }

  /* ── Cal fallback link: bigger tap target ── */
  .apf-cal-fallback   { font-size: 14px; }
  .apf-cal-fallback a { display: inline-block; padding: 8px 0; }

  /* ── Mobile hero restructure ── */
  /* Hide both lede variants — headline flows directly into video */
  .intensives .hero-copy .lede { display: none; }

  /* Hide hero buttons and microline — video + CTA below takes over */
  .intensives .hero-actions  { display: none !important; }
  .intensives .hero-microline { display: none; }

  /* Hide entire video section header — eyebrow, h2, standfirst all gone on mobile */
  .inside-programme-section .section-head { display: none; }

  /* Condense under-video text: hide long sentence + desktop link, show quiet mobile link */
  .vf-breakdown-lead    { display: none; }
  .vf-breakdown-link    { display: none; }
  .vf-breakdown-link-mobile {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    color: var(--purple);
    text-decoration: none;
    border-bottom: none;
  }
  .vf-breakdown-link-mobile .lucide { width: 12px; height: 12px; stroke-width: 2.4; vertical-align: -1px; }

  /* Pull breakdown link tight under the video — collapse the grid gap */
  .inside-programme-section .programme-stage { gap: 0; }
  .inside-programme-section .vf-breakdown-row { margin-top: 8px; }

  /* Small eyebrow label above the video on mobile */
  .vf-mobile-eyebrow {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--purple);
  }

  /* Proof strip: desktop version hidden, mobile duplicate shown */
  .desktop-hero-proof { display: none; }
  .mobile-hero-proof  { display: block; }

}

/* ============================================================
   EthanStory — desktop-only two-column redesign
   Base (no media query): mobile tree visible, desktop tree hidden.
   ≥900px: flip — desktop tree visible, mobile tree hidden.
   All es-* classes are desktop-only and scoped inside @media.
   ============================================================ */

/* Default: show mobile tree, hide desktop tree */
.es-mobile  { display: block; }
.es-desktop { display: none; }

@media (min-width: 900px) {

  /* Swap trees */
  .es-mobile  { display: none; }

  /* ── Outer container: full-width header then two columns ── */
  .es-desktop {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  /* Full-width header */
  .es-full-header {
    text-align: left;
  }
  .es-full-header .eyebrow { display: inline-block; margin-bottom: 14px; }
  .es-heading { font-size: 50px !important; }
  .es-subheading { margin: 14px 0 0 !important; text-align: left; max-width: 680px !important; }

  /* ── Two-column grid (score cards + evidence) ── */
  .es-cols {
    display: grid;
    grid-template-columns: minmax(0, 45fr) minmax(0, 55fr);
    gap: 52px;
    align-items: start;
  }

  /* ── LEFT column ── */
  .es-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  /* Score cards — 2-up grid */
  .es-score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .es-score-card {
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    border-radius: var(--ir-radius-card);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--ir-shadow-card);
  }
  .es-score-card-accent {
    background: rgba(78,73,166,.05);
    border-color: rgba(78,73,166,.2);
  }
  .es-score-top {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .es-score-label {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--soft);
  }
  .es-score-frac {
    display: flex;
    align-items: baseline;
    gap: 3px;
    line-height: 1;
  }
  .es-frac-num {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    color: var(--ink-2);
    font-variant-numeric: tabular-nums;
  }
  .es-frac-denom {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -.02em;
    color: rgba(26,22,12,.35);
  }
  .es-score-frac-purple .es-frac-num  { color: var(--purple); text-shadow: 0 2px 20px rgba(78,73,166,.18); }
  .es-score-frac-purple .es-frac-denom { color: rgba(78,73,166,.45); }
  .es-score-caption {
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--ink-2);
    font-weight: 500;
    letter-spacing: -.006em;
    margin: 0;
  }

  /* Criterion table */
  .es-criteria {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .es-criteria-head {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--soft);
    margin: 0 0 3px;
  }
  .es-criterion-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    border-radius: 8px;
  }
  .es-crit-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--purple);
    flex-shrink: 0;
  }
  .es-crit-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .es-crit-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -.006em;
    line-height: 1.25;
  }
  .es-crit-note {
    font-size: 11px;
    font-weight: 500;
    color: var(--soft);
    line-height: 1.3;
    letter-spacing: -.003em;
  }
  .es-crit-score {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
  }
  .es-crit-before {
    font-size: 12px;
    font-weight: 700;
    color: rgba(26,22,12,.4);
    font-variant-numeric: tabular-nums;
  }
  .es-crit-arrow {
    font-size: 11px;
    color: var(--soft);
  }
  .es-crit-after {
    font-size: 12px;
    font-weight: 800;
    color: var(--purple);
    font-variant-numeric: tabular-nums;
  }

  /* ── RIGHT column ── */
  .es-right { }

  .es-evidence-panel {
    background: #fffdf8;
    border: 1px solid var(--ir-line);
    border-radius: var(--ir-radius-card);
    padding: 26px 24px 22px;
    box-shadow: var(--ir-shadow-lift);
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 80px;
  }

  /* Images: side-by-side with purple arrow between */
  .es-images-wrap {
    display: grid;
    grid-template-columns: 1fr 32px 1fr;
    gap: 10px;
    align-items: center;
  }
  .es-img-slot {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .es-img-card {
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(26,22,12,.1), 0 1px 4px rgba(26,22,12,.06);
  }
  /* After image: slight lift + purple ring for emphasis */
  .es-img-card-after {
    box-shadow:
      0 8px 28px rgba(26,22,12,.14),
      0 2px 8px rgba(26,22,12,.07),
      0 0 0 2px rgba(78,73,166,.2);
    transform: scale(1.02);
    transform-origin: center top;
    position: relative;
    z-index: 1;
  }
  /* Both images: preserve aspect ratio, no squashing */
  .es-img {
    display: block;
    width: 100%;
    height: auto !important; /* override any inherited height constraint */
  }
  /* Purple arrow circle */
  .es-img-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--purple);
    color: #fffdf8;
    box-shadow: 0 4px 14px rgba(78,73,166,.32);
    flex-shrink: 0;
    align-self: center;
  }
  .es-img-arrow .lucide { width: 15px; height: 15px; stroke-width: 2.5; }
  /* Pill captions under each image */
  .es-img-pill {
    display: block;
    text-align: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(26,22,12,.06);
    border: 1px solid rgba(26,22,12,.08);
    font-size: 10.5px;
    font-weight: 700;
    color: var(--soft);
    letter-spacing: .01em;
    white-space: nowrap;
  }
  .es-img-pill-after {
    background: rgba(78,73,166,.08);
    border-color: rgba(78,73,166,.18);
    color: var(--purple);
  }

  /* Bottom callout bar */
  .es-evidence-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    background: rgba(78,73,166,.06);
    border: 1px solid rgba(78,73,166,.14);
    border-radius: 10px;
  }
  .es-evidence-bar-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(78,73,166,.12);
    border: 1px solid rgba(78,73,166,.22);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .es-evidence-bar-icon .lucide { width: 14px; height: 14px; stroke-width: 2.2; }
  .es-evidence-bar-text {
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    letter-spacing: -.008em;
  }
  .es-evidence-bar-text em {
    font-style: italic;
    color: var(--purple);
    font-weight: 700;
  }

}

/* ============================================================
   ix-* scroll-entrance reveal system (intensives page only)
   Namespace ix-* — no collision with community .reveal classes.
   Default state = fully visible (no-JS safe, SSR safe).
   JS adds ix-pending for below-fold sections, ix-revealed on entry.
   ============================================================ */

/* Base: fully visible — no transform, no opacity rule (no-JS safe) */
.ix-reveal { }

/* Start state — only applied by JS for genuinely off-screen sections.
   opacity: 0 is safe here because the viewport check prevents applying
   this to anything already in view; the rAF guard ensures the browser
   commits this state before the observer can fire. */
.ix-reveal.ix-pending {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}

/* Arrived */
.ix-reveal.ix-revealed {
  opacity: 1;
  transform: none;
  transition: opacity .55s ease-out, transform .55s ease-out;
}

/* Reduced-motion: kill everything */
@media (prefers-reduced-motion: reduce) {
  .ix-reveal.ix-pending,
  .ix-reveal.ix-revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   iBOrbit warm-paper vibe — the page background (paper grain + warm
   washes) is set via --bg-paint on body. Here we let the grain bleed
   through the bigger paper cards too, so surfaces read as exam paper
   rather than flat white. Kept very subtle.
   ============================================================ */
.coach-card,
.product-card,
.parents-col,
.intake-card,
.feature-card,
.small-feature,
.price-matrix,
.gp-prod-card,
.membership-card {
  background-image:
    linear-gradient(180deg, rgba(255,253,248,.86), rgba(255,253,248,.86)),
    url("paper.png") !important;
  background-size: auto, 300px 300px !important;
  background-blend-mode: normal, multiply !important;
}

/* Ruled-paper lines on the simpler text cards — exam-paper feel */
.feature-card,
.small-feature,
.parents-col,
.gp-prod-card {
  background-image:
    repeating-linear-gradient(to bottom, transparent 0, transparent 33px, rgba(7,21,68,.045) 33px, rgba(7,21,68,.045) 34px),
    linear-gradient(180deg, rgba(255,253,248,.9), rgba(255,253,248,.9)),
    url("paper.png") !important;
  background-size: 100% 34px, auto, 300px 300px !important;
  background-blend-mode: normal, normal, multiply !important;
}

/* ============================================================
   Section eyebrows → navy ink. Reserve indigo/pen for the
   handwritten scribble underlines only, so the page reads navy +
   gold + cream (the main site palette) rather than purple-forward.
   ============================================================ */
.eyebrow,
.micro-eyebrow,
.iots-eyebrow,
.iborbit-eyebrow,
.section-head .eyebrow,
.intensives-section-head .eyebrow {
  color: var(--ink);
}
/* keep eyebrows legible on the dark proof-vault bands */
.guarantee-section .eyebrow,
.guarantee-section .micro-eyebrow,
.dark-cta .eyebrow {
  color: rgba(255, 253, 248, 0.92);
}

/* ============================================================
   Color law: a CTA on a NAVY background is GOLD (navy text).
   On cream, CTAs stay navy. Purple is never a button.
   ============================================================ */
.dark-cta .btn.purple,
.dark-cta .btn.black,
.guarantee-section .btn.purple,
.guarantee-section .btn.black,
.guarantee-section a.btn:not(.white) {
  background: linear-gradient(180deg, #e0ad48, #b88a45) !important;
  color: #2c2208 !important;
  border-color: rgba(184, 138, 69, 0.6) !important;
  box-shadow: 0 16px 32px rgba(184, 138, 69, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.35) !important;
}
