/* ==========================================================================
   FRAME IGNITE — modern professional system (v2)
   Single stylesheet. Periwinkle #728de5 on clean white + deep navy.
   Layout language: floating pill header, centered hero, split section heads,
   tabbed module browser, table-style tools, banner CTA, panel footer.
   ========================================================================== */

:root {
  --brand: #728de5;
  --brand-400: #8da3ec;
  --brand-500: #728de5;
  --brand-600: #5470d6;
  --brand-700: #3d55b8;
  --brand-800: #2b3d85;
  --brand-50: #f3f5fd;
  --brand-100: #e5eafa;
  --brand-200: #ccd6f6;

  --ink: #0e1530;
  --ink-2: #19224a;
  --ink-3: #26315f;
  --navy: #0e1530;
  --navy-2: #151e42;
  --white: #ffffff;
  --paper: #ffffff;

  --muted: #5a6386;
  --muted-on-dark: #b7c1e6;
  --line: #e2e6f4;
  --line-dark: rgba(255, 255, 255, .12);
  --error: #c0392b;

  --font-display: "Plus Jakarta Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --wrap: 1200px;
  --gutter: 24px;
  --header-h: 84px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --measure: 66ch;
  --shadow-sm: 0 1px 2px rgba(14, 21, 48, .06);
  --shadow-md: 0 14px 34px -16px rgba(14, 21, 48, .25);
  --shadow-lg: 0 34px 70px -28px rgba(46, 66, 140, .45);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.7; text-wrap: pretty;
}
img, svg { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--brand-700); text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .15s ease; }
a:hover { color: var(--brand-600); }
button { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--brand-600); outline-offset: 3px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--white);
  padding: 12px 18px; font-family: var(--font-mono); font-size: .8125rem; text-transform: uppercase;
  letter-spacing: .1em; text-decoration: none; border-radius: var(--radius-sm); transition: top .12s ease;
}
.skip-link:focus { top: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- layout primitives ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--light { background: var(--white); color: var(--ink); }
.section--band { background: var(--brand-50); color: var(--ink); }
.section--dark { background: var(--navy); color: #e9edfb; }
.section--dark a { color: #b4c4f7; }
.section--dark a:hover { color: var(--white); }

.mono { font-family: var(--font-mono); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }

/* section head: eyebrow on top, title left / lede right */
.section-head {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 16px clamp(32px, 6vw, 96px);
  align-items: end; margin-bottom: clamp(40px, 5vw, 64px); max-width: none;
}
.section-head .eyebrow { grid-column: 1 / -1; }
.section-head .lede { margin: 0; }
.section-head h2 { grid-column: 1; }
.section-head .lede { grid-column: 2; }
.section-head h2:only-of-type:last-child { grid-column: 1 / -1; }

.eyebrow { display: inline-flex; align-items: center; gap: 12px; margin: 0; color: var(--brand-700); }
.eyebrow__idx { display: inline-flex; padding: 4px 9px; border-radius: 6px; background: var(--brand-100); color: var(--brand-700); font-size: .6875rem; }
.eyebrow__rule { display: block; width: 44px; height: 1px; background: var(--brand-200); }
.section--dark .eyebrow { color: var(--brand-400); }
.section--dark .eyebrow__idx { background: rgba(114, 141, 229, .18); color: #c3d0fa; }
.section--dark .eyebrow__rule { background: var(--line-dark); }

.h1 { font-size: clamp(2.6rem, 6.4vw, 4.5rem); letter-spacing: -0.035em; font-weight: 800; }
h2, .h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); font-weight: 800; }
h3, .h3 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); font-weight: 700; letter-spacing: -0.015em; }
.lede { max-width: 56ch; color: var(--muted); font-size: 1.125rem; }
.section--dark .lede { color: var(--muted-on-dark); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 13px 28px;
  border: 1px solid transparent; border-radius: 12px; font-family: var(--font-body); font-size: .9375rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn--primary { background: var(--brand); color: var(--ink); box-shadow: 0 10px 24px -12px rgba(84, 112, 214, .8); }
.btn--primary:hover { background: var(--brand-600); color: var(--white); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--brand-200); }
.btn--ghost:hover { border-color: var(--brand-600); background: var(--brand-50); color: var(--ink); }
.section--dark .btn--ghost, .consent .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.28); }
.section--dark .btn--ghost:hover, .consent .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: var(--white); color: var(--white); }
.btn--dark { background: var(--ink); color: var(--white); }
.btn--dark:hover { background: var(--ink-3); color: var(--white); transform: translateY(-2px); }
.btn[disabled] { opacity: .6; cursor: default; }

