


/* ---------- Design tokens ---------- */
*,*::before,*::after{box-sizing:border-box}
*{margin:0;padding:0}
:root{
  --brand:#1497D0;
  --brand-deep:#0F7AAC;
  --brand-darker:#0A5A80;
  --brand-soft:#E8F4FB;
  --brand-softer:#F4FAFD;
  --bg:#FBFCFD;
  --surface:#FFFFFF;
  --alt:#F4F7FA;
  --alt-2:#EDF2F7;
  --ink:#0B2233;
  --ink-2:#4A5766;
  --ink-3:#6B7784;
  --muted:#8A94A0;
  --divider:#E4EAF0;
  --divider-strong:#CFD8E0;
  --accent:#E8A94B;
  --accent-soft:#FBF3E3;
  --red:#C64C3B;

  --font-serif:'Source Serif 4','Iowan Old Style','Palatino Linotype','Cambria',Georgia,serif;
  --font-sans:'Inter',-apple-system,BlinkMacSystemFont,'SF Pro Text','Segoe UI','Helvetica Neue',Arial,sans-serif;
  --font-mono:ui-monospace,'SF Mono','Menlo','Consolas',monospace;

  /* Radius — 3 tiers */
  --r-sm:10px;      /* buttons, chips */
  --r:16px;         /* cards, accordions */
  --r-lg:22px;      /* Final CTA large panel */

  /* Legacy aliases (kept so unchanged rules still work) */
  --r-xl:22px;

  /* Shadow — reserved for expanded accordions & final CTA */
  --shadow-1:0 1px 2px rgba(11,34,51,.04),0 1px 1px rgba(11,34,51,.03);
  --shadow-2:0 4px 16px rgba(11,34,51,.06),0 2px 4px rgba(11,34,51,.04);
  --shadow-3:0 12px 40px rgba(11,34,51,.10),0 4px 12px rgba(11,34,51,.05);

  --pad-x:20px;

  /* Vertical rhythm — unified section spacing */
  --section-space:44px;
  --section-head-gap:20px;
  --content-gap:20px;
  --card-gap:12px;
  --sec:44px;             /* legacy alias */

  --ease:cubic-bezier(.2,.7,.2,1);
}

/* ---------- Base ---------- */
html{-webkit-text-size-adjust:100%;font-size:16px;scroll-behavior:smooth}
body{
  font-family:var(--font-sans);
  color:var(--ink);
  background:var(--bg);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  padding-bottom:84px;
}
img,svg{display:block;max-width:100%}
button{font:inherit;color:inherit;background:transparent;border:none;cursor:pointer}
a{color:inherit;text-decoration:none}
:focus-visible{outline:2px solid var(--brand);outline-offset:3px;border-radius:4px}

.wrap{width:100%;max-width:560px;margin:0 auto;padding:0 var(--pad-x)}
.sr{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

/* ---------- Typography — Source Serif 4 (editorial) + Inter (UI) ---------- */
.eyebrow{
  font-family:var(--font-sans);
  font-size:11.5px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--brand);
  display:inline-flex;align-items:center;gap:8px;
}
.eyebrow::before{content:"";display:inline-block;width:20px;height:1.5px;background:var(--brand);border-radius:2px}
/* Section-level headings — editorial serif */
h1,h2{font-family:var(--font-serif);color:var(--ink);font-weight:600}
h1{font-size:clamp(30px,8vw,34px);line-height:1.04;letter-spacing:-.02em}
h2{font-size:clamp(27px,7.2vw,29px);line-height:1.14;letter-spacing:-.02em}
/* Card / UI titles — Inter */
h3,h4{font-family:var(--font-sans);color:var(--ink);font-weight:600;letter-spacing:0}
h3{font-size:16px;line-height:1.35}
h4{font-size:16px;line-height:1.35}
p{font-family:var(--font-sans);font-size:15px;line-height:1.6;color:var(--ink-2)}
.lead{font-family:var(--font-sans);font-size:16px;line-height:1.55;color:var(--ink-2);font-weight:400}
small,.small{font-family:var(--font-sans);font-size:13px;line-height:1.5;color:var(--ink-3)}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-sans);font-weight:700;font-size:14px;
  letter-spacing:.01em;
  padding:14px 22px;border-radius:var(--r-sm);
  transition:transform .15s var(--ease),background-color .2s var(--ease),box-shadow .2s var(--ease);
  cursor:pointer;line-height:1;min-height:48px;
  text-align:center;white-space:nowrap;
}
.btn-primary{background:var(--brand);color:#fff;box-shadow:0 1px 2px rgba(15,122,172,.25),0 4px 12px rgba(20,151,208,.18)}
.btn-primary:hover,.btn-primary:focus-visible{background:var(--brand-deep)}
.btn-primary:active{transform:translateY(1px)}
.btn-ghost{background:transparent;color:var(--brand);border:1.5px solid var(--brand)}
.btn-ghost:hover{background:var(--brand-soft)}
.btn-sm{padding:8px 14px;min-height:34px;font-size:13px;border-radius:8px}
.btn-lg{padding:18px 28px;min-height:56px;font-size:16px;border-radius:12px;width:100%}
.btn-block{width:100%}

.text-link{
  display:inline-flex;align-items:center;gap:6px;
  color:var(--brand);font-weight:600;font-size:14.5px;
  border-bottom:1.5px solid var(--brand-soft);
  padding-bottom:2px;transition:border-color .2s var(--ease);
}
.text-link:hover{border-color:var(--brand)}
.text-link .arr{transition:transform .2s var(--ease)}
.text-link:hover .arr{transform:translateX(3px)}

/* ---------- Header ---------- */
.hdr{
  position:sticky;top:0;z-index:40;
  background:rgba(251,252,253,.85);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--divider);
  transition:box-shadow .2s var(--ease),background-color .2s var(--ease);
}
.hdr.is-scrolled{background:rgba(255,255,255,.94);box-shadow:0 1px 8px rgba(11,34,51,.05)}
.hdr-in{display:flex;align-items:center;justify-content:space-between;height:58px}
.brand{display:flex;align-items:center;gap:9px;color:var(--ink)}
.brand-mark{width:26px;height:26px;flex-shrink:0}
.brand-logo{
  height:38px;width:auto;
  display:block;
  object-fit:contain;
}
.brand-text{
  font-family:var(--font-serif);
  font-size:20px;font-weight:600;
  letter-spacing:-.015em;color:var(--ink);
}
.brand-text .k{color:var(--brand)}
.foot .brand{margin-bottom:18px;display:inline-flex}
.foot .brand-logo{
  height:52px;width:auto;background:transparent;
  padding:0;border-radius:0;box-shadow:none;
}
.hdr-actions{display:flex;align-items:center;gap:8px}
.hdr .btn-primary{box-shadow:none}
.menu-btn{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:8px;color:var(--ink);
}
.menu-btn:hover{background:var(--alt)}
.menu-btn svg{width:22px;height:22px}

/* ---------- Hero (4:3 landscape banner) ---------- */
/* Desktop / tablet: banner sits inside the 560-max container with rounded corners */
.hero{padding:20px 0 40px}
.hero-media{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  border-radius:var(--r-lg);
  overflow:hidden;
  background:linear-gradient(135deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
}
/* Mobile: full-bleed edge-to-edge, no radius, no side gutter */
@media (max-width:640px){
  .hero{padding:0 0 32px}
  .hero .wrap{padding-left:0;padding-right:0;max-width:100%}
  .hero-media{border-radius:0}
}
.hero-media img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
/* Placeholder shown if the image fails to load */
.hero-media-fallback{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  padding:24px;text-align:center;gap:12px;
  color:var(--ink-3);font-size:13px;
  border:1px dashed rgba(20,151,208,.35);
  border-radius:var(--r-lg);
  z-index:-1;
}

/* Hero trust chips (below banner) */
.hero-chips{
  list-style:none;
  width:min(calc(100% - 24px),520px);
  padding:20px 0 0;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,.72fr) minmax(0,1.33fr);
  gap:10px;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}
.hero-chip{
  position:relative;
  display:flex;align-items:center;justify-content:center;gap:6px;
  min-height:34px;
  padding:0 11px;
  background:var(--surface);
  border:1px solid rgba(20,151,208,.18);
  border-radius:999px;
  font-family:var(--font-sans);
  font-size:clamp(10.5px,2.6vw,12.5px);
  font-weight:600;
  color:var(--brand);
  letter-spacing:0;
  line-height:1;
  box-shadow:0 2px 6px rgba(11,34,51,.06);
  white-space:nowrap;
  min-width:0;
  text-align:center;
  overflow:hidden;
}
.hero-chip:not(:last-child)::after{
  display:none;
}
.hero-chip svg{width:13px;height:13px;color:var(--brand);flex-shrink:0}
.hero-chip svg path,
.hero-chip svg circle{stroke-width:2}
.hero-chip .chip-desktop{display:none}
.hero-chip .chip-mobile{display:inline;min-width:0}

@media (max-width:480px){
  .hero-chips{
    width:calc(100% - 16px);
    padding-top:18px;
    gap:6px;
  }
  .hero-chip{
    gap:4px;
    min-height:32px;
    padding:0 5px;
    font-size:clamp(9.3px,2.65vw,10.4px);
  }
  .hero-chip svg{width:10.5px;height:10.5px}
  .method-keywords{
    flex-wrap:nowrap;
    gap:0;
    padding-left:8px;
    padding-right:8px;
    white-space:nowrap;
  }
  .method-kw{
    font-size:clamp(11px,3.15vw,13px);
  }
  .method-kw:not(:last-child)::after{
    margin-left:clamp(7px,2.1vw,10px);
    font-size:clamp(13px,3.6vw,16px);
  }
}

/* ---------- Sections ---------- */
.section{padding:var(--section-space) 0}
.section--alt{background:var(--alt)}
.section-head{margin-bottom:var(--section-head-gap)}
.section-head h2{margin-top:8px}
.section-head .lead{margin-top:10px}

/* ---------- Pain to Outcome ---------- */
.section-pain{position:relative}
.section-pain .wrap{position:relative;z-index:1}

.pain-list{display:flex;flex-direction:column;gap:12px}
.pain-card{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 16px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
}
.pain-icon-slot{
  width:52px;height:52px;flex-shrink:0;
  border-radius:14px;
  background:var(--brand-soft);
  display:flex;align-items:center;justify-content:center;
  color:var(--brand);
}
.pain-icon-slot svg{width:26px;height:26px;display:block}
.pain-icon-slot img{
  width:100%;height:100%;
  display:block;
  object-fit:cover;
  border-radius:inherit;
}
.pain-body{flex:1;min-width:0}
.pain-from{
  font-family:var(--font-sans);
  font-size:13px;
  color:var(--muted);
  line-height:1.4;
  margin:0 0 4px;
  font-weight:500;
}
.pain-arrow{
  color:var(--brand);
  display:block;
  margin:0 0 4px;
}
.pain-arrow svg{width:14px;height:14px;display:block}
.pain-to{
  font-family:var(--font-serif);
  font-size:16.5px;
  font-weight:700;
  color:var(--ink);
  line-height:1.32;
  margin:0;
  letter-spacing:0;
}
/* ---------- Learning Path (2 stage accordion cards) ---------- */
.stages{display:flex;flex-direction:column;gap:12px}
.stage{
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  overflow:hidden;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease);
}
.stage.is-open{
  border-color:var(--brand-soft);
  box-shadow:var(--shadow-2);
}
.stage-head{
  width:100%;
  display:grid;
  grid-template-columns:96px 1fr auto;
  gap:16px;
  padding:16px;
  background:transparent;
  border:none;
  text-align:left;
  cursor:pointer;
  align-items:center;
  color:inherit;font:inherit;
}
.stage-photo{
  width:96px;height:124px;flex-shrink:0;
  border-radius:10px;overflow:hidden;
  background:linear-gradient(135deg,#DFEEF7 0%,#F0F7FB 100%);
  position:relative;
}
.stage-photo img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;
  display:block;
}
.stage-body{min-width:0}
.stage-name{
  font-family:var(--font-serif);
  font-size:22px;font-weight:600;
  color:var(--brand);
  letter-spacing:-.01em;
  line-height:1.15;
}
.stage-chip{
  margin-top:8px;
  display:inline-flex;align-items:center;gap:6px;
  padding:4px 12px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-radius:999px;
  font-family:var(--font-sans);
  font-size:12px;font-weight:600;
  color:var(--brand-darker);
  letter-spacing:.01em;
  line-height:1.4;
}
.stage-chip-dot{
  width:6px;height:6px;
  border-radius:50%;
  background:var(--brand);
  flex-shrink:0;
}
.stage-desc{
  margin-top:8px;
  font-family:var(--font-sans);
  font-size:13.5px;line-height:1.5;
  color:var(--ink-2);
}
.stage-caret{
  width:30px;height:30px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-3);
  transition:transform .3s var(--ease),color .2s var(--ease);
}
.stage-caret svg{width:14px;height:14px}
.stage.is-open .stage-caret{transform:rotate(180deg);color:var(--brand)}