/* ---------- header: floating pill ---------- */
.header { position: sticky; top: 0; z-index: 100; padding: 14px 0; pointer-events: none; }
.header__inner {
  pointer-events: auto; display: flex; align-items: center; gap: 20px; min-height: 58px; padding: 6px 8px 6px 22px;
  background: rgba(255, 255, 255, .88); border: 1px solid var(--line); border-radius: 18px;
  backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); transition: box-shadow .2s ease;
}
.header--scrolled .header__inner { box-shadow: var(--shadow-md); }
.header__logo { display: inline-flex; align-items: center; text-decoration: none; color: var(--brand-700); }
.header__logo, .footer__brand-logo, .company__logo-mark { gap: 10px; }
.logo__mark svg { display: block; width: 34px; height: 34px; }
.company__logo .logo__bg { fill: var(--ink); }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; letter-spacing: .06em; text-transform: uppercase; line-height: 1.1; white-space: nowrap; }
.header__nav { margin: 0 auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  display: block; padding: 9px 16px; color: var(--muted); text-decoration: none; font-size: .9375rem; font-weight: 500;
  border-radius: 10px; transition: color .12s ease, background-color .12s ease;
}
.nav__link:hover { color: var(--ink); background: var(--brand-50); }
.nav__link.is-active { color: var(--brand-700); background: var(--brand-100); }
.header__cta { min-height: 46px; padding: 10px 24px; }
.header__toggle {
  display: none; margin-left: auto; align-items: center; gap: 10px; background: var(--brand-50); border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 16px; min-height: 46px; cursor: pointer; font-size: .875rem; font-weight: 600; color: var(--ink);
}
.header__toggle-bars { display: grid; gap: 4px; width: 16px; }
.header__toggle-bars span { display: block; height: 1.5px; background: currentColor; }

.overlay { position: fixed; inset: 0; z-index: 99; display: none; background: var(--navy); padding: calc(var(--header-h) + 24px) var(--gutter) 32px; overflow-y: auto; }
.overlay.is-open { display: block; }
.overlay__list { list-style: none; display: grid; gap: 4px; }
.overlay__list li { border-bottom: 1px solid var(--line-dark); }
.overlay__link { display: flex; align-items: baseline; gap: 14px; padding: 20px 6px; color: var(--white); text-decoration: none; font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; }
.overlay__link span { font-family: var(--font-mono); font-size: .75rem; color: var(--brand-400); letter-spacing: .1em; }
.overlay__cta { margin-top: 28px; display: grid; }
body.is-locked { overflow: hidden; }

/* ---------- hero: centered stack ---------- */
.hero {
  position: relative; overflow: hidden; margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 clamp(64px, 8vw, 110px);
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(114, 141, 229, .28), transparent 70%),
    radial-gradient(40% 40% at 90% 30%, rgba(114, 141, 229, .14), transparent 70%),
    linear-gradient(180deg, var(--brand-50), var(--white) 85%);
  color: var(--ink);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--brand-100) 1px, transparent 1px), linear-gradient(90deg, var(--brand-100) 1px, transparent 1px);
  background-size: 56px 56px; opacity: .55;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000, transparent 75%); mask-image: radial-gradient(70% 60% at 50% 20%, #000, transparent 75%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(44px, 6vw, 72px); text-align: center; }
.hero__eyebrow {
  display: inline-flex; margin-bottom: 26px; padding: 8px 16px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--brand-200); color: var(--brand-700);
}
.hero__title { margin: 0 auto 24px; max-width: 18ch; }
.hero__title-main { display: block; font-size: clamp(2.7rem, 7vw, 5rem); font-weight: 800; letter-spacing: -0.04em; color: var(--ink); }
.hero__title-sub { display: block; margin-top: 16px; font-size: clamp(1.15rem, 2.4vw, 1.6rem); font-weight: 600; letter-spacing: -0.02em; color: var(--brand-600); }
.hero__sub { max-width: 66ch; margin-left: auto; margin-right: auto; color: var(--muted); font-size: 1.0625rem; }
.hero__sub strong { color: var(--ink); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.hero__trust {
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 4px 14px; margin-top: 30px; padding: 10px 20px;
  border-radius: 999px; background: var(--white); border: 1px solid var(--line); color: var(--muted);
}
.hero__grid > div:first-child { display: flex; flex-direction: column; align-items: center; }

.hero__visual { position: relative; max-width: 1000px; margin: 0 auto; width: 100%; }
.hero__media {
  padding: 12px; border-radius: var(--radius-xl); background: rgba(255,255,255,.7); border: 1px solid var(--brand-200);
  box-shadow: var(--shadow-lg); line-height: 0;
}
.hero__media img { display: block; width: 100%; height: auto; border-radius: 22px; aspect-ratio: 1672 / 941; object-fit: cover; }
.hero__card--cta {
  position: absolute; left: clamp(12px, 3vw, 36px); bottom: clamp(-22px, -2vw, -12px); text-align: left; text-decoration: none;
  display: block; padding: 16px 22px; border-radius: 16px; background: var(--ink); color: var(--white); box-shadow: var(--shadow-md);
  transition: transform .15s ease;
}
.hero__card--cta:hover { transform: translateY(-3px); color: var(--white); }
.hero__card--cta .mono { color: var(--brand-400); }
.hero__card--cta strong { display: block; margin-top: 4px; font-size: 1rem; font-family: var(--font-display); }

/* ---------- overview: three columns + spec grid + step strip ---------- */
.about__grid { display: grid; gap: clamp(36px, 5vw, 56px); }
.about__prose { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); }
.about__col { padding-top: 24px; border-top: 3px solid var(--brand); }
.about__col:nth-child(2) { border-top-color: var(--brand-200); }
.about__col:nth-child(3) { border-top-color: var(--ink); }
.about__col h3 { margin-bottom: 14px; font-size: 1.375rem; }
.about__col p { color: var(--muted); font-size: .9688rem; }

.spec { border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--brand-50); overflow: hidden; }
.spec__head { display: flex; align-items: center; gap: 10px; padding: 16px 24px; margin: 0; border-bottom: 1px solid var(--line); color: var(--brand-700); background: var(--white); }
.spec__head::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.spec__list { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.spec__list li { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec__list li:nth-child(3n) { border-right: 0; }
.spec__list li:nth-last-child(-n+3) { border-bottom: 0; }
.spec__k { color: var(--brand-700); font-family: var(--font-mono); font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; }
.spec__v { font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); line-height: 1.35; }

.runs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(40px, 5vw, 64px); border-radius: var(--radius-lg); background: var(--navy); counter-reset: run; overflow: hidden; }
.run { position: relative; padding: clamp(28px, 3vw, 40px); counter-increment: run; border-left: 1px solid var(--line-dark); }
.run:first-child { border-left: 0; }
.run::before { content: counter(run, decimal-leading-zero); display: block; margin-bottom: 20px; font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; color: var(--brand); }
.run__idx { display: none; }
.run h3 { color: var(--white); margin-bottom: 10px; font-size: 1.375rem; }
.run p { color: var(--muted-on-dark); font-size: .9375rem; }

/* ---------- fit: two horizontal bands ---------- */
.fit { display: grid; gap: 20px; }
.fit__col { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(20px, 4vw, 56px); padding: clamp(28px, 3.5vw, 44px); border-radius: var(--radius-lg); }
.fit__col--yes { background: rgba(114, 141, 229, .16); border: 1px solid rgba(114, 141, 229, .45); }
.fit__col--no { background: transparent; border: 1px dashed rgba(255,255,255,.22); }
.fit__head { font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; text-transform: none; letter-spacing: -0.02em; color: var(--white); }
.fit__col--yes .fit__head { color: #c3d0fa; }
.fit__col--no .fit__head { color: var(--muted-on-dark); }
.fit__list { list-style: none; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 40px; }
.fit__list li { display: flex; gap: 14px; align-items: flex-start; font-size: .9688rem; color: #e9edfb; }
.fit__col--no li { color: var(--muted-on-dark); }
.fit__mark { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 8px; font-size: .8125rem; margin-top: 1px; }
.fit__col--yes .fit__mark { background: var(--brand); color: var(--ink); font-weight: 700; }
.fit__col--no .fit__mark { background: rgba(255,255,255,.1); color: var(--muted-on-dark); }

/* ---------- advantages: ruled rows ---------- */
.adv { display: grid; border-top: 1px solid var(--line); counter-reset: adv; }
.adv__card {
  counter-increment: adv; display: grid; grid-template-columns: 56px minmax(0, .9fr) minmax(0, 1.4fr); gap: clamp(16px, 3vw, 44px); align-items: start;
  padding: 30px 16px; border-bottom: 1px solid var(--line); transition: background-color .2s ease;
}
.adv__card:hover { background: var(--brand-50); }
.adv__icon { width: 56px; height: 56px; padding: 14px; border-radius: 16px; background: var(--brand-100); color: var(--brand-700); }
.adv__card h3 { font-size: 1.25rem; padding-top: 2px; }
.adv__card h3::before { content: counter(adv, decimal-leading-zero); display: block; margin-bottom: 8px; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; color: var(--brand-600); font-weight: 500; }
.adv__card p { color: var(--muted); font-size: .9688rem; }

/* ---------- program: tabbed module browser ---------- */
.tl { display: grid; grid-template-columns: minmax(0, 400px) minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: start; }
.tl__ruler, .tl__playhead { display: none; }
.tl__track { list-style: none; display: grid; gap: 8px; }
.tl__clip {
  width: 100%; text-align: left; display: grid; grid-template-columns: 40px 1fr auto; align-items: center; gap: 14px; padding: 12px 14px;
  background: transparent; border: 1px solid var(--line-dark); border-radius: var(--radius); cursor: pointer; color: #e9edfb;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.tl__clip:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); }
.tl__clip[aria-expanded="true"] { background: var(--brand); border-color: var(--brand); color: var(--ink); }
.tl__tc, .tl__bar { display: none; }
.tl__no { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.1); color: var(--brand-400); font-family: var(--font-mono); font-size: .75rem; font-weight: 500; }
.tl__clip[aria-expanded="true"] .tl__no { background: var(--ink); color: var(--white); }
.tl__name { font-family: var(--font-display); font-weight: 600; font-size: .9688rem; line-height: 1.3; letter-spacing: -0.01em; }
.tl__meta { display: flex; }
.tl__chip { font-family: var(--font-mono); font-size: .6875rem; letter-spacing: .04em; color: var(--muted-on-dark); white-space: nowrap; }
.tl__clip[aria-expanded="true"] .tl__chip { color: var(--ink); }

.tl__panels { position: sticky; top: calc(var(--header-h) + 8px); }
.tl__panel { display: none; }
.tl__panel.is-open { display: grid; gap: 28px; padding: clamp(26px, 3.4vw, 44px); border-radius: var(--radius-xl); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.tl__panel-tc { color: var(--brand-700); margin-bottom: 12px; }
.tl__panel h3 { color: var(--ink); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 800; margin-bottom: 20px; }
.tl__lessons { list-style: none; counter-reset: l; }
.tl__lessons li { counter-increment: l; display: grid; grid-template-columns: 34px 1fr; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line); font-size: .9688rem; }
.tl__lessons li::before { content: counter(l, decimal-leading-zero); color: var(--brand-600); font-family: var(--font-mono); font-size: .75rem; padding-top: 3px; }
.tl__deliver { padding: 20px 22px; border-radius: var(--radius); background: var(--brand-50); border-left: 4px solid var(--brand); }
.tl__deliver .mono { color: var(--brand-700); }
.tl__deliver p:last-child { margin-top: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; color: var(--ink); }

.bonus { margin-top: clamp(40px, 5vw, 64px); }
.bonus + .bonus { margin-top: 32px !important; }
.bonus__label { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; color: var(--brand-400); }
.bonus__label::after { content: ""; flex: 1; height: 1px; background: var(--line-dark); }
.bonus__list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.bonus__list li { padding: 16px 18px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); font-size: .9375rem; color: #e9edfb; }
.bonus + .bonus .bonus__list { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.bonus + .bonus .bonus__list li { color: var(--muted-on-dark); font-size: .875rem; }
.callout { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 40px; margin-top: 40px; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: var(--brand); color: var(--ink); }
.callout p { flex: 1 1 320px; font-size: 1.0625rem; font-weight: 500; margin: 0; }
.callout__link { color: var(--ink) !important; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }

/* ---------- tools: data table ---------- */
.tools__table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.tools__table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.tools__table thead th { text-align: left; padding: 16px 24px; background: var(--brand-50); border-bottom: 1px solid var(--line); color: var(--brand-700); font-family: var(--font-mono); font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 500; }
.tools__table tbody th, .tools__table tbody td { text-align: left; vertical-align: top; padding: 18px 24px; border-bottom: 1px solid var(--line); font-size: .9375rem; color: var(--muted); }
.tools__table tbody tr:last-child > * { border-bottom: 0; }
.tools__table tbody th { font-family: var(--font-display); font-weight: 700; color: var(--ink); width: 22%; }
.tools__table tbody tr:hover > * { background: var(--brand-50); }
.tools__table td:last-child { font-family: var(--font-mono); font-size: .8125rem; color: var(--brand-700); white-space: nowrap; }

.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: clamp(36px, 4vw, 56px); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.tier { position: relative; padding: clamp(26px, 3vw, 38px); border-left: 1px solid var(--line); }
.tier:first-child { border-left: 0; }
.tier:nth-child(2) { background: var(--brand-50); }
.tier:nth-child(2)::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--brand); }
.tier__label { color: var(--brand-700); }
.tier__price { display: block; margin: 12px 0 10px; font-family: var(--font-display); font-weight: 800; font-size: 2.25rem; letter-spacing: -0.03em; }
.tier__price .mono { font-size: .75rem; color: var(--muted); }
.tier p { color: var(--muted); font-size: .9375rem; }
.notes { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 40px; }
.notes p { color: var(--muted); font-size: .8438rem; }

/* ---------- numbers: hero stat + row ---------- */
.stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.stat { padding: 26px 24px; border-radius: var(--radius-lg); background: var(--navy-2); border: 1px solid var(--line-dark); }
.stat:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: auto 1fr; gap: 4px clamp(24px, 5vw, 72px); align-items: center; padding: clamp(32px, 4vw, 52px); background: var(--brand); border-color: var(--brand); color: var(--ink); }
.stat:first-child .stat__fig { grid-row: 1 / span 2; font-size: clamp(3.5rem, 10vw, 7rem); color: var(--ink); }
.stat:first-child .stat__label { margin: 0; align-self: end; color: var(--ink); font-size: .875rem; }
.stat:first-child .stat__note { align-self: start; color: var(--ink-2); font-size: 1rem; }
.stat__fig { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.4vw, 2.75rem); letter-spacing: -0.04em; line-height: 1; color: var(--white); }
.stat__label { display: block; margin: 16px 0 8px; color: var(--brand-400); }
.stat__note { color: var(--muted-on-dark); font-size: .875rem; line-height: 1.55; }
.numbers__foot { margin-top: 36px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px 40px; align-items: start; }
.numbers__foot .mono { color: var(--brand-400); }
.numbers__foot p { color: var(--muted-on-dark); font-size: .9375rem; }