.stage-expand{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.stage.is-open .stage-expand{max-height:900px}
.stage-expand-in{
  padding:18px 18px 20px;
  border-top:1px solid var(--divider);
  margin-top:2px;
}
.stage-block{margin-bottom:18px}
.stage-block:last-child{margin-bottom:0}
.stage-block-label{
  font-family:var(--font-sans);
  font-size:10.5px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--brand);
  margin-bottom:10px;
}
.stage-block-desc{
  font-family:var(--font-sans);
  font-size:14px;line-height:1.6;
  color:var(--ink);
  margin:0;
}
.stage-block-list{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:6px;
}
.stage-block-list li{
  font-family:var(--font-sans);
  font-size:14px;line-height:1.5;
  color:var(--ink);
  padding-left:14px;position:relative;
}
.stage-block-list li::before{
  content:"";position:absolute;
  left:0;top:9px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--brand);
}
.stage-block-value{
  font-family:var(--font-serif);
  font-size:15.5px;font-weight:500;
  color:var(--ink);
}
.stage-lg-table{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:6px 16px;
  padding:12px 14px;
  background:var(--brand-softer);
  border-left:3px solid var(--brand-soft);
  border-radius:0 6px 6px 0;
  margin:0;
}
.stage-lg-table dt{
  font-family:var(--font-serif);
  font-size:13px;font-weight:600;
  color:var(--brand-darker);
}
.stage-lg-table dd{
  font-family:var(--font-sans);
  font-size:13px;
  color:var(--ink-2);
  margin:0;
}
.stage-expand-in .text-link{margin-top:14px;font-size:13.5px}
.stages-note{
  margin:16px 4px 0;
  font-family:var(--font-sans);
  font-size:12.5px;
  color:var(--ink-3);
  line-height:1.5;
  font-style:italic;
  text-align:center;
}

/* ---------- Programs (legacy — kept for backward compatibility) ---------- */
.programs{display:flex;flex-direction:column;gap:12px}
.program{
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r-lg);
  overflow:hidden;
  transition:box-shadow .25s var(--ease),border-color .25s var(--ease);
}
.program.is-open{
  border-color:var(--brand-soft);
  box-shadow:var(--shadow-2);
}
.program-head{
  width:100%;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:16px 18px;
  text-align:left;
  cursor:pointer;
  background:transparent;
}
/* Photo slot: match educator image scale */
.program-cover{
  width:96px;height:120px;flex-shrink:0;
  border-radius:10px;
  position:relative;overflow:hidden;
  background:linear-gradient(135deg,#DFEEF7 0%,#F0F7FB 100%);
  box-shadow:0 3px 8px rgba(11,34,51,.08);
}
.program-cover > img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}

.program-title-wrap{min-width:0}
.program-grade{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-family:var(--font-sans);
  font-size:13px;
  font-weight:700;
  letter-spacing:.005em;
  text-transform:none;
  color:var(--brand);
  line-height:1;
  padding:8px 13px;
  border:1px solid var(--divider);
  border-radius:999px;
  background:var(--surface);
  box-shadow:0 3px 10px rgba(11,34,51,.08);
  margin-bottom:9px;
}
.program-grade::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--brand);
  box-shadow:0 0 0 3px rgba(20,151,208,.12);
}
.program-title{font-family:var(--font-sans);font-size:16px;font-weight:600;color:var(--ink);line-height:1.3;letter-spacing:-.005em}
.program-sub{margin-top:4px;font-size:12.5px;color:var(--muted);letter-spacing:.01em}
.program-caret{
  width:32px;height:32px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  color:var(--ink-3);
  transition:transform .3s var(--ease),color .2s var(--ease);
}
.program-caret svg{width:14px;height:14px}
.program.is-open .program-caret{transform:rotate(180deg);color:var(--brand)}
.program-body{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.program.is-open .program-body{max-height:600px}
.program-body-in{
  padding:0 18px 20px;
  border-top:1px solid var(--divider);
  margin-top:2px;padding-top:18px;
}
.program-desc{font-size:14.5px;line-height:1.55;color:var(--ink-2)}
.featured{
  margin-top:14px;
  padding:14px 16px;
  background:var(--brand-softer);
  border-left:3px solid var(--accent);
  border-radius:8px;
}
.featured-label{
  font-size:11px;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--brand-darker);
}
.featured-text{
  margin-top:5px;
  font-family:var(--font-sans);font-size:14px;
  color:var(--ink);line-height:1.45;
}
.book-list{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.book-chip{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 9px;
  border:1px solid rgba(15,142,219,.18);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  color:var(--ink);
  font-family:var(--font-sans);
  font-size:12.5px;
  font-weight:600;
  line-height:1.2;
  max-width:100%;
  white-space:normal;
  overflow-wrap:anywhere;
}
.program-body .text-link{margin-top:16px}

/* ---------- Method (tabbed reveal) ---------- */
.method-video{
  position:relative;aspect-ratio:16/9;
  border-radius:var(--r);overflow:hidden;
  background:linear-gradient(135deg,#0B3A54 0%,#0F5578 55%,#1497D0 100%);
  cursor:pointer;isolation:isolate;
  margin-bottom:20px;
}
.method-video.has-cover{background:#062436}
.method-video-cover{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
.method-video::before{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(115deg,transparent 40%,rgba(255,255,255,.06) 50%,transparent 60%),
    radial-gradient(ellipse at 80% 20%,rgba(255,255,255,.14) 0%,transparent 45%),
    radial-gradient(ellipse at 20% 90%,rgba(232,169,75,.12) 0%,transparent 40%);
  z-index:1;pointer-events:none;
}
.method-video::after{
  content:"";position:absolute;inset:0;
  background-image:repeating-linear-gradient(45deg,rgba(255,255,255,.03) 0 2px,transparent 2px 14px);
  z-index:1;pointer-events:none;
}
.method-video.has-cover::before{
  background:linear-gradient(180deg,rgba(5,32,48,.04) 0%,rgba(5,32,48,.42) 100%);
}
.method-video.has-cover::after{background-image:none}
.method-video-inner{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:space-between;padding:20px}
.video-tag{
  align-self:flex-start;
  display:inline-flex;align-items:center;gap:6px;
  padding:5px 10px;background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);color:#fff;
  font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  border-radius:999px;
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
}
.video-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:56px;height:56px;border-radius:50%;
  background:rgba(255,255,255,.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.20);z-index:3;
  transition:transform .25s var(--ease);
}
.video-play svg{width:18px;height:18px;color:var(--brand);margin-left:2px}
.method-video:hover .video-play{transform:translate(-50%,-50%) scale(1.05)}

/* Viewfinder corner markers (L-shaped) */
.video-corner{
  position:absolute;
  width:16px;height:16px;
  border-color:rgba(255,255,255,.6);
  border-style:solid;
  border-width:0;
  z-index:4;
  pointer-events:none;
}
.video-corner.tl{top:14px;left:14px;border-top-width:1.5px;border-left-width:1.5px}
.video-corner.tr{top:14px;right:14px;border-top-width:1.5px;border-right-width:1.5px}
.video-corner.bl{bottom:14px;left:14px;border-bottom-width:1.5px;border-left-width:1.5px}
.video-corner.br{bottom:14px;right:14px;border-bottom-width:1.5px;border-right-width:1.5px}
.video-meta{display:flex;align-items:center;justify-content:space-between;color:#fff;position:relative;z-index:1}
.video-title{font-family:var(--font-sans);font-size:14px;font-weight:600;letter-spacing:.005em}
.video-dur{font-size:11.5px;font-weight:600;color:rgba(255,255,255,.8);letter-spacing:.05em}

/* Method — display-only keyword line (single row, dot-separated, minimal) */
.method-keywords{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:4px 14px;
  margin:0 auto 18px;
  padding:10px 20px;
  max-width:fit-content;
}
.method-kw{
  display:inline-flex;align-items:center;
  font-family:var(--font-serif);
  font-size:15px;font-weight:500;
  color:var(--ink);
  letter-spacing:.005em;
  position:relative;
  flex:0 0 auto;
  min-height:auto;
}
.method-kw:not(:last-child)::after{
  content:"·";
  margin-left:14px;
  color:var(--brand);
  font-weight:600;
  font-size:18px;
  line-height:1;
  opacity:.75;
}
.method-kw .n{display:none}

/* How Our Method Works — single expand toggle */
.method-reveal{}
.method-chain{
  display:flex;flex-wrap:wrap;justify-content:center;align-items:center;
  gap:6px 10px;
  margin:16px auto 20px;
  padding:12px 14px;
  max-width:520px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-radius:999px;
}
.method-chain-step{
  font-family:var(--font-serif);
  font-size:14px;font-weight:600;
  color:var(--brand-deep);
  letter-spacing:.01em;
  line-height:1;
}
.method-chain-sep{
  color:var(--brand);opacity:.55;
  font-family:var(--font-sans);
  font-size:13px;font-weight:500;
  line-height:1;
}
@media (max-width:480px){
  .method-chain{gap:5px 8px;padding:10px 12px}
  .method-chain-step{font-size:13px}
  .method-chain-sep{font-size:12px}
}
@media (max-width:360px){
  .method-chain{gap:5px 7px;padding:9px 10px;border-radius:16px}
  .method-chain-step{font-size:12px}
  .method-chain-sep{font-size:11px}
}
.method-reveal-btn{
  width:100%;
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 18px;min-height:52px;
  background:var(--surface);
  border:1.5px solid var(--brand);
  border-radius:var(--r-sm);
  color:var(--brand);
  font-family:var(--font-sans);
  font-size:15px;font-weight:600;
  cursor:pointer;
  transition:background .25s var(--ease),color .25s var(--ease),box-shadow .25s var(--ease),border-radius .25s var(--ease);
  text-align:left;
}
.method-reveal-btn:hover{background:var(--brand-soft)}
.method-reveal-btn .chevron{
  width:26px;height:26px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:var(--brand-soft);
  color:var(--brand);
  transition:transform .35s var(--ease),background .25s var(--ease);
}
.method-reveal-btn .chevron svg{width:14px;height:14px}
.method-reveal.is-open .method-reveal-btn{
  background:var(--brand);color:#fff;
  border-color:var(--brand);
  box-shadow:0 6px 18px rgba(20,151,208,.20);
  border-radius:var(--r-sm) var(--r-sm) 0 0;
}
.method-reveal.is-open .method-reveal-btn:hover{background:var(--brand-deep)}
.method-reveal.is-open .method-reveal-btn .chevron{
  transform:rotate(180deg);
  background:rgba(255,255,255,.22);color:#fff;
}
.method-reveal-body{
  max-height:0;overflow:hidden;
  transition:max-height .5s var(--ease);
}
.method-reveal.is-open .method-reveal-body{max-height:1200px}
.method-steps-list{
  list-style:none;padding:20px 18px 6px;margin:0;
  background:var(--surface);
  border:1.5px solid var(--brand);
  border-top:none;
  border-radius:0 0 var(--r-sm) var(--r-sm);
}
.method-step-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  padding-bottom:20px;
  position:relative;
}
.method-step-item:last-child{padding-bottom:4px}
.method-step-item:not(:last-child)::before{
  content:"";position:absolute;
  left:15px;top:34px;bottom:4px;
  width:1.5px;
  background:linear-gradient(180deg,var(--brand-soft) 0%,var(--brand-softer) 100%);
}
.method-step-item .step-num{
  position:relative;z-index:1;
  width:32px;height:32px;border-radius:50%;
  background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-serif);font-size:12.5px;font-weight:600;
  letter-spacing:.02em;
  box-shadow:0 4px 10px rgba(20,151,208,.28);
}
.method-step-item .step-body{min-width:0;padding-top:4px}
.method-step-item .step-body h4{
  font-family:var(--font-sans);
  font-size:16px;font-weight:600;
  color:var(--ink);letter-spacing:0;
  margin:0 0 4px;
}
.method-step-item .step-body p{
  font-size:14.5px;line-height:1.55;
  color:var(--ink-2);
  margin:0;
}

/* ---------- Educators (stacked, no scroll) ---------- */
.edu-badges{display:flex;flex-wrap:wrap;gap:6px;margin-top:14px}
.badge{
  display:inline-flex;align-items:center;gap:5px;
  font-size:12px;font-weight:600;
  padding:5px 10px;border-radius:999px;
  background:var(--surface);border:1px solid var(--divider);
  color:var(--ink-2);
}
.badge svg{width:11px;height:11px;color:var(--brand)}

.teachers{display:flex;flex-direction:column;gap:12px;margin-top:22px}
.teacher-row{
  display:grid;
  grid-template-columns:96px 1fr;
  grid-template-rows:auto auto;
  gap:14px;
  padding:14px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  transition:border-color .2s var(--ease);
}
.teacher-row:hover{border-color:var(--brand-soft)}
.teacher-photo{
  grid-row:1;grid-column:1;
  position:relative;
  width:96px;height:120px;
  border-radius:10px;overflow:hidden;
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-deep) 100%);
  display:flex;align-items:center;justify-content:center;
  color:#fff;
  font-family:var(--font-serif);font-size:38px;font-weight:600;
  letter-spacing:-.02em;
  box-shadow:inset 0 -14px 24px rgba(0,0,0,.08);
}
.teacher-photo > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:1}
.teacher-photo > img ~ .teacher-photo-init{display:none}
.teacher-photo-init{position:relative;z-index:0}
.teacher-photo-check{
  position:absolute;bottom:8px;right:8px;
  width:24px;height:24px;border-radius:50%;
  background:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
  z-index:2;
}
.teacher-photo-check svg{width:12px;height:12px;color:var(--brand)}
.teacher-info{grid-row:1;grid-column:2;min-width:0;align-self:center}
.teacher-name{font-family:var(--font-serif);font-size:19px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.teacher-cred{
  margin-top:4px;
  font-size:11.5px;font-weight:600;
  letter-spacing:.07em;text-transform:uppercase;
  color:var(--brand-darker);
}
.teacher-quote{
  margin-top:8px;
  font-family:var(--font-sans);
  font-size:13.5px;line-height:1.5;
  color:var(--ink-2);
}
.teacher-cta{
  grid-row:2;grid-column:1 / -1;
  display:inline-flex;align-items:center;justify-content:center;gap:7px;
  padding:12px 18px;
  border:1.5px solid var(--brand);
  background:var(--surface);
  color:var(--brand);
  font-family:var(--font-sans);
  font-size:14px;font-weight:600;
  border-radius:10px;
  min-height:46px;
  transition:background .2s var(--ease),color .2s var(--ease),box-shadow .2s var(--ease);
  cursor:pointer;
}
.teacher-cta:hover{background:var(--brand);color:#fff;box-shadow:0 4px 12px rgba(20,151,208,.22)}
.teacher-cta svg{width:14px;height:14px;transition:transform .2s var(--ease)}
.teacher-cta:hover svg{transform:translateX(3px)}

.support-line{
  margin-top:14px;
  padding:16px 18px 14px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-radius:var(--r);
}
.support-line-title{
  font-family:var(--font-sans);
  font-size:11.5px;font-weight:700;
  color:var(--brand-darker);
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.support-roles{display:flex;flex-direction:column}
.support-role{
  display:flex;align-items:center;gap:12px;
  padding:10px 0;
}
.support-role + .support-role{
  border-top:1px solid rgba(20,151,208,.15);
}
.support-role-icon{
  width:32px;height:32px;flex-shrink:0;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.support-role-icon svg{width:16px;height:16px}
.support-role-icon--teacher{background:var(--brand-soft);color:var(--brand-darker)}
.support-role-icon--ta{background:#F5EEDD;color:#8A5A15}
.support-role-body{min-width:0;flex:1}
.support-role-name{
  font-family:var(--font-sans);
  font-size:14px;font-weight:600;
  color:var(--ink);
  line-height:1.3;
}
.support-role-desc{
  margin-top:2px;
  font-family:var(--font-sans);
  font-size:13px;
  color:var(--ink-2);
  line-height:1.4;
}
.edu-link-wrap{margin-top:22px;text-align:center}

/* ---------- Case (compact tabbed) ---------- */
.case-steps{
  display:grid;
  grid-template-columns:1fr auto 1fr auto 1fr;
  align-items:center;gap:6px;
  margin-bottom:14px;
}
.case-step{
  display:flex;flex-direction:column;align-items:center;gap:4px;
  padding:10px 4px;border-radius:10px;
  cursor:pointer;transition:background .2s var(--ease);
  min-width:0;
}
.case-step:hover{background:var(--surface)}
.case-step-n{
  width:26px;height:26px;border-radius:50%;
  background:var(--surface);
  border:1.5px solid var(--divider-strong);
  color:var(--ink-3);
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-serif);font-size:12.5px;font-weight:600;
  transition:all .25s var(--ease);
}
.case-step-label{
  font-size:11px;font-weight:600;
  color:var(--muted);
  letter-spacing:.03em;
  text-align:center;line-height:1.2;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:100%;
}
.case-step.is-active .case-step-n{background:var(--brand);border-color:var(--brand);color:#fff;transform:scale(1.08)}
.case-step.is-active .case-step-label{color:var(--brand-darker)}
.case-step-arrow{
  color:var(--divider-strong);
  display:flex;align-items:center;justify-content:center;
  transform:translateY(-8px);
}
.case-step-arrow svg{width:14px;height:14px}

.case-panels{position:relative}
.case-panel{
  display:none;
  padding:18px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
}
.case-panel.is-active{display:block;animation:panelIn .3s var(--ease)}
@keyframes panelIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
.case-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:12px}
.case-label{
  display:inline-flex;align-items:center;gap:6px;
  font-size:11px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
}
.case-panel[data-panel="1"] .case-label{color:var(--muted)}
.case-panel[data-panel="2"] .case-label{color:var(--red)}
.case-panel[data-panel="3"] .case-label{color:var(--brand)}
.case-label .dot{width:7px;height:7px;border-radius:50%;background:currentColor}
.case-tag{font-size:10.5px;color:var(--muted);letter-spacing:.03em;font-weight:500}

.paper{
  position:relative;
  padding:12px 12px 10px;
  background:repeating-linear-gradient(180deg,transparent 0 26px,rgba(20,151,208,.08) 26px 27px);
  border-radius:6px;
  font-family:var(--font-serif);
  font-size:14.5px;
  line-height:27px;
  color:var(--ink);
  letter-spacing:.005em;
}
.case-panel[data-panel="1"] .paper{color:#8B95A0}
.case-panel[data-panel="3"] .paper{
  background:repeating-linear-gradient(180deg,transparent 0 26px,rgba(20,151,208,.12) 26px 27px);
}
.mark-under{border-bottom:2px solid var(--red);padding-bottom:1px}
.mark-strike{text-decoration:line-through;text-decoration-color:var(--red);text-decoration-thickness:2px;color:#B0B7C0}
.mark-caret{color:var(--red);font-weight:700;font-style:normal}
.note{
  display:inline-block;margin-left:4px;padding:1px 8px;
  background:var(--accent-soft);color:#8A5A15;
  border-radius:6px;
  font-family:var(--font-sans);font-size:11px;font-weight:600;
  vertical-align:middle;line-height:1.4;
}
.mark-good{background:linear-gradient(180deg,transparent 68%,rgba(20,151,208,.18) 68%);padding:0 2px}

.parent-quote{
  margin-top:16px;
  position:relative;
  padding:22px 20px 18px 26px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  overflow:visible;
}
.parent-quote::before{
  content:"";position:absolute;top:18px;bottom:18px;left:0;width:3px;
  background:var(--accent);border-radius:2px;
}
.parent-quote::after{
  content:"\201C";
  position:absolute;
  top:-22px;left:18px;
  font-family:var(--font-serif);
  font-size:82px;font-weight:500;
  color:var(--accent);
  opacity:.22;
  line-height:1;
  font-style:normal;
  pointer-events:none;
  z-index:0;
}
.parent-quote p{
  position:relative;z-index:1;
  font-family:var(--font-serif);
  font-size:15.5px;line-height:1.5;font-weight:500;
  color:var(--ink);font-style:italic;
}
.parent-quote cite{
  display:block;margin-top:8px;
  font-family:var(--font-sans);
  font-size:11.5px;font-style:normal;color:var(--muted);
  letter-spacing:.02em;
}
.case-link-wrap{margin-top:22px;text-align:center}

/* ---------- Final CTA + FAQ ---------- */
.cta-panel{
  position:relative;
  padding:30px 22px;
  background:linear-gradient(180deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow-2);
}
.cta-panel::before{
  content:"";position:absolute;top:-40px;right:-40px;
  width:180px;height:180px;border-radius:50%;
  background:radial-gradient(circle at center,rgba(20,151,208,.14) 0%,transparent 70%);
}
.cta-panel .eyebrow{color:var(--brand-darker)}
.cta-panel h2{margin-top:8px;font-size:clamp(24px,7vw,28px);line-height:1.18}
.cta-panel .lead{margin-top:10px;font-size:15.5px;color:var(--ink-2)}
.cta-btn-wrap{margin-top:22px;position:relative;z-index:2}
.cta-panel .btn-lg{min-height:54px;padding:16px 24px}
.outcomes{
  margin-top:22px;
  display:flex;flex-direction:column;gap:10px;
  position:relative;z-index:2;
}
.outcome{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--ink);font-weight:500}
.outcome-check{
  width:22px;height:22px;flex-shrink:0;border-radius:50%;background:var(--brand);
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.outcome-check svg{width:12px;height:12px}

.cta-esa{
  margin-top:20px;
  padding:10px 12px;
  background:rgba(255,255,255,.55);
  border:1px solid rgba(20,151,208,.15);
  border-radius:10px;
  display:inline-flex;align-items:center;gap:8px;
  position:relative;z-index:2;
  -webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);
}
.cta-esa-badge{
  width:24px;height:24px;flex-shrink:0;
  border-radius:6px;
  background:var(--brand-soft);color:var(--brand-darker);
  display:flex;align-items:center;justify-content:center;
}
.cta-esa-badge svg{width:14px;height:14px}
.cta-esa-text{
  font-size:11.5px;font-weight:500;
  color:var(--ink-2);letter-spacing:.005em;line-height:1.35;
}

.faq{margin-top:26px;display:flex;flex-direction:column;gap:2px}
.faq-item{border-bottom:1px solid var(--divider)}
.faq-item:first-child{border-top:1px solid var(--divider)}
.faq-btn{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:16px 4px;text-align:left;
  font-family:var(--font-sans);font-size:15px;font-weight:600;color:var(--ink);
  letter-spacing:.005em;
  cursor:pointer;
}
.faq-btn .pm{
  width:26px;height:26px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:var(--alt);color:var(--brand);
  transition:transform .3s var(--ease),background .2s var(--ease);
}
.faq-btn .pm svg{width:12px;height:12px}
.faq-item.is-open .faq-btn .pm{transform:rotate(45deg);background:var(--brand-soft)}
.faq-body{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.faq-item.is-open .faq-body{max-height:300px}
.faq-body-in{padding:0 4px 18px;font-size:14.5px;line-height:1.6;color:var(--ink-2)}

.esa-note{
  margin-top:24px;padding:12px 14px;
  border-left:2px solid var(--divider-strong);
  font-size:12px;color:var(--muted);line-height:1.55;
}

/* ---------- Footer (light editorial) ---------- */
.foot{
  position:relative;
  padding:52px 0 20px;
  background:linear-gradient(180deg,#F4F9FC 0%,#E7F1F8 100%);
  color:var(--ink);
  overflow:hidden;
}
.foot::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent 0%,rgba(20,151,208,.28) 50%,transparent 100%);
}
.foot-tagline{
  font-family:var(--font-serif);
  font-size:26px;font-weight:600;
  color:var(--ink);letter-spacing:-.015em;line-height:1.18;
  margin-bottom:22px;
}
.foot-divider{margin:24px 0 24px;height:1px;background:rgba(11,34,51,.10)}

.foot-cols-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px 20px;
  margin-bottom:8px;
}
.foot-cols-grid .foot-col{margin-bottom:12px}
.foot-col{margin-bottom:26px}
.foot-col-title{
  font-family:var(--font-serif);
  font-size:19px;font-weight:600;
  color:var(--ink);letter-spacing:-.005em;
  padding-bottom:10px;position:relative;
  margin-bottom:16px;
}
.foot-col-title::after{
  content:"";position:absolute;left:0;bottom:0;
  width:36px;height:2px;background:var(--brand);border-radius:1px;
}
.foot-col-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:4px}
.foot-col-list li{padding:0}
.foot-col-list a{
  color:var(--ink-2);
  font-size:14.5px;font-weight:500;
  padding:5px 0;display:inline-block;
  transition:color .2s var(--ease);
}
.foot-col-list a:hover{color:var(--brand)}

.foot-contact-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.foot-contact-list li{
  display:flex;align-items:flex-start;gap:12px;
  font-size:14px;color:var(--ink-2);line-height:1.5;
}
.foot-contact-list li > svg{
  width:20px;height:20px;flex-shrink:0;color:var(--brand);margin-top:1px;
}
.foot-contact-list a{color:var(--ink-2);transition:color .2s var(--ease)}
.foot-contact-list a:hover{color:var(--brand)}

.foot-social-sep{margin:18px 0 14px;height:1px;background:rgba(11,34,51,.08)}
.foot-socials-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:row;gap:10px}
.foot-socials-list a{
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:50%;
  color:var(--brand);
  transition:background .2s var(--ease),color .2s var(--ease),transform .15s var(--ease),border-color .2s var(--ease),box-shadow .2s var(--ease);
}
.foot-socials-list a .icon{
  display:flex;align-items:center;justify-content:center;
  color:currentColor;
}
.foot-socials-list a .icon svg{width:18px;height:18px}
.foot-socials-list a .label{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap}
.foot-socials-list a:hover{
  background:var(--brand);color:#fff;
  border-color:var(--brand);
  transform:translateY(-2px);
  box-shadow:0 6px 14px rgba(20,151,208,.22);
}

.foot-legal-bar{
  margin-top:6px;
  padding:22px 0 18px;
  border-top:1px solid rgba(11,34,51,.10);
  display:flex;flex-direction:column;gap:10px;
  font-size:12.5px;color:var(--ink-3);
}
.foot-legal-links{display:flex;align-items:center;gap:12px}
.foot-legal-links a{color:var(--ink-2);transition:color .2s var(--ease)}
.foot-legal-links a:hover{color:var(--brand)}
.foot-legal-sep{color:rgba(11,34,51,.22);font-weight:300}
.foot-copyright{font-size:12.5px;color:var(--ink-3)}

.foot-trademark-note{
  margin:0;
  font-size:11px;color:var(--ink-3);
  line-height:1.55;opacity:.85;
}

.foot-esa-note{
  margin-top:14px;
  padding:14px 0 4px;
  font-size:11.5px;color:var(--ink-3);line-height:1.55;
  text-align:center;
}

/* ---------- Sticky CTA ---------- */
.sticky-cta{
  position:fixed;left:0;right:0;bottom:0;z-index:50;
  padding:12px 16px calc(12px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  backdrop-filter:saturate(180%) blur(14px);
  border-top:1px solid var(--divider);
  display:flex;align-items:center;gap:12px;
  transform:translateY(100%);transition:transform .35s var(--ease);
  box-shadow:0 -8px 24px rgba(11,34,51,.06);
}
.sticky-cta.is-visible{transform:translateY(0)}
.sticky-cta-info{flex:1;min-width:0}
.sticky-cta-title{font-size:13px;font-weight:600;color:var(--ink);line-height:1.2}
.sticky-cta-sub{font-size:11.5px;color:var(--muted);margin-top:2px}
.sticky-cta .btn{flex-shrink:0;padding:11px 20px;min-height:44px;font-size:14px}

/* ---------- Mobile Menu Sheet ---------- */
.menu-sheet{position:fixed;inset:0;z-index:60;visibility:hidden;pointer-events:none}
.menu-sheet.is-open{visibility:visible;pointer-events:auto}
.menu-backdrop{position:absolute;inset:0;background:rgba(11,34,51,.55);opacity:0;transition:opacity .3s var(--ease)}
.menu-sheet.is-open .menu-backdrop{opacity:1}
.menu-panel{
  position:absolute;top:0;right:0;bottom:0;
  width:min(86%,340px);background:var(--surface);
  padding:22px 22px 32px;
  display:flex;flex-direction:column;gap:16px;
  transform:translateX(100%);transition:transform .35s var(--ease);
  box-shadow:-16px 0 40px rgba(11,34,51,.12);
}
.menu-sheet.is-open .menu-panel{transform:translateX(0)}
.menu-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px}
.menu-close{width:40px;height:40px;display:flex;align-items:center;justify-content:center;border-radius:8px;color:var(--ink)}
.menu-close:hover{background:var(--alt)}
.menu-close svg{width:20px;height:20px}
.menu-links{display:flex;flex-direction:column;gap:2px;flex:1;padding-top:14px;border-top:1px solid var(--divider)}
.menu-links a{
  padding:14px 4px;font-family:var(--font-serif);
  font-size:18px;font-weight:500;color:var(--ink);
  border-bottom:1px solid var(--divider);
  display:flex;align-items:center;justify-content:space-between;
}
.menu-links a:last-child{border-bottom:none}
.menu-links a svg{width:14px;height:14px;color:var(--brand)}
.menu-panel .btn{margin-top:auto}

/* Menu group (Programs with expandable sub-items) */
.menu-links .menu-group{border-bottom:1px solid var(--divider)}
.menu-links .menu-group-head{display:flex;align-items:center;justify-content:space-between;gap:4px}
.menu-links .menu-group-link{
  flex:1;
  padding:14px 4px;
  font-family:var(--font-serif);
  font-size:18px;font-weight:500;
  color:var(--ink);
  border-bottom:none;
  display:flex;align-items:center;
}
.menu-links .menu-group-toggle{
  width:44px;height:44px;flex-shrink:0;
  background:transparent;border:none;
  display:flex;align-items:center;justify-content:center;
  color:var(--brand);cursor:pointer;
  border-radius:8px;
}
.menu-links .menu-group-toggle:hover{background:var(--brand-soft)}
.menu-links .menu-group-toggle svg{width:14px;height:14px;transition:transform .3s var(--ease)}
.menu-links .menu-group.is-open .menu-group-toggle svg{transform:rotate(180deg)}
.menu-links .menu-group-sub{
  max-height:0;overflow:hidden;
  transition:max-height .35s var(--ease);
  background:var(--brand-softer);
  margin:0 -22px;padding:0 22px;
}
.menu-links .menu-group.is-open .menu-group-sub{max-height:200px}
.menu-links .menu-group-sub a{
  padding:12px 4px 12px 20px;
  font-family:var(--font-serif);
  font-size:15.5px;
  font-weight:400;
  color:var(--ink-2);
  border-bottom:1px solid rgba(11,34,51,.06);
  display:flex;align-items:center;justify-content:space-between;
}
.menu-links .menu-group-sub a:last-child{border-bottom:none}
.menu-links .menu-group-sub a svg{width:14px;height:14px;color:var(--brand)}

/* ---------- Booking Modal ---------- */
.modal{position:fixed;inset:0;z-index:70;visibility:hidden;pointer-events:none}
.modal.is-open{visibility:visible;pointer-events:auto}
.modal-backdrop{position:absolute;inset:0;background:rgba(11,34,51,.55);opacity:0;transition:opacity .3s var(--ease)}
.modal.is-open .modal-backdrop{opacity:1}
.modal-sheet{
  position:absolute;left:0;right:0;bottom:0;
  background:var(--surface);border-radius:20px 20px 0 0;
  padding:22px 22px calc(28px + env(safe-area-inset-bottom));
  transform:translateY(100%);transition:transform .35s var(--ease);
  max-height:88vh;overflow-y:auto;
}
.modal.is-open .modal-sheet{transform:translateY(0)}
.modal-grip{width:40px;height:4px;border-radius:2px;background:var(--divider-strong);margin:0 auto 14px}
.modal h3{font-family:var(--font-sans);font-size:20px;font-weight:700;line-height:1.25;letter-spacing:-.005em}
.modal .lead{margin-top:8px;font-size:14.5px}
.form{margin-top:22px;display:flex;flex-direction:column;gap:14px}
.field label{display:block;font-size:12.5px;font-weight:600;color:var(--ink);letter-spacing:.02em;margin-bottom:6px}
.field input,.field select,.field textarea{
  width:100%;padding:12px 14px;
  border:1.5px solid var(--divider-strong);border-radius:10px;
  background:var(--surface);
  font-family:var(--font-sans);font-size:15px;color:var(--ink);
  transition:border-color .2s var(--ease),box-shadow .2s var(--ease);
  min-height:46px;
}
.field textarea{min-height:80px;resize:vertical}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--brand);box-shadow:0 0 0 3px var(--brand-soft);
}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form .btn{margin-top:6px}
.form-note{margin-top:12px;font-size:12px;color:var(--muted);text-align:center}
.form-thanks{display:none;padding:18px;background:var(--brand-soft);border-radius:12px;text-align:center}
.form-thanks.is-visible{display:block}
.form-thanks .check-big{
  width:44px;height:44px;border-radius:50%;background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;margin:0 auto 10px;
}
.form-thanks p{font-size:14.5px;color:var(--ink)}