/* ---------- enrollment: numbered columns ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(20px, 3vw, 40px); counter-reset: step; }
.step { counter-increment: step; padding-top: 24px; border-top: 3px solid var(--brand-200); transition: border-color .2s ease; }
.step:hover { border-top-color: var(--brand); }
.step::before { content: counter(step, decimal-leading-zero); display: block; margin-bottom: 26px; font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem, 5vw, 4.25rem); line-height: 1; letter-spacing: -0.04em; color: transparent; -webkit-text-stroke: 1.5px var(--brand-600); }
.step__idx { display: none; }
.step h3 { margin-bottom: 8px; font-size: 1.25rem; }
.step p { color: var(--muted); font-size: .9375rem; }
.enroll__note { display: inline-block; margin-top: 44px; padding: 14px 22px; border-radius: 12px; background: var(--white); border: 1px solid var(--brand-200); color: var(--brand-700); font-size: .9375rem; font-weight: 500; }

/* ---------- register: brand panel + form ---------- */
.reg__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 4vw, 40px); align-items: start; }
.reassure { order: -1; position: sticky; top: calc(var(--header-h) + 8px); padding: clamp(28px, 3.4vw, 44px); border-radius: var(--radius-xl); background: var(--brand); color: var(--ink); }
.reassure__head { color: var(--ink-2); padding-bottom: 16px; }
.reassure__head::before { content: ""; display: block; width: 44px; height: 44px; margin-bottom: 22px; border-radius: 14px; background: var(--ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23728de5' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 3v6c0 5-3.5 8-8 9-4.500-1-8-4-8-9V6z'/%3E%3Cpath d='M8.500 12l2.500 2.500 4.500-5'/%3E%3C/svg%3E") center / 24px no-repeat; }
.reassure__list { list-style: none; }
.reassure__list li { display: flex; gap: 12px; padding: 15px 0; border-top: 1px solid rgba(14, 21, 48, .18); font-size: 1rem; font-weight: 500; align-items: flex-start; }
.reassure__list li::before { content: "→"; font-family: var(--font-mono); font-weight: 700; }
.reassure a { color: var(--ink); font-weight: 600; }
.reassure a:hover { color: var(--white); }

.form { display: grid; gap: 20px; background: var(--white); color: var(--ink); border-radius: var(--radius-xl); padding: clamp(26px, 3.4vw, 44px); }
.form a { color: var(--brand-700); }
.form__row { display: grid; gap: 8px; }
.form__row--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.form label { font-size: .8125rem; font-weight: 600; color: var(--ink-2); }
.form input[type="text"], .form input[type="email"], .form input[type="tel"], .form select, .form textarea {
  width: 100%; min-height: 50px; padding: 12px 16px; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--brand-50); border: 1px solid var(--line); border-radius: 12px; transition: border-color .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.form textarea { min-height: 120px; resize: vertical; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 17px) 22px; background-size: 5px 5px; background-repeat: no-repeat; }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--brand-400); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--brand-600); background-color: var(--white); box-shadow: 0 0 0 4px rgba(114, 141, 229, .25); }
.form [aria-invalid="true"] { border-color: var(--error); }
.form__hint { color: var(--muted); font-size: .8125rem; }
.form__err { display: none; color: var(--error); font-size: .8125rem; font-weight: 500; }
.form__err.is-shown { display: block; }
.form__count { justify-self: end; color: var(--muted); font-family: var(--font-mono); font-size: .75rem; }
.form__check { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.form__check input { width: 20px; height: 20px; margin: 3px 0 0; accent-color: var(--brand-600); }
.form__check label { font-size: .9375rem; font-weight: 400; color: var(--ink); line-height: 1.55; }
.form__honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__summary { display: none; border-radius: 12px; background: #fbeae7; padding: 14px 16px; color: var(--error); font-size: .9375rem; }
.form__summary.is-shown { display: block; }
.form__submit { display: grid; gap: 14px; }
.form__submit .btn { width: 100%; }
.form__submit .mono { color: var(--muted); text-transform: none; letter-spacing: 0; font-size: .8125rem; line-height: 1.6; font-family: var(--font-body); font-weight: 400; }

/* ---------- faq: two-column cards ---------- */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; align-items: start; }
.faq details { border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); overflow: hidden; transition: border-color .15s ease, box-shadow .15s ease; }
.faq details:hover { border-color: var(--brand-200); }
.faq details[open] { border-color: var(--brand); box-shadow: 0 16px 34px -22px rgba(84, 112, 214, .6); }
.faq summary { display: grid; grid-template-columns: 1fr 32px; gap: 16px; align-items: center; padding: 20px 22px; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 700; font-size: 1rem; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 10px; background: var(--brand-100); color: var(--brand-700); font-size: 1.25rem; line-height: 1; transition: background-color .15s ease; }
.faq details[open] summary::after { content: "−"; background: var(--brand); color: var(--ink); }
.faq summary:hover { color: var(--brand-700); }
.faq__body { padding: 0 22px 24px; }
.faq__body p { color: var(--muted); font-size: .9375rem; }
.faq__body p + p { margin-top: .8em; }