/* ---------- Reveal ---------- */
.reveal{opacity:0;transform:translateY(10px);transition:opacity .4s var(--ease),transform .4s var(--ease)}
.reveal.is-in{opacity:1;transform:translateY(0)}

@media (max-width:360px){
  h2{font-size:23px}
  .hero-chips{width:calc(100% - 12px);gap:4px;padding-top:16px}
  .hero-chip{min-height:30px;padding:0 3px;gap:3px;font-size:9px}
  .hero-chip svg{width:9.5px;height:9.5px}
  .method-keywords{padding-left:4px;padding-right:4px}
  .method-kw{font-size:10.5px}
  .method-kw:not(:last-child)::after{margin-left:6px;font-size:13px}
  .program-head{padding:14px}
  .program-cover{width:96px;height:120px}
  .cta-panel{padding:28px 20px}
  .case-steps{gap:2px}
  .case-step-label{font-size:10px}
}
@media (min-width:481px){
  h2{font-size:28px}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:0.01ms !important;transition-duration:0.01ms !important;scroll-behavior:auto !important}
}

/* ===== SPA views ===== */
.page-view{display:none}
.page-view.is-active{display:block;animation:viewIn .28s cubic-bezier(.2,.7,.2,1)}
@keyframes viewIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}

/* ===== Merged subpage styles ===== */

/* ---------- Programs page-specific ---------- */
.crumbs{padding:14px 0 4px;font-size:12.5px;color:var(--muted);font-family:var(--font-sans)}
.crumbs a{color:var(--brand);border-bottom:1px solid var(--brand-soft);padding-bottom:1px}
.crumbs .sep{margin:0 8px;color:var(--divider-strong)}
.crumbs .cur{color:var(--ink-2);font-weight:500}

.sub-hero{padding:8px 0 32px;position:relative;overflow:hidden}
.sub-hero::before{
  content:"";position:absolute;top:-100px;right:-80px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle at center,var(--brand-soft) 0%,transparent 70%);
  pointer-events:none;z-index:0;
}
.sub-hero .wrap{position:relative;z-index:1}
.sub-hero-eyebrow{
  font-family:var(--font-sans);font-size:11.5px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;color:var(--brand);
  display:inline-flex;align-items:center;gap:8px;
}
.sub-hero-eyebrow::before{content:"";display:inline-block;width:20px;height:1.5px;background:var(--brand);border-radius:2px}
.sub-hero h1{
  margin-top:12px;
  color:var(--brand);
  font-family:var(--font-serif);
  font-size:clamp(32px,8.5vw,38px);
  letter-spacing:-.02em;line-height:1.02;font-weight:600;
}
.sub-hero .lead{margin-top:12px;font-size:16px;color:var(--ink-2);max-width:34ch;line-height:1.55}

#view-programs .programs-hero-layout{
  display:block;
  overflow:hidden;
  border-radius:12px;
  background:#F8FBFD;
  box-shadow:var(--shadow-1);
}
#view-programs .programs-hero-layout img{
  display:block;
  width:100%;
  height:auto;
}

/* Stage teaser cards */
.stage-teasers{display:flex;flex-direction:column;gap:14px;margin-top:8px}
.stage-teaser{
  display:block;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  overflow:hidden;
  transition:border-color .2s var(--ease),box-shadow .25s var(--ease),transform .2s var(--ease);
  color:inherit;
}
.stage-teaser:hover{border-color:var(--brand-soft);box-shadow:var(--shadow-2);transform:translateY(-1px)}
.stage-teaser-photo{
  position:relative;
  aspect-ratio:16/9;
  background:linear-gradient(135deg,var(--brand-softer),var(--brand-soft));
  overflow:hidden;
}
.stage-teaser-photo img{
  position:absolute;inset:0;
  width:100%;height:100%;object-fit:cover;display:block;
}
.stage-teaser-photo-tag{
  position:absolute;top:12px;left:12px;
  padding:4px 10px;
  background:rgba(255,255,255,.94);
  border-radius:999px;
  font-family:var(--font-sans);font-size:11px;font-weight:600;
  color:var(--brand-darker);letter-spacing:.06em;text-transform:uppercase;
  -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
}
.stage-teaser-body{padding:18px}
.stage-teaser-name{
  font-family:var(--font-serif);
  font-size:22px;font-weight:600;
  color:var(--brand);letter-spacing:-.01em;line-height:1.1;
}
.stage-teaser-level{
  margin-top:6px;
  font-family:var(--font-sans);
  font-size:12.5px;font-weight:500;color:var(--ink-2);letter-spacing:.01em;
}
.stage-teaser-level .lvl-grade{color:var(--ink);font-weight:600}
.stage-teaser-level .lvl-sep{color:var(--divider-strong);margin:0 4px}
.stage-teaser-level .lvl-code{color:var(--brand-darker);opacity:.75}
.stage-teaser-desc{
  margin-top:10px;
  font-family:var(--font-sans);
  font-size:14px;line-height:1.5;color:var(--ink-2);
}
.stage-teaser-link{
  margin-top:14px;
  display:inline-flex;align-items:center;gap:6px;
  color:var(--brand);font-weight:600;font-size:14px;
  border-bottom:1.5px solid var(--brand-soft);padding-bottom:2px;
}
.stage-teaser-link svg{width:14px;height:14px;transition:transform .2s var(--ease)}
.stage-teaser:hover .stage-teaser-link svg{transform:translateX(3px)}