/* ---------- company: split panel ---------- */
.company__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line-dark); }
.company__logo { display: flex; align-items: center; justify-content: center; padding: clamp(40px, 5vw, 72px) 32px; background: linear-gradient(140deg, var(--brand-400), var(--brand-600)); color: var(--ink); }
.company__logo { gap: 12px; flex-wrap: wrap; text-align: center; }
.company__logo .logo__mark svg { width: 52px; height: 52px; }
.company__logo .logo__text { font-size: 1.5rem; white-space: normal; }
.company__prose { padding: clamp(28px, 4vw, 52px); background: var(--navy-2); }
.company__prose > p { color: var(--muted-on-dark); }
.details { margin-top: 28px; border-top: 1px solid var(--line-dark); }
.details div { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line-dark); }
.details dt { color: var(--brand-400); font-family: var(--font-mono); font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; padding-top: 3px; }
.details dd { margin: 0; font-size: .9375rem; color: var(--white); }
.company__link { display: inline-flex; margin-top: 26px; padding: 12px 22px; border-radius: 12px; background: var(--brand); color: var(--ink) !important; font-weight: 600; text-decoration: none; }
.company__link:hover { background: var(--white); }

/* ---------- final CTA: banner card ---------- */
.final { background: var(--white); padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 9vw, 112px); }
.final__inner {
  width: calc(100% - 2 * var(--gutter)); max-width: calc(var(--wrap) - 2 * var(--gutter)); margin: 0 auto; padding: clamp(44px, 7vw, 96px) clamp(24px, 6vw, 80px);
  display: grid; gap: 22px; justify-items: center; text-align: center; border-radius: var(--radius-xl); position: relative; overflow: hidden;
  background: radial-gradient(60% 90% at 100% 0%, rgba(255,255,255,.35), transparent 60%), linear-gradient(135deg, var(--brand-400), var(--brand-600));
  color: var(--ink);
}
.final h2 { max-width: 20ch; color: var(--ink); font-size: clamp(2.2rem, 5vw, 3.75rem); letter-spacing: -0.035em; }
.final p { font-size: 1.125rem; max-width: 48ch; color: var(--ink-2); }
.final p.mono { font-size: .75rem; color: var(--ink-2); }
.final p.mono a { color: var(--ink); font-weight: 600; }
.final .btn--dark:hover { background: var(--white); color: var(--ink); }

/* ---------- footer: brand card + spaced columns + split disclaimer ---------- */
.footer { background: var(--navy); color: #e9edfb; padding-top: clamp(56px, 7vw, 88px); }
.footer__brandband {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px 40px; padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl); background: var(--navy-2); border: 1px solid var(--line-dark); position: relative; overflow: hidden;
}
.footer__brandband::before { content: ""; position: absolute; width: 380px; height: 380px; right: -120px; top: -200px; border-radius: 50%; background: radial-gradient(circle, rgba(114, 141, 229, .5), transparent 70%); pointer-events: none; }
.footer__brand { position: relative; display: grid; gap: 14px; max-width: 46ch; }
.footer__brand-logo { gap: 10px; display: inline-flex; align-items: center; color: var(--brand); }
.footer__brand-logo .logo__text { font-size: 1.25rem; }
.footer__brand p { margin: 0; color: var(--muted-on-dark); font-size: .9375rem; }
.footer__cta { position: relative; }

.footer__rail { display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: clamp(28px, 5vw, 80px); padding: clamp(44px, 6vw, 72px) 0; }
.footer__col h2 { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; font-family: var(--font-mono); font-size: .75rem; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-400); }
.footer__col h2::before { content: ""; width: 18px; height: 2px; background: var(--brand); }
.footer__col ul { list-style: none; display: grid; grid-template-columns: repeat(1, minmax(0, 1fr)); gap: 12px; }
.footer__col:nth-child(2) ul { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 20px; }
.footer__col a, .footer__col button.footer__linkbtn { color: #e9edfb; text-decoration: none; font-size: .9375rem; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; }
.footer__col a:hover, .footer__col button.footer__linkbtn:hover { color: var(--brand-400); }
.footer__legal-data { display: grid; gap: 12px; color: var(--muted-on-dark); font-size: .9375rem; line-height: 1.6; }
.footer__legal-data span:first-child { color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: 1.0625rem; }
.footer__legal-data a { color: #c3d0fa; }

.footer__disclaimer { display: grid; grid-template-columns: minmax(0, 280px) minmax(0, 1fr); column-gap: clamp(28px, 5vw, 80px); padding: clamp(32px, 4vw, 48px) 0; border-top: 1px solid var(--line-dark); }
.footer__disclaimer h2 { grid-column: 1; grid-row: 1 / span 6; align-self: start; font-family: var(--font-display); font-size: 1.375rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer__disclaimer > p { grid-column: 2; color: var(--muted-on-dark); font-size: .8438rem; max-width: 90ch; }
.footer__disclaimer p + p { margin-top: .9em; }
.footer__disclaimer strong { color: var(--white); font-weight: 600; }

.footer__t3 { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding: 24px 0 36px; border-top: 1px solid var(--line-dark); color: var(--muted-on-dark); }
.footer__buttons { display: none; }

/* ---------- consent ---------- */
.consent { position: fixed; left: 0; right: 0; bottom: 0; z-index: 150; display: none; }
.consent.is-open { display: flex; justify-content: center; padding: 0 var(--gutter) 20px; }
.consent__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px 24px; align-items: center; padding: 20px 24px; max-width: 980px; width: 100%; background: var(--navy); color: #e9edfb; border: 1px solid var(--line-dark); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.consent p { font-size: .9375rem; color: var(--muted-on-dark); max-width: 76ch; margin: 0; }
.consent__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.consent__link { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: #b4c4f7; }

/* ---------- thank you + legal pages ---------- */
.page { padding: clamp(40px, 6vw, 88px) 0 clamp(72px, 8vw, 112px); }
.thanks { max-width: 640px; margin: 0 auto; text-align: center; }
.thanks__check { width: 64px; height: 64px; color: var(--brand-600); margin: 0 auto 28px; display: block; }
.thanks h1 { font-size: clamp(2.2rem, 5vw, 3.25rem); }
.thanks p { margin-top: 20px; color: var(--muted); }
.thanks__steps { list-style: none; text-align: left; margin: 36px 0 0; border-top: 1px solid var(--line); }
.thanks__steps li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: .9375rem; }
.thanks__steps li span { color: var(--brand-600); font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; }
.thanks__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

.doc { max-width: var(--measure); }
.doc__meta { display: grid; gap: 8px; margin: 24px 0 40px; padding: 18px 22px; border-radius: var(--radius); background: var(--brand-50); border-left: 4px solid var(--brand); color: var(--brand-800); }
.doc h2 { font-size: clamp(1.3rem, 2.2vw, 1.625rem); margin: 44px 0 12px; color: var(--ink); }
.doc h2:first-of-type { margin-top: 0; }
.doc h3 { margin: 28px 0 8px; }
.doc p, .doc li { color: var(--ink-2); }
.doc ul { list-style: none; margin: 12px 0; display: grid; gap: 10px; }
.doc ul li { position: relative; padding-left: 28px; font-size: 1rem; }
.doc ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 10px; height: 2px; background: var(--brand); }
.doc__toc { list-style: none; display: grid; gap: 8px; margin: 0 0 44px; padding: 20px; border-radius: var(--radius); background: var(--brand-50); }
.doc__toc a { font-size: .9375rem; }

.contact__card { border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: clamp(24px, 3vw, 40px); max-width: 720px; }
.contact__mail { display: inline-block; margin: 8px 0 28px; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.25rem, 3vw, 1.75rem); letter-spacing: -0.02em; color: var(--brand-700); }
.contact__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border-radius: var(--radius); overflow: hidden; }
.contact__grid div { background: var(--brand-50); padding: 16px 18px; }
.contact__grid dt { color: var(--brand-700); font-family: var(--font-mono); font-size: .6875rem; text-transform: uppercase; letter-spacing: .1em; }
.contact__grid dd { margin: 8px 0 0; font-size: .9375rem; }