/* Class Formats */
.format-list{display:flex;flex-direction:column;gap:14px}
.format-card{
  padding:20px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
}
.format-header{display:flex;align-items:center;gap:14px;margin-bottom:14px}
.format-icon{
  width:44px;height:44px;flex-shrink:0;
  border-radius:10px;
  background:var(--brand-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.format-icon img{display:block;width:44px;height:44px;object-fit:cover}
.format-name{font-family:var(--font-serif);font-size:19px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.format-tagline{margin-top:2px;font-size:12.5px;color:var(--muted);letter-spacing:.03em}
.format-desc{font-size:14px;line-height:1.55;color:var(--ink-2);margin-bottom:14px}
.format-specs{
  display:grid;grid-template-columns:auto 1fr;
  gap:8px 16px;
  padding:14px 16px;
  background:var(--alt);
  border-radius:var(--r-sm);
}
.format-specs dt{
  font-family:var(--font-sans);font-size:11px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;color:var(--brand-darker);
  line-height:1.4;
}
.format-specs dd{
  font-family:var(--font-sans);font-size:13px;color:var(--ink);margin:0;line-height:1.4;
}

/* Assessment path (mini) */
.assessment-path{
  padding:24px 22px;
  background:linear-gradient(135deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;border-radius:var(--r);
}
.assessment-steps{
  list-style:none;padding:0;margin:14px 0 0;
  display:flex;flex-direction:column;gap:10px;
  counter-reset:step;
}
.assessment-steps li{
  position:relative;padding-left:34px;
  font-size:14px;line-height:1.5;color:var(--ink);
  counter-increment:step;
}
.assessment-steps li::before{
  content:counter(step);
  position:absolute;left:0;top:0;
  width:22px;height:22px;border-radius:50%;
  background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-serif);font-size:12.5px;font-weight:600;
}
.assessment-path .btn{margin-top:18px;width:100%}

/* FAQ (reuse shared styles but inline lightweight) */
.faq{display:flex;flex-direction:column;gap:2px}
.faq-item{border-bottom:1px solid var(--divider)}
.faq-item:first-child{border-top:1px solid var(--divider)}
.faq-btn{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:14px;
  padding:16px 4px;text-align:left;
  font-family:var(--font-sans);font-size:15px;font-weight:600;color:var(--ink);
  letter-spacing:.005em;background:transparent;border:none;cursor:pointer;
}
.faq-btn .pm{
  width:26px;height:26px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;background:var(--alt);color:var(--brand);
  transition:transform .3s var(--ease),background .2s var(--ease);
}
.faq-btn .pm svg{width:12px;height:12px}
.faq-item.is-open .faq-btn .pm{transform:rotate(45deg);background:var(--brand-soft)}
.faq-body{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.faq-item.is-open .faq-body{max-height:300px}
.faq-body-in{padding:0 4px 18px;font-size:14.5px;line-height:1.6;color:var(--ink-2)}


/* ---------- Subpage-specific ---------- */
.crumbs{padding:14px 0 4px;font-size:12.5px;color:var(--muted);font-family:var(--font-sans)}
.crumbs a{color:var(--brand);border-bottom:1px solid var(--brand-soft);padding-bottom:1px}
.crumbs .sep{margin:0 8px;color:var(--divider-strong)}
.crumbs .cur{color:var(--ink-2);font-weight:500}

.sub-hero{padding:8px 0 36px;position:relative;overflow:hidden}
.sub-hero::before{
  content:"";position:absolute;top:-100px;right:-80px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle at center,var(--brand-soft) 0%,transparent 70%);
  pointer-events:none;z-index:0;
}
.sub-hero .wrap{position:relative;z-index:1}
.sub-hero-chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:4px 12px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-radius:999px;
  font-family:var(--font-sans);font-size:12px;font-weight:600;
  color:var(--brand-darker);letter-spacing:.01em;line-height:1.4;
}
.sub-hero-chip .dot{width:6px;height:6px;border-radius:50%;background:var(--brand)}
.sub-hero h1{
  margin-top:12px;
  color:var(--brand);
  font-family:var(--font-serif);
  font-size:clamp(32px,8.5vw,38px);
  letter-spacing:-.02em;line-height:1.02;font-weight:600;
}
.sub-hero .lead{margin-top:12px;font-size:16px;color:var(--ink-2);max-width:34ch;line-height:1.55}
.sub-hero-photo{
  margin-top:24px;
  aspect-ratio:4/3;
  border-radius:var(--r);
  overflow:hidden;position:relative;
  background:linear-gradient(135deg,var(--brand-softer),var(--brand-soft));
}
.sub-hero-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

.skill-grid{display:flex;flex-direction:column;gap:10px}
.skill-card{
  padding:14px 16px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:flex-start;
}
.skill-icon{
  width:36px;height:36px;flex-shrink:0;
  border-radius:8px;
  background:var(--brand-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.skill-icon svg{width:20px;height:20px}
.skill-icon img{display:block;width:36px;height:36px;object-fit:cover}
.skill-title{font-family:var(--font-sans);font-size:15px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.skill-desc{margin-top:4px;font-size:13.5px;color:var(--ink-2);line-height:1.5}

.materials-card{
  padding:26px 22px;text-align:center;
  background:linear-gradient(135deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;border-radius:var(--r);
}
.materials-card--wonders{
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:flex-start;
  text-align:left;
  overflow:hidden;
  background:
    linear-gradient(90deg,rgba(6,36,54,.90) 0%,rgba(6,36,54,.72) 48%,rgba(6,36,54,.16) 100%),
    url("../img/foundation/wonders.jpg") center/cover no-repeat;
  border-color:rgba(12,130,190,.24);
}
.materials-name{
  font-family:var(--font-serif);
  font-size:32px;font-weight:600;
  color:var(--brand-darker);letter-spacing:-.015em;line-height:1;
}
.materials-card--wonders .materials-name{
  color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,.30);
}
.materials-note{
  margin-top:10px;
  font-size:13.5px;color:var(--ink-2);line-height:1.5;
  max-width:34ch;margin-left:auto;margin-right:auto;
}
.materials-card--wonders .materials-note{
  color:rgba(255,255,255,.92);
  max-width:30ch;
  margin-left:0;
  margin-right:0;
  text-shadow:0 1px 8px rgba(0,0,0,.24);
}
.materials-alongside{
  margin-top:22px;margin-bottom:12px;
  font-family:var(--font-serif);
  font-size:14px;font-style:italic;
  color:var(--ink-2);letter-spacing:.01em;
  text-align:center;
}

.lg-block{
  padding:18px 22px;
  background:var(--brand-softer);
  border-left:3px solid var(--brand);
  border-radius:0 var(--r) var(--r) 0;
}
.lg-block dl{display:grid;grid-template-columns:auto 1fr;gap:10px 24px;margin:0}
.lg-block dt{
  font-family:var(--font-serif);
  font-size:17px;font-weight:600;
  color:var(--brand-darker);line-height:1;
}
.lg-block dd{
  font-family:var(--font-sans);
  font-size:14.5px;color:var(--ink);
  margin:0;font-weight:500;line-height:1;
}
.lg-image{
  display:block;width:100%;height:auto;
  border-radius:var(--r);
  margin:0;
}

.class-preview{
  aspect-ratio:16/9;border-radius:var(--r);overflow:hidden;
  background:linear-gradient(135deg,#0B3A54 0%,#0F5578 55%,#1497D0 100%);
  position:relative;cursor:pointer;isolation:isolate;
}
.class-preview::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 80% 20%,rgba(255,255,255,.14) 0%,transparent 45%),
    radial-gradient(ellipse at 20% 90%,rgba(232,169,75,.12) 0%,transparent 40%);
}
.class-preview-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:56px;height:56px;border-radius:50%;
  background:rgba(255,255,255,.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.20);z-index:2;
}
.class-preview-play svg{width:18px;height:18px;color:var(--brand);margin-left:2px}
.class-preview-label{
  position:absolute;bottom:14px;left:16px;
  color:#fff;font-family:var(--font-serif);font-size:14px;
  letter-spacing:.005em;z-index:2;
}
.class-preview-tag{
  position:absolute;top:14px;left:14px;
  padding:5px 10px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  font-size:10.5px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  border-radius:999px;z-index:2;
}
.class-preview.has-cover{background:var(--ink)}
.class-preview-cover{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
}
.class-preview.has-cover::before{
  z-index:1;
  background:linear-gradient(180deg,rgba(5,32,48,.04) 0%,rgba(5,32,48,.34) 100%);
}

.signal-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.signal-list li{
  position:relative;
  padding:12px 14px 12px 34px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  font-size:14px;color:var(--ink);line-height:1.5;
}
.signal-list li::before{
  content:"";position:absolute;
  left:14px;top:16px;
  width:8px;height:8px;border-radius:50%;
  background:var(--brand);opacity:.6;
}

.sub-cta{
  padding:30px 22px;text-align:center;
  background:linear-gradient(180deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;border-radius:var(--r-lg);
  box-shadow:var(--shadow-2);
}
.sub-cta .eyebrow{color:var(--brand-darker);justify-content:center}
.sub-cta h2{margin-top:8px;font-size:clamp(24px,7vw,28px);line-height:1.18;color:var(--ink);font-weight:600}
.sub-cta p{margin-top:10px;font-size:14.5px;color:var(--ink-2);max-width:34ch;margin-left:auto;margin-right:auto}
.sub-cta .btn{margin-top:22px}

.next-stage{
  margin-top:24px;
  padding:18px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.next-stage-body{min-width:0}
.next-stage-tag{font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--brand)}
.next-stage-title{margin-top:4px;font-family:var(--font-serif);font-size:18px;font-weight:600;color:var(--ink)}
.next-stage-sub{margin-top:2px;font-size:12.5px;color:var(--ink-3)}
.next-stage svg{width:18px;height:18px;color:var(--brand);flex-shrink:0}


/* ---------- Subpage-specific ---------- */
.crumbs{padding:14px 0 4px;font-size:12.5px;color:var(--muted);font-family:var(--font-sans)}
.crumbs a{color:var(--brand);border-bottom:1px solid var(--brand-soft);padding-bottom:1px}
.crumbs .sep{margin:0 8px;color:var(--divider-strong)}
.crumbs .cur{color:var(--ink-2);font-weight:500}

.sub-hero{padding:8px 0 36px;position:relative;overflow:hidden}
.sub-hero::before{
  content:"";position:absolute;top:-100px;right:-80px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle at center,var(--brand-soft) 0%,transparent 70%);
  pointer-events:none;z-index:0;
}
.sub-hero .wrap{position:relative;z-index:1}
.sub-hero-chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:4px 12px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-radius:999px;
  font-family:var(--font-sans);font-size:12px;font-weight:600;
  color:var(--brand-darker);letter-spacing:.01em;line-height:1.4;
}
.sub-hero-chip .dot{width:6px;height:6px;border-radius:50%;background:var(--brand)}
.sub-hero h1{
  margin-top:12px;
  color:var(--brand);
  font-family:var(--font-serif);
  font-size:clamp(32px,8.5vw,38px);
  letter-spacing:-.02em;line-height:1.02;font-weight:600;
}
.sub-hero .lead{margin-top:12px;font-size:16px;color:var(--ink-2);max-width:34ch;line-height:1.55}
.sub-hero-photo{
  margin-top:24px;
  aspect-ratio:4/3;
  border-radius:var(--r);
  overflow:hidden;position:relative;
  background:linear-gradient(135deg,var(--brand-softer),var(--brand-soft));
}
.sub-hero-photo img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}

.skill-grid{display:flex;flex-direction:column;gap:10px}
.skill-card{
  padding:14px 16px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:flex-start;
}
.skill-icon{
  width:36px;height:36px;flex-shrink:0;
  border-radius:8px;
  background:var(--brand-soft);color:var(--brand);
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.skill-icon svg{width:20px;height:20px}
.skill-icon img{display:block;width:36px;height:36px;object-fit:cover}
.skill-title{font-family:var(--font-sans);font-size:15px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.skill-desc{margin-top:4px;font-size:13.5px;color:var(--ink-2);line-height:1.5}

/* Literature card (Breakthrough-specific) */
.lit-list{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.lit-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  min-height:178px;
  padding:14px 8px 13px;
  background:linear-gradient(180deg,var(--surface) 0%,#f8fbfd 100%);
  border:1px solid var(--divider);
  border-radius:var(--r);
  text-align:center;
  box-shadow:0 10px 22px rgba(10,36,64,.04);
}
.lit-cover{
  width:56px;height:80px;flex-shrink:0;
  border-radius:6px;overflow:hidden;
  background:var(--surface-muted);
  border:1px solid var(--divider);
  box-shadow:0 8px 16px rgba(10,36,64,.08);
  display:flex;align-items:center;justify-content:center;
  color:var(--brand-darker);
  font-family:var(--font-serif);font-size:11px;font-style:italic;
  text-align:center;line-height:1.2;padding:0;
}
.lit-cover img{display:block;width:100%;height:100%;object-fit:cover}
.lit-info{display:flex;flex-direction:column;align-items:center;gap:7px;min-width:0;width:100%}
.lit-name{
  min-height:36px;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-serif);
  font-size:15px;font-weight:600;line-height:1.2;
  color:var(--ink);letter-spacing:0;
}
.lit-level{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:22px;padding:0 9px;
  border-radius:999px;
  background:rgba(16,145,204,.08);
  border:1px solid rgba(16,145,204,.18);
  color:var(--brand-darker);
  font-family:var(--font-sans);
  font-size:10.5px;font-weight:700;letter-spacing:.04em;line-height:1;
  white-space:nowrap;
}

.lit-note{
  margin-top:14px;
  font-size:12.5px;color:var(--muted);
  text-align:center;line-height:1.5;
}

.lg-block{
  padding:18px 22px;
  background:var(--brand-softer);
  border-left:3px solid var(--brand);
  border-radius:0 var(--r) var(--r) 0;
}
.lg-block dl{display:grid;grid-template-columns:auto 1fr;gap:10px 24px;margin:0}
.lg-block dt{
  font-family:var(--font-serif);
  font-size:17px;font-weight:600;
  color:var(--brand-darker);line-height:1;
}
.lg-block dd{
  font-family:var(--font-sans);
  font-size:14.5px;color:var(--ink);
  margin:0;font-weight:500;line-height:1;
}
.lg-image{
  display:block;width:100%;height:auto;
  border-radius:var(--r);
  margin:0;
}

.class-preview{
  aspect-ratio:16/9;border-radius:var(--r);overflow:hidden;
  background:linear-gradient(135deg,#0B3A54 0%,#0F5578 55%,#1497D0 100%);
  position:relative;cursor:pointer;isolation:isolate;
}
.class-preview::before{
  content:"";position:absolute;inset:0;
  background:
    radial-gradient(ellipse at 80% 20%,rgba(255,255,255,.14) 0%,transparent 45%),
    radial-gradient(ellipse at 20% 90%,rgba(232,169,75,.12) 0%,transparent 40%);
}
.class-preview-play{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:56px;height:56px;border-radius:50%;
  background:rgba(255,255,255,.95);
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 6px 20px rgba(0,0,0,.20);z-index:2;
}
.class-preview-play svg{width:18px;height:18px;color:var(--brand);margin-left:2px}
.class-preview-label{
  position:absolute;bottom:14px;left:16px;
  color:#fff;font-family:var(--font-serif);font-size:14px;
  letter-spacing:.005em;z-index:2;
}
.class-preview-tag{
  position:absolute;top:14px;left:14px;
  padding:5px 10px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.24);
  color:#fff;
  font-size:10.5px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;
  border-radius:999px;z-index:2;
}

.signal-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.signal-list li{
  position:relative;
  padding:12px 14px 12px 34px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  font-size:14px;color:var(--ink);line-height:1.5;
}
.signal-list li::before{
  content:"";position:absolute;
  left:14px;top:16px;
  width:8px;height:8px;border-radius:50%;
  background:var(--brand);opacity:.6;
}

.sub-cta{
  padding:30px 22px;text-align:center;
  background:linear-gradient(180deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;border-radius:var(--r-lg);
  box-shadow:var(--shadow-2);
}
.sub-cta .eyebrow{color:var(--brand-darker);justify-content:center}
.sub-cta h2{margin-top:8px;font-size:clamp(24px,7vw,28px);line-height:1.18;color:var(--ink);font-weight:600}
.sub-cta p{margin-top:10px;font-size:14.5px;color:var(--ink-2);max-width:34ch;margin-left:auto;margin-right:auto}
.sub-cta .btn{margin-top:22px}

.next-stage{
  margin-top:24px;
  padding:18px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.next-stage-body{min-width:0}
.next-stage-tag{font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--brand)}
.next-stage-title{margin-top:4px;font-family:var(--font-serif);font-size:18px;font-weight:600;color:var(--ink)}
.next-stage-sub{margin-top:2px;font-size:12.5px;color:var(--ink-3)}
.next-stage svg{width:18px;height:18px;color:var(--brand);flex-shrink:0}


/* ---------- Educators page-specific ---------- */
.crumbs{padding:14px 0 4px;font-size:12.5px;color:var(--muted);font-family:var(--font-sans)}
.crumbs a{color:var(--brand);border-bottom:1px solid var(--brand-soft);padding-bottom:1px}
.crumbs .sep{margin:0 8px;color:var(--divider-strong)}
.crumbs .cur{color:var(--ink-2);font-weight:500}

.sub-hero{padding:8px 0 24px;position:relative;overflow:hidden}
.sub-hero::before{
  content:"";position:absolute;top:-100px;right:-80px;
  width:280px;height:280px;border-radius:50%;
  background:radial-gradient(circle at center,var(--brand-soft) 0%,transparent 70%);
  pointer-events:none;z-index:0;
}
.sub-hero .wrap{position:relative;z-index:1}
.sub-hero-eyebrow{
  font-family:var(--font-sans);font-size:11.5px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;color:var(--brand);
  display:inline-flex;align-items:center;gap:8px;
}
.sub-hero-eyebrow::before{content:"";display:inline-block;width:20px;height:1.5px;background:var(--brand);border-radius:2px}
.sub-hero h1{
  margin-top:12px;
  color:var(--brand);
  font-family:var(--font-serif);
  font-size:clamp(30px,7.8vw,36px);
  letter-spacing:-.02em;line-height:1.06;font-weight:600;
}
.sub-hero .lead{margin-top:14px;font-size:16px;color:var(--ink-2);max-width:36ch;line-height:1.55}

.trust-row{
  margin-top:22px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.trust-row .badge{
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:999px;
  font-family:var(--font-sans);font-size:12px;font-weight:600;
  color:var(--ink-2);
}
.trust-row .badge svg{width:12px;height:12px;color:var(--brand)}

.team-note{
  margin-top:22px;
  padding:16px 18px;
  background:var(--brand-softer);
  border-left:3px solid var(--brand);
  border-radius:0 var(--r) var(--r) 0;
  font-size:14px;line-height:1.55;color:var(--ink-2);
}

/* Hero trust grid — 3 credential cards inside sub-hero */
.hero-trust-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.hero-trust-item{
  padding:16px 10px 14px;
  background:var(--surface);
  border:1px solid var(--brand-soft);
  border-radius:14px;
  display:flex;flex-direction:column;align-items:center;gap:10px;
  text-align:center;
  box-shadow:0 2px 8px rgba(11,34,51,.06);
  min-width:0;
  transition:transform .2s var(--ease),box-shadow .2s var(--ease);
}
.hero-trust-item:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(11,34,51,.09);
}
.hero-trust-icon{
  position:relative;
  width:68px;height:68px;
  border-radius:50%;
  background:var(--brand-softer);
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.hero-trust-icon img{
  width:100%;height:100%;
  object-fit:cover;
  display:block;
}
.hero-trust-icon::after{
  content:"";
  position:absolute;inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(11,34,51,.06),inset 0 -10px 14px rgba(0,0,0,.05);
  pointer-events:none;
}
.hero-trust-icon svg{width:20px;height:20px}
.hero-trust-label{
  font-family:var(--font-sans);
  font-size:12px;font-weight:700;
  color:var(--ink);
  letter-spacing:.015em;
  line-height:1.3;
}
@media (max-width:400px){
  .hero-trust-grid{gap:8px}
  .hero-trust-item{padding:14px 6px 12px;border-radius:12px;gap:8px}
  .hero-trust-icon{width:60px;height:60px}
  .hero-trust-icon svg{width:18px;height:18px}
  .hero-trust-label{font-size:11px;letter-spacing:.01em}
}
@media (max-width:340px){
  .hero-trust-label{font-size:10.5px}
}

/* Teacher cards — Option B: side-by-side compact (photo left, content right) */
.teacher-list{display:flex;flex-direction:column;gap:14px}
.teacher-card{
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
  padding:16px;
  overflow:hidden;
  transition:border-color .25s var(--ease),box-shadow .25s var(--ease);
}
.teacher-card.is-open{border-color:var(--brand-soft);box-shadow:var(--shadow-2)}
.teacher-card-head{
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  align-items:flex-start;
}
.teacher-photo-lg{
  position:relative;
  width:120px;height:150px;
  aspect-ratio:auto;
  border-radius:12px;
  overflow:hidden;
  background:linear-gradient(135deg,var(--brand) 0%,var(--brand-deep) 100%);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.teacher-photo-lg img{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;
}
.teacher-photo-lg > img ~ .teacher-monogram{display:none}
.teacher-monogram{
  font-family:var(--font-serif);
  font-size:56px;font-weight:600;
  color:rgba(255,255,255,.92);
  letter-spacing:-.02em;line-height:1;
}
.teacher-body-lg{padding:0;min-width:0}
.teacher-name-lg{
  font-family:var(--font-serif);
  font-size:22px;font-weight:600;
  color:var(--brand);letter-spacing:-.01em;line-height:1.15;
}
.teacher-cred-lg{
  margin-top:5px;
  font-family:var(--font-sans);
  font-size:10.5px;font-weight:600;
  letter-spacing:.06em;text-transform:uppercase;
  color:var(--brand-darker);
}
.teacher-focus{
  margin-top:10px;
  display:flex;flex-wrap:wrap;gap:5px;
}
.teacher-focus-chip{
  padding:3px 8px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-radius:999px;
  font-family:var(--font-sans);font-size:10.5px;font-weight:500;
  color:var(--brand-darker);letter-spacing:.005em;line-height:1.35;
}
.teacher-quote-lg{
  margin-top:14px;
  font-family:var(--font-serif);
  font-size:14.5px;font-style:italic;font-weight:500;
  color:var(--ink);
  line-height:1.5;
  padding-left:12px;
  border-left:2px solid var(--accent);
}
.teacher-expand-btn{
  width:100%;
  margin-top:14px;
  padding:11px 14px;
  background:transparent;
  border:1px solid var(--divider);
  border-radius:var(--r-sm);
  color:var(--brand);
  font-family:var(--font-sans);font-size:13.5px;font-weight:600;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:8px;
  transition:background .2s var(--ease),border-color .2s var(--ease);
}
.teacher-expand-btn:hover{background:var(--brand-soft);border-color:var(--brand-soft)}
.teacher-expand-btn svg{width:12px;height:12px;transition:transform .3s var(--ease)}
.teacher-card.is-open .teacher-expand-btn svg{transform:rotate(180deg)}

.teacher-expand-body{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.teacher-card.is-open .teacher-expand-body{max-height:900px}
.teacher-expand-in{
  padding:16px 0 0;
  border-top:1px solid var(--divider);
  margin-top:14px;
}
.teacher-bio-block{margin-bottom:14px}
.teacher-bio-block:last-child{margin-bottom:0}
.teacher-bio-label{
  font-family:var(--font-sans);
  font-size:10.5px;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--brand);margin-bottom:6px;
}
.teacher-bio-text{
  font-family:var(--font-sans);
  font-size:13.5px;line-height:1.55;color:var(--ink);
}
.teacher-bio-facts{
  font-family:var(--font-sans);
  font-size:13.5px;font-weight:600;
  color:var(--brand-darker);
  line-height:1.5;letter-spacing:.005em;
}
.teacher-bio-facts .sep{
  display:inline-block;
  margin:0 7px;
  color:var(--brand);
  opacity:.55;
  font-weight:500;
}

/* ─── Expand region — icons, approach panel, level bar ─── */
.teacher-bio-label{
  display:inline-flex;align-items:center;gap:8px;
  margin-bottom:10px;
}
.teacher-bio-ico{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;
  border-radius:50%;
  background:var(--brand-soft);
  color:var(--brand-darker);
  flex-shrink:0;
}
.teacher-bio-ico svg{width:12px;height:12px}

.teacher-bio-block--approach .teacher-bio-text{
  padding:14px 16px;
  background:linear-gradient(135deg,var(--brand-softer) 0%,rgba(232,244,251,.45) 100%);
  border:1px solid var(--brand-soft);
  border-left:3px solid var(--brand);
  border-radius:0 var(--r-sm) var(--r-sm) 0;
  font-size:14px;line-height:1.6;
  color:var(--ink);
}

/* ─── Card polish ─── */
.teacher-card:hover{border-color:var(--brand-soft);box-shadow:var(--shadow-1)}
.teacher-focus-chip{display:inline-flex;align-items:center}
.teacher-focus-chip::before{
  content:"";
  display:inline-block;
  width:4px;height:4px;
  border-radius:50%;
  background:var(--brand);
  margin-right:5px;
  opacity:.7;
  flex-shrink:0;
}
.teacher-photo-lg::after{
  content:"";
  position:absolute;inset:0;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14),inset 0 -30px 44px rgba(0,0,0,.10);
  pointer-events:none;
}

@media (max-width:400px){
  .teacher-card{padding:14px}
  .teacher-card-head{grid-template-columns:100px 1fr;gap:12px}
  .teacher-photo-lg{width:100px;height:125px;border-radius:10px}
  .teacher-monogram{font-size:46px}
  .teacher-name-lg{font-size:20px}
  .teacher-quote-lg{font-size:14px}
}

/* Team Roles block (Teacher + TA) */
.team-deliverable{
  margin-top:16px;
  display:flex;gap:12px;align-items:flex-start;
  padding:12px 14px;
  background:rgba(255,255,255,.55);
  border:1px dashed #C6DEEC;
  border-radius:var(--r-sm);
  font-size:13px;color:var(--ink-2);line-height:1.55;
}
.team-deliverable svg{width:18px;height:18px;color:var(--brand);flex-shrink:0;margin-top:2px}
.team-deliverable strong{color:var(--ink);font-weight:600}
.coach-block{
  padding:26px 22px;
  background:linear-gradient(135deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;
  border-radius:var(--r-lg);
}
.coach-title{
  font-family:var(--font-serif);
  font-size:22px;font-weight:600;
  color:var(--brand);letter-spacing:-.01em;line-height:1.15;
}
.coach-lead{
  margin-top:10px;
  font-family:var(--font-sans);
  font-size:14.5px;line-height:1.55;color:var(--ink-2);
}
.coach-roles{
  margin-top:22px;
  display:flex;flex-direction:column;gap:14px;
}
.coach-role{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;align-items:center;
  padding:14px 16px;
  background:rgba(255,255,255,.7);
  border-radius:var(--r-sm);
}
.coach-role-icon{
  width:34px;height:34px;flex-shrink:0;
  border-radius:8px;
  background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.coach-role-icon svg{width:18px;height:18px}
.coach-role-icon img{display:block;width:34px;height:34px;object-fit:cover}
.coach-role-title{font-family:var(--font-sans);font-size:14px;font-weight:600;color:var(--ink);letter-spacing:-.005em}
.coach-role-desc{margin-top:4px;font-size:13px;color:var(--ink-2);line-height:1.5}

/* Assessment CTA reused */
.sub-cta{
  padding:30px 22px;text-align:center;
  background:linear-gradient(180deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;border-radius:var(--r-lg);
  box-shadow:var(--shadow-2);
}
.sub-cta .eyebrow{color:var(--brand-darker);justify-content:center}
.sub-cta h2{margin-top:8px;font-size:clamp(24px,7vw,28px);line-height:1.18;color:var(--ink);font-weight:600}
.sub-cta p{margin-top:10px;font-size:14.5px;color:var(--ink-2);max-width:34ch;margin-left:auto;margin-right:auto}
.sub-cta .btn{margin-top:22px}

/* Match note (after teacher list) */
.team-match-note{
  margin-top:22px;
  display:flex;gap:14px;align-items:flex-start;
  padding:16px 18px;
  background:var(--brand-softer);
  border:1px solid var(--brand-soft);
  border-left:3px solid var(--brand);
  border-radius:0 var(--r) var(--r) 0;
}
.team-match-note > svg{
  width:22px;height:22px;
  color:var(--brand);flex-shrink:0;margin-top:1px;
}
.team-match-note-text{
  font-family:var(--font-sans);
  font-size:13.5px;line-height:1.55;color:var(--ink-2);
}
.team-match-note-text strong{color:var(--ink);font-weight:600}

/* Teaching Philosophy (3 numbered cards, stacked) */
.ed-philosophy{display:flex;flex-direction:column;gap:12px}
.ed-phil{
  position:relative;
  padding:20px 20px 18px 62px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
}
.ed-phil-num{
  position:absolute;
  top:20px;left:18px;
  width:32px;height:32px;
  border-radius:50%;
  background:var(--brand);color:#fff;
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-serif);
  font-size:14px;font-weight:600;letter-spacing:.02em;
  box-shadow:0 4px 10px rgba(20,151,208,.24);
}
.ed-phil-title{
  font-family:var(--font-sans);
  font-size:16px;font-weight:600;
  color:var(--ink);letter-spacing:-.005em;line-height:1.3;
}
.ed-phil-desc{
  margin-top:6px;
  font-family:var(--font-sans);
  font-size:14px;line-height:1.55;color:var(--ink-2);
}


/* ===== Method view (class timeline) ===== */
.class-timeline{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.class-timeline li{display:grid;grid-template-columns:auto 1fr;gap:14px;padding:14px 16px;background:var(--surface);border:1px solid var(--divider);border-radius:var(--r);font-size:14px;line-height:1.55;color:var(--ink-2)}
.ct-time{font-family:var(--font-serif);font-size:12.5px;font-weight:600;color:var(--brand-darker);letter-spacing:.02em;white-space:nowrap;padding-top:2px}
.class-timeline li strong{color:var(--ink);font-weight:600}

/* ===== Tuition view ===== */
.price-line{margin-bottom:14px;font-family:var(--font-sans);font-size:14px;color:var(--ink-2)}
.price-amt{font-family:var(--font-serif);font-size:26px;font-weight:600;color:var(--brand);letter-spacing:-.01em}
.price-per{color:var(--ink-3);font-size:12.5px}
.incl-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:6px}
.incl-list li{position:relative;padding-left:18px;font-size:13.5px;line-height:1.5;color:var(--ink-2)}
.incl-list li::before{content:"";position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--brand)}
.price-note{margin-top:16px;font-size:12.5px;color:var(--ink-3);text-align:center;line-height:1.5}

.esa-block{padding:20px 22px;background:linear-gradient(135deg,var(--brand-softer),var(--brand-soft));border:1px solid #D5EAF5;border-radius:var(--r);margin-bottom:16px}
.esa-block-title{font-family:var(--font-serif);font-size:18px;font-weight:600;color:var(--brand-darker);letter-spacing:-.005em;margin-bottom:12px}
.esa-steps{list-style:none;padding:0;margin:0;counter-reset:e;display:flex;flex-direction:column;gap:10px}
.esa-steps li{position:relative;padding-left:34px;font-size:14px;line-height:1.5;color:var(--ink);counter-increment:e}
.esa-steps li::before{content:counter(e);position:absolute;left:0;top:0;width:22px;height:22px;border-radius:50%;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-family:var(--font-serif);font-size:12.5px;font-weight:600}

.esa-check{padding:20px 22px;background:var(--surface);border:1px solid var(--divider);border-radius:var(--r)}
.esa-check-label{font-family:var(--font-sans);font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--brand);margin-bottom:8px}
.esa-check-desc{font-size:13.5px;color:var(--ink-2);line-height:1.5;margin-bottom:14px}
.esa-form{display:flex;gap:8px;align-items:stretch}
.esa-state{flex:1;padding:11px 14px;border:1.5px solid var(--divider-strong);border-radius:10px;background:var(--surface);font-family:var(--font-sans);font-size:14.5px;color:var(--ink);min-height:46px}
.esa-state:focus{outline:none;border-color:var(--brand);box-shadow:0 0 0 3px var(--brand-soft)}
.esa-form .btn{flex-shrink:0;padding:11px 18px;min-height:46px;font-size:14px}

.sub-hero-tags{margin-top:18px;display:flex;flex-wrap:wrap;gap:6px}
.sub-hero-tags .sub-hero-chip{font-size:11.5px;padding:4px 10px}
.incl-shared{margin-top:20px;padding:14px 16px;background:var(--brand-softer);border-radius:12px}
.incl-shared-label{font-family:var(--font-sans);font-size:10.5px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--brand);margin-bottom:8px}
.incl-shared-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:5px}
.incl-shared-list li{position:relative;padding-left:18px;font-size:13.5px;line-height:1.5;color:var(--ink-2)}
.incl-shared-list li::before{content:"";position:absolute;left:0;top:9px;width:6px;height:6px;border-radius:50%;background:var(--brand)}
.tuition-close{margin-top:24px;padding-top:20px;border-top:1px solid var(--divider);text-align:center;font-size:13.5px;color:var(--ink-2);line-height:1.55}
.tuition-close a{color:var(--brand);font-weight:600;text-decoration:none;border-bottom:1px solid var(--brand-soft);padding-bottom:1px}
.tuition-close a:hover{border-bottom-color:var(--brand)}
.esa-states-row{margin-top:14px;display:flex;flex-wrap:wrap;gap:6px}
.esa-state-chip{display:inline-flex;align-items:center;padding:5px 11px;background:var(--surface);border:1px solid var(--brand-soft);border-radius:999px;font-family:var(--font-sans);font-size:12px;font-weight:600;color:var(--brand-darker);letter-spacing:.02em}
.esa-check-more{margin-top:14px;font-size:13px;color:var(--ink-3);line-height:1.55}
.esa-check-more a{color:var(--brand);font-weight:600;text-decoration:none;border-bottom:1px solid var(--brand-soft)}
.esa-check-more a:hover{border-bottom-color:var(--brand)}

/* ===== About view ===== */
.about-body{font-family:var(--font-sans);font-size:15.5px;line-height:1.65;color:var(--ink-2);max-width:60ch}
.pillar-list{display:flex;flex-direction:column;gap:14px}
.pillar-card{display:grid;grid-template-columns:auto 1fr;gap:16px;padding:18px 20px;background:var(--surface);border:1px solid var(--divider);border-radius:var(--r)}
.pillar-num{font-family:var(--font-serif);font-size:26px;font-weight:600;color:var(--brand);line-height:1;letter-spacing:-.02em}
.pillar-body{min-width:0}
.pillar-title{font-family:var(--font-serif);font-size:18px;font-weight:600;color:var(--ink);letter-spacing:-.005em;line-height:1.25}
.pillar-desc{margin-top:8px;font-family:var(--font-sans);font-size:14px;line-height:1.55;color:var(--ink-2)}
/* Stats grid — About view (with stagger reveal + hover lift) */
.about-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:12px;margin-top:24px}
.about-stat{
  padding:22px 14px;background:var(--surface);
  border:1px solid var(--divider);border-radius:var(--r);
  text-align:center;
  opacity:0;transform:translateY(16px);
  transition:opacity .55s var(--ease),transform .55s var(--ease),border-color .25s var(--ease),box-shadow .25s var(--ease);
  will-change:transform,opacity;
}
.about-stats.is-in .about-stat{opacity:1;transform:translateY(0)}
.about-stats.is-in .about-stat:nth-child(1){transition-delay:.05s,.05s,0s,0s}
.about-stats.is-in .about-stat:nth-child(2){transition-delay:.15s,.15s,0s,0s}
.about-stats.is-in .about-stat:nth-child(3){transition-delay:.25s,.25s,0s,0s}
.about-stats.is-in .about-stat:nth-child(4){transition-delay:.35s,.35s,0s,0s}
.about-stat:hover{border-color:var(--brand-soft);box-shadow:var(--shadow-2);transform:translateY(-3px)}
.about-stat .num{
  font-family:var(--font-serif);font-size:clamp(28px,7.2vw,34px);font-weight:600;
  color:var(--brand);line-height:1;letter-spacing:-.02em;
  display:inline-block;
  opacity:0;transform:scale(.85);
  transition:opacity .5s var(--ease),transform .6s cubic-bezier(.34,1.56,.64,1);
}
.about-stats.is-in .about-stat .num{opacity:1;transform:scale(1)}
.about-stats.is-in .about-stat:nth-child(1) .num{transition-delay:.25s}
.about-stats.is-in .about-stat:nth-child(2) .num{transition-delay:.35s}
.about-stats.is-in .about-stat:nth-child(3) .num{transition-delay:.45s}
.about-stats.is-in .about-stat:nth-child(4) .num{transition-delay:.55s}
.about-stat .lbl{margin-top:10px;font-family:var(--font-sans);font-size:12px;font-weight:500;line-height:1.4;color:var(--ink-2);letter-spacing:.01em}
@media (prefers-reduced-motion:reduce){
  .about-stat,.about-stat .num{transition:none !important;transform:none !important;opacity:1 !important}
}
/* Real images at Hero P1 & Brand P2 — natural ratio, no crop */
.about-hero-img{display:block;width:100%;height:auto;margin-top:22px;border-radius:12px;box-shadow:var(--shadow-1)}
.about-brand-img{display:block;width:100%;height:auto;margin:22px 0 4px;border-radius:var(--r-lg);box-shadow:var(--shadow-1)}
.about-cta-img{display:block;width:100%;height:auto;margin-bottom:20px;border-radius:12px;box-shadow:var(--shadow-1)}
/* Building blocks — accordion (About §3) */
.block-list{display:flex;flex-direction:column;gap:10px}
.block-card{background:var(--surface);border:1px solid var(--divider);border-radius:var(--r);overflow:hidden;transition:border-color .25s var(--ease),box-shadow .25s var(--ease)}
.block-card.is-open{border-color:var(--brand-soft);box-shadow:var(--shadow-2)}
.block-toggle{width:100%;display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;padding:18px;text-align:left;background:transparent;border:0;cursor:pointer;transition:background .2s var(--ease)}
.block-toggle:hover{background:var(--brand-softer)}
.block-num{font-family:var(--font-serif);font-size:22px;font-weight:600;color:var(--brand);line-height:1;letter-spacing:-.02em}
.block-icon{width:36px;height:36px;flex-shrink:0;background:var(--brand-softer);border-radius:10px;display:flex;align-items:center;justify-content:center;color:var(--brand);transition:background .3s var(--ease),color .3s var(--ease)}
.block-icon svg{width:20px;height:20px;display:block;transition:transform .35s var(--ease)}
.block-card:hover .block-icon{background:var(--brand-soft)}
.block-card.is-open .block-icon{background:var(--brand);color:#fff}
.block-card.is-open .block-icon svg{transform:scale(1.1)}
.block-title{font-family:var(--font-serif);font-size:17px;font-weight:600;color:var(--ink);letter-spacing:-.005em;line-height:1.25;min-width:0}
.block-chev{width:18px;height:18px;color:var(--brand);flex-shrink:0;transition:transform .3s var(--ease)}
.block-card.is-open .block-chev{transform:rotate(180deg)}
.block-body{max-height:0;overflow:hidden;transition:max-height .4s var(--ease)}
.block-card.is-open .block-body{max-height:400px}
.block-body-in{padding:0 18px 20px 68px;font-family:var(--font-sans);font-size:14px;line-height:1.6;color:var(--ink-2)}
/* Numbered steps — What Happens Next (About §4, number vertically centered) */
.step-list{display:flex;flex-direction:column;gap:12px}
.step-item{display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:center;padding:18px 20px;background:var(--surface);border:1px solid var(--divider);border-radius:var(--r)}
.step-num{font-family:var(--font-serif);font-size:26px;font-weight:600;color:var(--brand);line-height:1;letter-spacing:-.02em}
.step-body{min-width:0}
.step-title{font-family:var(--font-sans);font-size:15px;font-weight:600;color:var(--ink);letter-spacing:-.005em;line-height:1.3}
.step-desc{margin-top:6px;font-family:var(--font-sans);font-size:13.5px;line-height:1.55;color:var(--ink-2)}
.about-photo-cta{
  position:relative;
  min-height:360px;
  margin-top:28px;
  border-radius:var(--r-lg);
  overflow:hidden;
  background:
    radial-gradient(ellipse at center,rgba(6,36,54,.64) 0%,rgba(6,36,54,.48) 58%,rgba(6,36,54,.60) 100%),
    url("../img/about/image-cta-banner-p4.jpg") center/cover no-repeat;
  box-shadow:var(--shadow-2);
  display:flex;
  align-items:center;
  justify-content:center;
}
.about-photo-cta-inner{padding:34px 24px;color:#fff;text-align:center}
.about-photo-cta .eyebrow{color:#F4FBFF;justify-content:center}
.about-photo-cta .eyebrow::before,.about-photo-cta .eyebrow::after{background:#F4FBFF}
.about-photo-cta h2{margin-top:10px;font-size:clamp(28px,8vw,34px);line-height:1.08;color:#fff;font-weight:600;text-shadow:0 2px 14px rgba(0,0,0,.34)}
.about-photo-cta-lead{margin:14px auto 0;max-width:31ch;font-family:var(--font-sans);font-size:14.5px;line-height:1.6;color:rgba(255,255,255,.94);text-shadow:0 1px 8px rgba(0,0,0,.30)}
.about-photo-cta .btn{margin-top:24px}
/* Image placeholders — About view (swap the .img-slot wrapper for <img> when ready) */
.img-slot{display:flex;align-items:center;justify-content:center;background:var(--brand-softer);border:1.5px dashed var(--brand-soft);border-radius:var(--r);color:var(--brand-darker);font-family:var(--font-sans);overflow:hidden;position:relative}
.img-slot--hero{aspect-ratio:5/2;margin-top:22px;border-radius:12px}
.img-slot--brand{aspect-ratio:4/3;margin:22px 0 4px;border-radius:var(--r-lg);box-shadow:var(--shadow-1)}
.img-slot--block{aspect-ratio:5/2;margin:0 18px 14px}
.img-slot--cta{aspect-ratio:4/1;margin-bottom:20px;border-radius:12px}
img.img-slot{display:block;background:transparent;border:0;object-fit:cover}
img.img-slot--block{width:calc(100% - 36px);height:auto}
.img-slot-in{text-align:center;padding:12px 16px}
.img-slot-icon{width:26px;height:26px;margin:0 auto 8px;color:var(--brand);opacity:.75}
.img-slot-label{font-size:12px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;color:var(--brand-darker);line-height:1.4}
.img-slot-hint{margin-top:3px;font-size:11px;color:var(--ink-3);font-weight:500;letter-spacing:.01em}
.block-card.is-open .block-body{max-height:520px}
/* About view — spacing tune (scoped, tighter mobile rhythm) */
#view-about .sub-hero{padding-bottom:12px}
#view-about .section{padding:40px 0}
#view-about .section-head{margin-bottom:18px}
#view-about .about-start-section{padding-bottom:44px}

/* ===== Placement & Pathway view ===== */
.placement-strip{
  display:grid;
  grid-template-columns:1fr auto;
  gap:14px;
  align-items:center;
  margin-bottom:18px;
  padding:18px;
  background:linear-gradient(135deg,var(--brand-softer) 0%,var(--brand-soft) 100%);
  border:1px solid #D5EAF5;
  border-radius:var(--r);
  color:inherit;
  transition:border-color .2s var(--ease),box-shadow .25s var(--ease),transform .2s var(--ease);
}
.placement-strip:hover{border-color:var(--brand-soft);box-shadow:var(--shadow-2);transform:translateY(-1px)}
.placement-strip-kicker{
  font-family:var(--font-sans);
  font-size:10.5px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--brand);
}
.placement-strip-title{
  margin-top:4px;
  font-family:var(--font-serif);
  font-size:20px;
  font-weight:600;
  line-height:1.15;
  color:var(--ink);
  letter-spacing:-.005em;
}
.placement-strip-copy{margin-top:6px;font-size:13.5px;line-height:1.5;color:var(--ink-2)}
.placement-strip-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--surface);
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  box-shadow:0 1px 2px rgba(11,34,51,.04);
}
.placement-strip-icon svg{width:17px;height:17px}

.placement-hero-tags{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
  padding:0;
}
.placement-hero-tags li{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:7px 10px;
  border:1px solid var(--brand-soft);
  border-radius:999px;
  background:var(--surface);
  color:var(--brand-darker);
  font-size:12px;
  font-weight:700;
  line-height:1.1;
}

.placement-chart-card{
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:0 6px 24px rgba(11,34,51,.06);
}
.placement-hero .placement-chart-card{
  margin-top:22px;
}
.placement-chart-scroll{
  padding:10px;
  background:linear-gradient(180deg,#F8FBFD 0%,#EEF5FA 100%);
}
.placement-chart-img{
  width:100%;
  max-width:602px;
  height:auto;
  margin:0 auto;
  border-radius:12px;
  background:var(--surface);
  box-shadow:0 1px 8px rgba(11,34,51,.07);
}
.placement-chart-caption{
  padding:12px 16px 16px;
  border-top:1px solid var(--divider);
  font-size:12.5px;
  line-height:1.5;
  color:var(--ink-3);
}
.placement-chart-caption a{
  color:var(--brand);
  font-weight:700;
  border-bottom:1px solid var(--brand-soft);
}

.placement-criteria{display:flex;flex-direction:column;gap:10px}
.criterion-card{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:14px;
  padding:16px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:var(--r);
}
.criterion-num{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--brand-soft);
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-serif);
  font-size:14px;
  font-weight:600;
  flex-shrink:0;
}
.criterion-title{font-family:var(--font-sans);font-size:15.5px;font-weight:600;color:var(--ink);line-height:1.35}
.criterion-desc{margin-top:4px;font-size:13.5px;line-height:1.5;color:var(--ink-2)}

/* ===== Pathway pair — compact jump-off cards ===== */
.placement-level-pair{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.placement-level-card{
  position:relative;
  display:block;
  padding:18px 18px 16px;
  background:var(--surface);
  border:1px solid var(--divider);
  border-radius:16px;
  text-decoration:none;
  color:inherit;
  cursor:pointer;
  transition:transform .35s var(--ease),box-shadow .35s var(--ease),border-color .35s var(--ease);
  box-shadow:0 1px 2px rgba(11,34,51,.03);
}
.placement-level-card:hover{
  transform:translateY(-2px);
  border-color:var(--level-color,var(--brand));
  box-shadow:0 10px 28px rgba(11,34,51,.07),0 2px 6px rgba(11,34,51,.04);
}
.placement-level-card:active{transform:translateY(0);transition-duration:.1s}

/* Head row: small thumb + title stack */
.placement-level-head{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:14px;
  align-items:center;
}
.placement-level-thumb{
  width:72px;height:72px;
  border-radius:12px;
  overflow:hidden;
  background:var(--level-soft,var(--brand-softer));
  position:relative;
  flex-shrink:0;
}
.placement-level-thumb img{
  width:100%;height:100%;
  object-fit:cover;display:block;
}
.placement-level-thumb::after{
  content:"";position:absolute;inset:0;
  border-radius:12px;
  border:1px solid rgba(11,34,51,.06);
  pointer-events:none;
}

.placement-level-head-text{min-width:0}
.placement-level-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-sans);
  font-size:10px;font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--level-text,var(--brand-darker));
  line-height:1;
}
.placement-level-eyebrow .dot{
  width:5px;height:5px;border-radius:50%;
  background:var(--level-color,var(--brand));
}
.placement-level-name{
  margin:6px 0 0;
  font-family:var(--font-serif);
  font-size:21px;
  font-weight:600;
  line-height:1.05;
  color:var(--ink);
  letter-spacing:-.02em;
}
.placement-level-meta{
  margin-top:4px;
  font-family:var(--font-sans);
  font-size:11.5px;
  font-weight:600;
  color:var(--ink-3);
  line-height:1.3;
  letter-spacing:.01em;
}

.placement-level-copy{
  margin:14px 0 0;
  font-family:var(--font-sans);
  font-size:13px;
  line-height:1.55;
  color:var(--ink-2);
}

/* Outcomes — compact bullets, no boxed background */
.placement-level-outcomes{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--divider);
}
.placement-level-outcomes-title{
  font-family:var(--font-sans);
  font-size:10px;font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ink-3);
  margin-bottom:10px;
  line-height:1;
}
.placement-level-outcomes-list{
  list-style:none;padding:0;margin:0;
  display:flex;flex-direction:column;gap:7px;
}
.placement-level-outcomes-list li{
  display:grid;grid-template-columns:14px 1fr;gap:9px;
  font-family:var(--font-sans);
  font-size:12.5px;
  color:var(--ink);
  line-height:1.45;
  font-weight:500;
}
.placement-level-outcomes-list li svg{
  width:12px;height:12px;
  color:var(--level-color,var(--brand));
  flex-shrink:0;
  margin-top:3px;
}

/* CTA row */
.placement-level-cta{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--divider);
  font-family:var(--font-sans);
  font-size:12.5px;
  font-weight:600;
  color:var(--level-text,var(--brand-darker));
  letter-spacing:.005em;
  line-height:1;
}
.placement-level-cta svg{
  width:14px;height:14px;
  transition:transform .3s var(--ease);
}
.placement-level-card:hover .placement-level-cta svg{transform:translateX(4px)}

/* Stage color tokens */
.placement-level-card.is-foundation{
  --level-color:#1497D0;
  --level-color-deep:#0A5A80;
  --level-soft:#EDF6FB;
  --level-text:#0A5A80;
}
.placement-level-card.is-breakthrough{
  --level-color:#C48A2E;
  --level-color-deep:#7A5312;
  --level-soft:#FAF3E4;
  --level-text:#7A5312;
}

.placement-query-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:18px auto 0;
  padding:0;
  max-width:34ch;
  text-align:left;
}
.placement-query-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--ink);
  font-size:14px;
  font-weight:500;
  line-height:1.45;
}
.placement-query-dot{
  width:22px;
  height:22px;
  flex:0 0 22px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:800;
  line-height:1;
}

@media (max-width:420px){
  .placement-chart-scroll{padding:8px}
}
@media (max-width:360px){
  .placement-strip{grid-template-columns:1fr;gap:12px}
  .placement-strip-icon{justify-self:start}
  .placement-chart-scroll{padding:6px}
  .placement-chart-img{border-radius:10px}
}