/* ---------- reveal / motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-in { opacity: 1; transform: none; }
}

/* ---------- breakpoints ---------- */
@media (max-width: 1100px) {
  .header__nav .nav__link { padding: 9px 11px; }
  .stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
  :root { --header-h: 76px; }
  .header__nav, .header__cta { display: none; }
  .header__toggle { display: flex; }
  .section-head { grid-template-columns: 1fr; }
  .section-head h2, .section-head .lede { grid-column: 1; }
  .about__prose, .runs { grid-template-columns: 1fr; }
  .run { border-left: 0; border-top: 1px solid var(--line-dark); }
  .run:first-child { border-top: 0; }
  .spec__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec__list li:nth-child(3n) { border-right: 1px solid var(--line); }
  .spec__list li:nth-child(2n) { border-right: 0; }
  .spec__list li:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .spec__list li:last-child { border-bottom: 0; }
  .fit__col { grid-template-columns: 1fr; }
  .adv__card { grid-template-columns: 56px 1fr; }
  .adv__card p { grid-column: 2; }

  .tl { grid-template-columns: 1fr; }
  .tl__track { display: flex; overflow-x: auto; gap: 8px; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .tl__clip { flex: 0 0 250px; scroll-snap-align: start; grid-template-columns: 40px 1fr; }
  .tl__meta { display: none; }
  .tl__panels { position: static; }

  .tools__table, .tools__table tbody { display: block; }
  .tools__table thead { display: none; }
  .tools__table { border: 0; border-radius: 0; }
  .tools__table tbody { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .tools__table tr { display: block; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius); }
  .tools__table tbody th, .tools__table tbody td { display: block; width: auto; padding: 0; border: 0; }
  .tools__table tbody th { margin-bottom: 8px; }
  .tools__table td { margin-top: 10px; }
  .tools__table td::before { content: attr(data-label); display: block; font-family: var(--font-mono); font-size: .625rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brand-600); }
  .tools__table tbody tr:hover > * { background: none; }
  .tools__table td:last-child { white-space: normal; }
  .tiers { grid-template-columns: 1fr; }
  .tier { border-left: 0; border-top: 1px solid var(--line); }
  .tier:first-child { border-top: 0; }
  .notes, .numbers__foot { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 40px; }
  .reg__grid, .company__grid { grid-template-columns: 1fr; }
  .reassure { position: static; order: 0; }
  .faq { grid-template-columns: 1fr; }
  .footer__rail { grid-template-columns: 1fr 1fr; }
  .footer__col:last-child { grid-column: 1 / -1; }
  .footer__disclaimer { grid-template-columns: 1fr; }
  .footer__disclaimer h2 { grid-row: auto; margin-bottom: 16px; }
  .footer__disclaimer > p { grid-column: 1; }
}
@media (max-width: 768px) {
  :root { --gutter: 16px; }
  .logo__text { font-size: .9375rem; }
  .logo__mark svg { width: 30px; height: 30px; }
  .fit__list, .form__row--2, .contact__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:first-child { grid-template-columns: 1fr; }
  .stat:first-child .stat__fig { grid-row: auto; }
  .tools__table tbody { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .adv__card { padding: 24px 4px; }
  .details div { grid-template-columns: 1fr; gap: 4px; }
  .consent__inner { flex-direction: column; align-items: flex-start; }
  .footer__rail { grid-template-columns: 1fr; }
  .hero__card--cta { position: static; margin-top: 16px; display: inline-block; }
  .hero__visual { text-align: left; }
}
@media (max-width: 480px) {
  .hero__actions .btn, .final__inner .btn { width: 100%; }
  .footer__col:nth-child(2) ul { grid-template-columns: 1fr; }
  .spec__list { grid-template-columns: 1fr; }
  .spec__list li, .spec__list li:nth-child(3n), .spec__list li:nth-child(2n), .spec__list li:nth-last-child(-n+3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .spec__list li:last-child { border-bottom: 0; }
}

/* ---------- print ---------- */
@media print {
  .header, .footer__buttons, .consent, .overlay, .hero__actions { display: none; }
  body { background: #fff; color: #000; }
}
.footer__disclaimer a { color: #c3d0fa; }