/* =====================================================
   Method video — tap cover to play
   ===================================================== */
.method-video-el{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:contain;
  background:#062436;
  opacity:0;visibility:hidden;
  z-index:5;
}
.method-video.is-playing{cursor:default}
.method-video.is-playing .method-video-el{opacity:1;visibility:visible}
.method-video.is-playing .video-play,
.method-video.is-playing .method-video-inner,
.method-video.is-playing .video-corner{opacity:0;pointer-events:none}
.method-video.is-playing::before,
.method-video.is-playing::after{opacity:0}

/* Recommended duration — pace timeline */
.placement-level-duration{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid var(--divider);
}
.placement-level-duration-title{
  font-family:var(--font-sans);
  font-size:10px;font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--ink-3);
  margin-bottom:4px;
  line-height:1;
}
.placement-level-duration-note{
  margin:0 0 12px;
  font-size:11.5px;
  line-height:1.5;
  color:var(--ink-3);
}
.pace-rows{display:flex;flex-direction:column;gap:12px}
.pace-row{display:block}
.pace-row-top{
  display:flex;align-items:baseline;justify-content:space-between;gap:10px;
  margin-bottom:5px;
}
.pace-label{
  font-family:var(--font-sans);
  font-size:10px;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;
  color:var(--ink-3);
  display:inline-flex;align-items:center;gap:4px;
  line-height:1.2;
}
.pace-row.is-standard .pace-label{color:var(--level-text,var(--brand-darker))}
.pace-star{color:var(--level-color,var(--brand));font-size:10px;line-height:1}
.pace-months{
  font-family:var(--font-serif);
  font-size:14px;font-weight:700;
  color:var(--ink);
  letter-spacing:-.01em;line-height:1;
  white-space:nowrap;
}
.pace-row.is-standard .pace-months{color:var(--level-text,var(--brand-darker))}
.pace-bar{
  height:7px;border-radius:999px;
  background:var(--level-soft,var(--brand-softer));
  position:relative;overflow:hidden;
}
.pace-bar span{
  position:absolute;left:0;top:0;height:100%;
  border-radius:999px;
  background:var(--level-color,var(--brand));
  opacity:.45;
}
.pace-row.is-standard .pace-bar span{opacity:1}
.pace-weekly{
  display:block;
  margin-top:5px;
  font-family:var(--font-sans);
  font-size:11.5px;font-weight:500;
  color:var(--ink-3);
  line-height:1.4;
}
.duration-legend{
  list-style:none;
  margin:14px 0 0;
  padding:14px 16px;
  display:flex;flex-direction:column;gap:6px;
  background:var(--bg-alt,#F8FBFD);
  border:1px solid var(--divider);
  border-radius:12px;
}
.duration-legend li{
  font-size:11px;
  line-height:1.55;
  color:var(--ink-3);
}
.duration-legend b{font-weight:700;color:var(--ink-2)}

/* Class preview — 点封面播放（结构与 .method-video 一致） */
.class-preview[data-video]{cursor:pointer}
.class-preview-el{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;background:#062436;opacity:0;visibility:hidden;z-index:3}
.class-preview.is-playing{cursor:default}
.class-preview.is-playing .class-preview-el{opacity:1;visibility:visible}
.class-preview.is-playing .class-preview-play,
.class-preview.is-playing .class-preview-tag,
.class-preview.is-playing .class-preview-label{opacity:0;pointer-events:none}
.class-preview.is-playing::before{opacity:0}
