/* ==========================================================================
   Teal (#18ae9b) on soft neutrals, rounded surfaces, bento / split layouts.
   ========================================================================== */

:root {
  --brand: #18ae9b;
  --brand-600: #129282;
  --brand-700: #0e766a;
  --brand-800: #0a574f;
  --brand-tint: #e8f7f5;
  --brand-tint-2: #c9ece7;
  --brand-glow: rgba(24, 174, 155, .28);

  --ink: #0b2a2e;
  --ink-2: #123a3f;
  --ink-3: #1b4c52;
  --deep: #062326;
  --paper: #f5faf9;
  --paper-2: #eaf3f2;
  --white: #ffffff;

  --muted: #9cbcbc;
  --muted-on-light: #4f6a6d;
  --line-light: #dbe8e6;
  --line-dark: rgba(255,255,255,.12);
  --error: #c0392b;

  --font-display: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: 24px;
  --header-h: 84px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --measure: 66ch;
  --shadow-sm: 0 1px 2px rgba(11, 42, 46, .06), 0 1px 1px rgba(11, 42, 46, .04);
  --shadow-md: 0 10px 30px -10px rgba(11, 42, 46, .18);
  --shadow-lg: 0 30px 60px -20px rgba(11, 42, 46, .28);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; line-height: 1.7; text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
h1, h2, h3, h4 { word-spacing: .05em; margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--brand-700); text-decoration: underline; text-decoration-color: rgba(14,118,106,.35); text-underline-offset: 3px; transition: color .15s ease, text-decoration-color .15s ease; }
a:hover { color: var(--brand-800); text-decoration-color: currentColor; }
button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 6px; }
.skip-link {
  position: absolute; left: 12px; top: -80px; z-index: 300;
  background: var(--ink); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm);
  font-weight: 600; text-decoration: none; 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(64px, 8vw, 120px) 0; position: relative; }
.section--light { background: var(--white); color: var(--ink); }
.section--dark { background: var(--deep); color: #e6f2f1; overflow: hidden; }
.section--dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 90% 0%, var(--brand-glow), transparent 70%),
    radial-gradient(500px 360px at 0% 100%, rgba(24,174,155,.14), transparent 70%);
}
.section--dark > .wrap { position: relative; }
.section--band { background: var(--paper); color: var(--ink); }
.section--dark a { color: var(--brand); }
.section--dark a:hover { color: #6ee0d0; }

.mono {
  font-family: var(--font-body); font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .09em;
}

/* eyebrow: pill badge */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 20px;
  padding: 6px 14px 6px 6px; border-radius: var(--radius-pill);
  background: var(--brand-tint); color: var(--brand-700); border: 1px solid var(--brand-tint-2);
}
.eyebrow__idx {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 28px; padding: 0 9px; border-radius: var(--radius-pill);
  background: var(--brand); color: var(--deep); font-size: .6875rem; font-weight: 700;
}
.eyebrow__rule { display: none; }
.section--dark .eyebrow { background: rgba(24,174,155,.14); color: #7fe6d8; border-color: rgba(24,174,155,.3); }

.h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.035em; }
h2, .h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); letter-spacing: -0.03em; }
h3, .h3 { font-size: clamp(1.05rem, 1.4vw, 1.2rem); letter-spacing: -0.015em; }
.lede { margin: 18px 0 0; max-width: 60ch; color: var(--muted-on-light); font-size: 1.125rem; line-height: 1.65; }
.section--dark .lede { color: var(--muted); }
.section-head { margin-bottom: clamp(40px, 5vw, 64px); max-width: 760px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 13px 28px; border: 1.5px solid transparent;
  border-radius: var(--radius-pill); font-family: var(--font-display); font-size: .9375rem;
  font-weight: 700; letter-spacing: -0.005em; text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn--primary { background: var(--brand); color: var(--deep); border-color: var(--brand); box-shadow: 0 10px 24px -10px var(--brand-glow), 0 2px 0 rgba(255,255,255,.25) inset; }
.btn--primary:hover { background: #22c4af; border-color: #22c4af; color: var(--deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(24,174,155,.6); }
.btn--ghost { background: var(--white); color: var(--ink); border-color: var(--line-light); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand-700); transform: translateY(-2px); }
.btn--dark { background: var(--deep); color: var(--white); border-color: var(--deep); }
.btn--dark:hover { background: var(--white); color: var(--deep); border-color: var(--white); transform: translateY(-2px); }
.btn[disabled] { opacity: .6; cursor: default; transform: none !important; }
.section--dark .btn--ghost, .consent .btn--ghost { background: transparent; color: var(--white); border-color: var(--line-dark); }
.section--dark .btn--ghost:hover, .consent .btn--ghost:hover { border-color: var(--brand); color: var(--brand); }

/* ---------- header: floating glass 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: 12px;
  min-height: 64px; padding: 8px 10px 8px 22px; max-width: calc(var(--wrap) - 0px);
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  border: 1px solid var(--line-light); border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm); transition: box-shadow .2s ease, background-color .2s ease;
}
.header--scrolled .header__inner { box-shadow: var(--shadow-md); background: rgba(255,255,255,.94); }
.header__logo { display: inline-flex; align-items: center; color: var(--ink); text-decoration: none; }
.header__logo svg { display: block; height: 28px; width: auto; }
.header__logo .logo-mark { color: var(--brand); }
.header__nav { margin: 0 auto; }
.nav__list { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__link {
  display: block; padding: 9px 16px; border-radius: var(--radius-pill); color: var(--muted-on-light);
  text-decoration: none; font-size: .9375rem; font-weight: 500; transition: background-color .15s ease, color .15s ease;
}
.nav__link:hover, .nav__link.is-active { color: var(--brand-800); background: var(--brand-tint); }
.header__cta { min-height: 44px; padding: 9px 22px; font-size: .875rem; }
.header__toggle {
  display: none; margin-left: auto; align-items: center; gap: 10px; cursor: pointer;
  background: var(--ink); border: 0; border-radius: var(--radius-pill); color: var(--white);
  padding: 10px 18px; min-height: 44px; font-family: var(--font-display); font-size: .875rem; font-weight: 700;
}
.header__toggle-bars { display: grid; gap: 4px; width: 16px; }
.header__toggle-bars span { display: block; height: 2px; border-radius: 2px; background: currentColor; }

.overlay {
  position: fixed; inset: 0; z-index: 99; display: none;
  background: var(--deep); padding: calc(var(--header-h) + 28px) var(--gutter) 32px; overflow-y: auto;
}
.overlay.is-open { display: block; }
.overlay__list { list-style: none; display: grid; gap: 10px; max-width: 620px; }
.overlay__link {
  display: flex; align-items: center; gap: 16px; padding: 18px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,.05); color: var(--white); text-decoration: none;
  font-family: var(--font-display); font-weight: 700; font-size: 1.25rem;
}
.overlay__link span { font-size: .75rem; color: var(--brand); font-weight: 700; }
.overlay__cta { margin-top: 28px; display: grid; max-width: 620px; }
body.is-locked { overflow: hidden; }

/* ---------- hero: dark, asymmetric, arch-framed visual + stats strip ---------- */
.hero {
  position: relative; overflow: hidden; margin-top: calc(var(--header-h) * -1);
  padding: calc(var(--header-h) + clamp(48px, 7vw, 96px)) 0 0;
  background:
    radial-gradient(700px 500px at 85% 20%, rgba(24,174,155,.35), transparent 70%),
    radial-gradient(500px 400px at 0% 100%, rgba(24,174,155,.16), transparent 70%),
    var(--deep);
  color: #e6f2f1;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 30%, #000 0%, transparent 70%);
}
.hero > .wrap { position: relative; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(32px, 5vw, 72px); align-items: center; padding-bottom: clamp(48px, 6vw, 80px); }
.hero__copy { display: grid; justify-items: start; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 26px; padding: 7px 16px 7px 12px;
  border-radius: var(--radius-pill); background: rgba(24,174,155,.14); color: #7fe6d8; border: 1px solid rgba(24,174,155,.35);
}
.hero__eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(24,174,155,.25); }
.hero__title { margin-bottom: 24px; }
.hero__title-main { display: block; font-size: clamp(2.3rem, 4.8vw, 3.9rem); font-weight: 800; letter-spacing: -0.035em; line-height: 1.06; color: var(--white); }
.hero__title-main em { font-style: normal; color: var(--brand); background: linear-gradient(transparent 82%, rgba(24,174,155,.3) 82%); }
.hero__title-sub { display: block; margin-top: 18px; font-size: clamp(1.05rem, 1.8vw, 1.3rem); font-weight: 600; letter-spacing: -0.015em; line-height: 1.4; color: #b7dedb; font-family: var(--font-display); }
.hero__sub { max-width: 60ch; color: var(--muted); font-size: 1.0625rem; }
.hero__sub strong { color: var(--white); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.28); }
.hero .btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.hero__note { margin: 22px 0 0; max-width: 56ch; color: var(--muted); font-size: .875rem; }
.hero__note a { color: var(--brand); }

.hero__visual { position: relative; padding: 0 0 36px 0; }
.hero__media {
  position: relative; border-radius: 240px 240px var(--radius-lg) var(--radius-lg); overflow: hidden; line-height: 0;
  border: 1px solid rgba(255,255,255,.18); box-shadow: 0 40px 80px -30px rgba(0,0,0,.6), 0 0 0 10px rgba(255,255,255,.04);
  aspect-ratio: 4 / 5;
}
.hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,35,38,.75)); }
.hero__flow {
  position: absolute; z-index: 2; left: -28px; top: 44%; display: grid; gap: 6px; list-style: none; counter-reset: fl;
  padding: 14px; border-radius: var(--radius); background: rgba(255,255,255,.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow-lg);
}
.hero__flow li { counter-increment: fl; display: flex; align-items: center; gap: 10px; padding: 4px 10px 4px 4px; color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: .8125rem; }
.hero__flow li::before { content: counter(fl); display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: var(--deep); font-size: .6875rem; font-weight: 800; }
.hero__card {
  position: absolute; z-index: 2; right: -12px; bottom: 0; display: grid; gap: 4px; text-align: left;
  padding: 16px 20px; border-radius: var(--radius); background: var(--brand); color: var(--deep);
  text-decoration: none; box-shadow: var(--shadow-lg); transition: transform .18s ease;
}
.hero__card:hover { transform: translateY(-3px); color: var(--deep); }
.hero__card .mono { color: rgba(6,35,38,.75); }
.hero__card strong { font-family: var(--font-display); font-size: .9688rem; font-weight: 800; }

.hero__stats { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.14); }
.hero__stats li { display: flex; align-items: baseline; gap: 12px; padding: 26px 20px 30px 0; }
.hero__stats li + li { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.14); }
.hero__stats b { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.25rem); letter-spacing: -0.03em; color: var(--white); line-height: 1; }
.hero__stats span { color: var(--muted); font-size: .875rem; line-height: 1.3; }

/* ---------- overview: sticky intro + prose cards + spec chips + process rail ---------- */
.about__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
.about__prose { display: grid; gap: 16px; }
.about__card { padding: clamp(24px, 3vw, 32px); border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line-light); }
.about__card:first-child { background: var(--brand-tint); border-color: var(--brand-tint-2); }
.about__card h3 { margin-bottom: 12px; color: var(--brand-700); font-size: 1.125rem; display: flex; align-items: center; gap: 10px; }
.about__card h3::before { content: ""; width: 10px; height: 10px; border-radius: 3px; background: var(--brand); transform: rotate(45deg); }
.about__card p { color: var(--muted-on-light); font-size: .9688rem; }
.spec { position: sticky; top: calc(var(--header-h) + 24px); border-radius: var(--radius-lg); background: var(--deep); color: var(--white); padding: clamp(24px, 3vw, 34px); box-shadow: var(--shadow-lg); overflow: hidden; }
.spec::before { content: ""; position: absolute; right: -80px; top: -80px; width: 240px; height: 240px; border-radius: 50%; background: var(--brand-glow); filter: blur(30px); }
.spec__head { position: relative; margin-bottom: 18px; color: var(--brand); }
.spec__list { position: relative; list-style: none; display: grid; }
.spec__list li { display: flex; justify-content: space-between; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line-dark); }
.spec__k { color: var(--muted); font-size: .875rem; flex: 0 0 auto; }
.spec__v { text-align: right; font-weight: 600; font-size: .9375rem; color: var(--white); }

.runs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: clamp(28px, 4vw, 48px); counter-reset: run; position: relative; }
.runs::before { content: ""; position: absolute; left: 6%; right: 6%; top: 27px; height: 2px; background: repeating-linear-gradient(90deg, var(--brand-tint-2) 0 8px, transparent 8px 16px); z-index: 0; }
.run { position: relative; z-index: 1; text-align: center; padding: 0 12px; counter-increment: run; }
.run::before {
  content: counter(run); display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--brand); color: var(--deep); font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  box-shadow: 0 0 0 8px var(--white), 0 10px 24px -8px var(--brand-glow);
}
.run__idx { display: none; }
.run h3 { margin: 0 0 8px; }
.run p { color: var(--muted-on-light); font-size: .9375rem; max-width: 34ch; margin-inline: auto; }

/* ---------- fit: two contrasting rounded panels ---------- */
.fit { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 20px; align-items: stretch; }
.fit__col { padding: clamp(28px, 3.4vw, 44px); border-radius: var(--radius-xl); }
.fit__col--yes { background: linear-gradient(160deg, rgba(24,174,155,.2), rgba(24,174,155,.06)); border: 1px solid rgba(24,174,155,.4); }
.fit__col--no { background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); }
.fit__head { margin-bottom: 18px; font-family: var(--font-display); font-size: 1.375rem; text-transform: none; letter-spacing: -0.02em; font-weight: 700; }
.fit__col--yes .fit__head { color: #7fe6d8; }
.fit__col--no .fit__head { color: var(--muted); }
.fit__list { list-style: none; display: grid; gap: 14px; }
.fit__list li { display: flex; gap: 14px; align-items: flex-start; font-size: .9688rem; }
.fit__mark { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; font-size: .75rem; font-weight: 800; margin-top: 1px; }
.fit__col--yes .fit__mark { background: var(--brand); color: var(--deep); }
.fit__col--no .fit__mark { background: rgba(255,255,255,.1); color: var(--muted); }
.fit__col--yes li { color: #eaf7f5; }
.fit__col--no li { color: var(--muted); }

/* ---------- advantages: bento grid ---------- */
.adv { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.adv__card {
  grid-column: span 2; position: relative; overflow: hidden;
  padding: clamp(24px, 2.6vw, 32px); border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line-light);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.adv__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-tint-2); }
.adv__card:nth-child(1) { grid-column: span 4; background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%); color: var(--white); border: 0; }
.adv__card:nth-child(1) p { color: rgba(255,255,255,.88); max-width: 52ch; }
.adv__card:nth-child(1) .adv__icon { background: rgba(255,255,255,.2); color: var(--white); }
.adv__card:nth-child(1)::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 260px; height: 260px; border-radius: 50%; border: 40px solid rgba(255,255,255,.1); }
.adv__card:nth-child(7) { grid-column: span 4; background: var(--deep); color: var(--white); border: 0; }
.adv__card:nth-child(7) p { color: var(--muted); }
.adv__card:nth-child(7) a { color: var(--brand); }
.adv__card:nth-child(7) .adv__icon { background: rgba(24,174,155,.2); color: var(--brand); }
.adv__icon { width: 52px; height: 52px; padding: 13px; margin-bottom: 20px; border-radius: 14px; background: var(--brand-tint); color: var(--brand-700); }
.adv__card h3 { margin-bottom: 10px; }
.adv__card p { color: var(--muted-on-light); font-size: .9375rem; margin: 0; }

/* ---------- program: two-pane module browser ---------- */
.tl { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 24px; align-items: start; }
.tl__ruler, .tl__playhead { display: none; }
.tl__track { list-style: none; display: grid; gap: 8px; position: sticky; top: calc(var(--header-h) + 20px); }
.tl__clip {
  display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: center; gap: 14px;
  width: 100%; text-align: left; cursor: pointer; padding: 12px 16px 12px 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--line-dark); border-radius: var(--radius);
  color: #e6f2f1; transition: background-color .15s ease, border-color .15s ease, transform .15s ease;
}
.tl__clip:hover { background: rgba(255,255,255,.08); }
.tl__clip[aria-expanded="true"] { background: rgba(24,174,155,.16); border-color: var(--brand); transform: translateX(4px); }
.tl__tc { display: none; }
.tl__no { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); color: var(--muted); font-family: var(--font-display); font-weight: 800; font-size: .9375rem; }
.tl__clip[aria-expanded="true"] .tl__no { background: var(--brand); color: var(--deep); }
.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__bar { display: none; }
.tl__chip { padding: 4px 10px; border-radius: var(--radius-pill); background: rgba(255,255,255,.08); color: var(--muted); font-size: .75rem; font-weight: 600; white-space: nowrap; }
.tl__clip[aria-expanded="true"] .tl__chip { background: var(--brand); color: var(--deep); }

.tl__panels { position: sticky; top: calc(var(--header-h) + 20px); }
.tl__panel { display: none; padding: clamp(26px, 3vw, 40px); border-radius: var(--radius-xl); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.tl__panel.is-open { display: grid; gap: 24px; animation: panelIn .3s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.tl__panel h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); margin-bottom: 18px; }
.tl__panel-tc { display: inline-block; margin-bottom: 14px; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--brand-tint); color: var(--brand-700); }
.tl__lessons { list-style: none; counter-reset: l; display: grid; gap: 4px; }
.tl__lessons li {
  counter-increment: l; display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: baseline;
  padding: 12px 14px; border-radius: 12px; color: var(--ink-2); font-size: .9688rem;
}
.tl__lessons li:nth-child(odd) { background: var(--paper); }
.tl__lessons li::before { content: counter(l); color: var(--brand-700); font-weight: 800; font-family: var(--font-display); font-size: .875rem; }
.tl__deliver { display: flex; align-items: center; gap: 16px; padding: 18px 22px; border-radius: var(--radius); background: var(--deep); color: var(--white); }
.tl__deliver .mono { flex: 0 0 auto; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--brand); color: var(--deep); margin: 0; }
.tl__deliver p { margin: 0; font-size: .9688rem; font-weight: 500; }

.bonus { display: grid; grid-template-columns: minmax(0, 240px) minmax(0, 1fr); gap: clamp(20px, 3vw, 40px); align-items: start; margin-top: 56px; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); }
.bonus__label { color: var(--brand); }
.bonus__list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.bonus__list li { padding: 8px 16px; border-radius: var(--radius-pill); background: rgba(24,174,155,.14); color: #d8f3ef; font-size: .9063rem; font-weight: 500; border: 1px solid rgba(24,174,155,.3); }
.bonus + .bonus .bonus__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.bonus + .bonus .bonus__list li { border-radius: var(--radius); padding: 14px 18px; background: rgba(255,255,255,.04); border-color: var(--line-dark); color: #e6f2f1; font-weight: 400; }
.callout { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 32px; margin-top: 24px; padding: clamp(24px, 3vw, 36px); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--brand), var(--brand-700)); color: var(--white); }
.callout p { margin: 0; font-size: 1.0625rem; font-weight: 600; font-family: var(--font-display); flex: 1 1 320px; }
.callout p + p { font-weight: 400; font-family: var(--font-body); opacity: .9; font-size: .9688rem; }
.callout__link { flex: 0 0 auto; padding: 12px 22px; border-radius: var(--radius-pill); background: var(--white); color: var(--deep) !important; font-weight: 700; font-size: .875rem; text-decoration: none; }

/* ---------- tools: category cards ---------- */
.tools__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.tool { display: flex; flex-direction: column; gap: 6px; padding: 24px; border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--line-light); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.tool:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand-tint-2); background: var(--white); }
.tool__cat { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.tool__ico { display: grid; place-items: center; width: 40px; height: 40px; flex: 0 0 auto; border-radius: 12px; background: var(--brand-tint); color: var(--brand-700); font-family: var(--font-display); font-weight: 800; font-size: .9375rem; }
.tool h3 { font-size: 1.0625rem; }
.tool__role { color: var(--muted-on-light); font-size: .9063rem; margin: 0 0 8px; }
.tool__opts { font-size: .9063rem; font-weight: 500; color: var(--ink-2); margin: 0 0 16px; }
.tool__cost { margin-top: auto; align-self: flex-start; padding: 5px 12px; border-radius: var(--radius-pill); background: var(--brand-tint); color: var(--brand-800); font-size: .8125rem; font-weight: 700; }

.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 40px; align-items: stretch; }
.tier { padding: 32px 28px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--line-light); box-shadow: var(--shadow-sm); }
.tier:nth-child(2) { background: var(--deep); color: var(--white); border-color: var(--deep); box-shadow: var(--shadow-lg); position: relative; }
.tier:nth-child(2)::before { content: "Populaire"; position: absolute; top: 20px; right: 20px; padding: 4px 12px; border-radius: var(--radius-pill); background: var(--brand); color: var(--deep); font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.tier:nth-child(2) .tier__label { color: var(--brand); }
.tier:nth-child(2) p { color: var(--muted); }
.tier:nth-child(2) .tier__price { color: var(--white); }
.tier__label { color: var(--brand-700); }
.tier__price { display: block; margin: 12px 0 14px; font-family: var(--font-display); font-weight: 800; font-size: 2rem; letter-spacing: -0.03em; line-height: 1.1; }
.tier__price .mono { font-size: .8125rem; font-weight: 500; text-transform: none; letter-spacing: 0; opacity: .7; }
.tier p { color: var(--muted-on-light); font-size: .9375rem; }
.notes { margin-top: 32px; display: grid; gap: 10px; max-width: var(--measure); padding: 20px 24px; border-radius: var(--radius); background: var(--paper); border-left: 4px solid var(--brand); }
.notes p { color: var(--muted-on-light); font-size: .875rem; }

/* ---------- numbers: hero stat + grid ---------- */
.stats { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.stat { grid-column: span 2; padding: clamp(24px, 2.6vw, 32px); border-radius: var(--radius-lg); background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); }
.stat:first-child { grid-column: span 3; grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(150deg, var(--brand), var(--brand-700)); border: 0; min-height: 280px; }
.stat:first-child .stat__fig { font-size: clamp(3.5rem, 7vw, 6rem); color: var(--white); }
.stat:first-child .stat__label { color: rgba(255,255,255,.9); }
.stat:first-child .stat__note { color: rgba(255,255,255,.85); }
.stat:nth-child(2), .stat:nth-child(3) { grid-column: span 3; }
.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: 14px 0 6px; color: var(--brand); }
.stat__note { color: var(--muted); font-size: .875rem; }
.numbers__foot { margin-top: 32px; display: grid; gap: 10px; max-width: var(--measure); }
.numbers__foot .mono { color: var(--brand); text-transform: none; letter-spacing: 0; font-size: .8125rem; }
.numbers__foot p { color: var(--muted); font-size: .9375rem; }

/* ---------- enrollment: horizontal stepper ---------- */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; position: relative; counter-reset: stp; }
.steps::before { content: ""; position: absolute; left: 12%; right: 12%; top: 27px; height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-tint-2)); }
.step { position: relative; text-align: center; padding: 0 8px; counter-increment: stp; }
.step::before {
  content: counter(stp); position: relative; display: grid; place-items: center; width: 56px; height: 56px; margin: 0 auto 20px;
  border-radius: 50%; background: var(--white); border: 2px solid var(--brand); color: var(--brand-700);
  font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; box-shadow: 0 0 0 8px var(--paper);
}
.step:first-child::before { background: var(--brand); color: var(--deep); }
.step__idx { display: none; }
.step h3 { margin: 0 0 8px; }
.step p { color: var(--muted-on-light); font-size: .9375rem; }
.enroll__note { margin: 48px auto 0; max-width: 60ch; padding: 16px 24px; border-radius: var(--radius-pill); background: var(--white); border: 1px solid var(--line-light); text-align: center; color: var(--muted-on-light); font-size: .9063rem; }
#enrollment .section-head { margin-inline: auto; text-align: center; }
#enrollment .section-head .lede { margin-inline: auto; }

/* ---------- registration: split panel ---------- */
.reg__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.reg__intro { position: sticky; top: calc(var(--header-h) + 24px); }
.reg__intro .section-head { margin-bottom: 28px; }
.reassure { padding: 24px 26px; border-radius: var(--radius-lg); background: rgba(255,255,255,.06); border: 1px solid var(--line-dark); }
.reassure__head { color: var(--brand); padding-bottom: 12px; }
.reassure__list { list-style: none; display: grid; gap: 12px; }
.reassure__list li { display: flex; gap: 12px; align-items: flex-start; font-size: .9375rem; color: #e6f2f1; }
.reassure__list li::before { content: "✓"; display: grid; place-items: center; flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--brand); color: var(--deep); font-size: .6875rem; font-weight: 800; margin-top: 2px; }
.reassure__list li:last-child::before { content: "→"; }

.form { display: grid; gap: 20px; padding: clamp(28px, 3.4vw, 48px); border-radius: var(--radius-xl); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.form__row { display: grid; gap: 8px; }
.form__row--2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form label { font-size: .875rem; font-weight: 600; color: var(--ink); }
.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(--paper); border: 1.5px solid var(--line-light); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.form textarea { min-height: 110px; resize: vertical; }
.form select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted-on-light) 50%), linear-gradient(135deg, var(--muted-on-light) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 17px) 22px; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 40px; }
.form input:hover, .form select:hover, .form textarea:hover { border-color: var(--brand-tint-2); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--brand); background-color: var(--white); box-shadow: 0 0 0 4px var(--brand-glow); }
.form [aria-invalid="true"] { border-color: var(--error); }
.form__hint { color: var(--muted-on-light); 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-on-light); font-size: .75rem; text-transform: none; letter-spacing: 0; }
.form__check { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; }
.form__check input { width: 22px; height: 22px; margin: 2px 0 0; accent-color: var(--brand); }
.form__check label { font-weight: 400; font-size: .9063rem; color: var(--muted-on-light); line-height: 1.55; }
.form__check label a { color: var(--brand-700); }
.form__honey { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__summary { display: none; border-radius: 12px; background: #fdecea; border: 1px solid #f5c2bc; padding: 14px 16px; color: var(--error); font-size: .9375rem; }
.form__summary.is-shown { display: block; }
.form__submit { display: grid; gap: 14px; justify-items: start; }
.form__submit .btn { width: 100%; }
.form__submit .mono { color: var(--muted-on-light); text-transform: none; letter-spacing: 0; font-size: .8125rem; font-weight: 400; line-height: 1.6; }

/* ---------- faq: split with sticky heading, card accordion ---------- */
.faq__layout { display: grid; grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.faq__layout .section-head { position: sticky; top: calc(var(--header-h) + 24px); margin-bottom: 0; }
.faq { display: grid; gap: 12px; counter-reset: faqc; }
.faq details { border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-light); transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease; }
.faq details[open] { background: var(--white); border-color: var(--brand); box-shadow: var(--shadow-md); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; font-family: var(--font-display); font-weight: 600; font-size: 1.0125rem; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%; background: var(--brand-tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%230e766a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 6l5 5 5-5'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform .2s ease, background-color .2s ease;
}
.faq details[open] summary::after { transform: rotate(180deg); background-color: var(--brand-tint-2); }
.faq summary:hover { color: var(--brand-700); }
.faq__body { padding: 0 24px 24px; }
.faq__body p { color: var(--muted-on-light); font-size: .9688rem; }
.faq__body p + p { margin-top: .8em; }

/* ---------- company: brand panel + detail tiles ---------- */
.company__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 0; border-radius: var(--radius-xl); overflow: hidden; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); }
.company__logo { display: grid; align-content: center; justify-items: start; gap: 20px; padding: clamp(32px, 4vw, 56px); background: linear-gradient(150deg, var(--brand), var(--brand-700)); color: var(--white); }
.company__logo svg { height: auto; width: auto; }
.company__logo .logo-mark { color: var(--white); }
.company__prose { padding: clamp(28px, 4vw, 48px); }
.company__prose p { color: var(--muted); }
.details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 28px 0 0; }
.details div { padding: 14px 18px; border-radius: 12px; background: rgba(255,255,255,.05); }
.details dt { color: var(--brand); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.details dd { margin: 4px 0 0; font-size: .9375rem; color: var(--white); word-break: break-word; }
.company__link { display: inline-flex; margin-top: 24px; font-weight: 700; }

/* ---------- final CTA: rounded gradient banner ---------- */
.final { padding: clamp(56px, 7vw, 96px) 0; background: var(--white); }
.final__inner {
  position: relative; overflow: hidden; display: grid; gap: 20px; justify-items: center; text-align: center;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 64px); border-radius: var(--radius-xl);
  background: radial-gradient(500px 300px at 85% 0%, rgba(255,255,255,.22), transparent 70%), linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: var(--white);
}
.final__inner::before, .final__inner::after { content: ""; position: absolute; border-radius: 50%; border: 48px solid rgba(255,255,255,.08); pointer-events: none; }
.final__inner::before { width: 320px; height: 320px; left: -110px; bottom: -150px; }
.final__inner::after { width: 220px; height: 220px; right: -60px; top: -80px; }
.final h2 { max-width: 20ch; font-size: clamp(2rem, 4.4vw, 3.25rem); color: var(--white); position: relative; }
.final p { font-size: 1.125rem; max-width: 46ch; color: rgba(255,255,255,.92); position: relative; }
.final p.mono { font-size: .8125rem; text-transform: none; letter-spacing: 0; font-weight: 500; opacity: .9; }
.final p.mono a { color: var(--white); text-decoration-color: rgba(255,255,255,.6); }
.final .btn--dark { position: relative; }

/* ---------- footer: floating brand card + tiles + disclaimer panel ---------- */
.footer { position: relative; margin-top: 0; padding: 0 0 24px; background: var(--paper); }
.footer > .wrap { position: relative; }
.footer__brandband {
  position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px 40px;
  margin-bottom: 16px; padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-xl);
  background: var(--white); border: 1px solid var(--line-light); box-shadow: var(--shadow-md);
}
.footer__brand { display: grid; gap: 14px; max-width: 560px; }
.footer__brand svg { height: 40px; width: auto; color: var(--ink); }
.footer__brand .logo-mark { color: var(--brand); }
.footer__brand p { margin: 0; color: var(--muted-on-light); font-size: .9375rem; }
.footer__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.footer__rail { display: grid; grid-template-columns: 1fr 1fr 1.15fr 1.15fr; gap: 16px; padding: 0; }
.footer__col { padding: clamp(24px, 2.6vw, 32px); border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line-light); }
.footer__col:nth-child(3) { background: var(--brand-tint); border-color: var(--brand-tint-2); }
.footer__col:last-child { background: var(--deep); border-color: var(--deep); }
.footer__col h2 { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; font-family: var(--font-display); font-size: .8125rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; color: var(--brand-700); }
.footer__col h2::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.footer__col:last-child h2 { color: var(--brand); }
.footer__col ul { list-style: none; display: grid; gap: 10px; }
.footer__col p { color: var(--muted); font-size: .875rem; line-height: 1.65; margin: 0 0 16px; }
.footer__col a, .footer__col button.footer__linkbtn {
  color: var(--ink-2); text-decoration: none; font-size: .9375rem; background: none; border: 0; padding: 0; cursor: pointer; text-align: left; font-family: var(--font-body);
}
.footer__col ul a::before, .footer__col ul .footer__linkbtn::before { content: "→ "; color: var(--brand); opacity: 0; margin-left: -1.1em; transition: opacity .15s ease, margin .15s ease; }
.footer__col ul a:hover::before, .footer__col ul .footer__linkbtn:hover::before { opacity: 1; margin-left: 0; }
.footer__col a:hover, .footer__col button.footer__linkbtn:hover { color: var(--brand-700); }
.footer__col:last-child a { color: var(--brand); font-weight: 600; }
.footer__legal-data { display: grid; gap: 8px; color: var(--ink-3); font-size: .875rem; line-height: 1.6; }
.footer__legal-data strong { color: var(--ink); font-family: var(--font-display); font-size: 1rem; }

.footer__disclaimer { margin: 16px 0; padding: clamp(28px, 3.4vw, 44px); border-radius: var(--radius-xl); background: var(--white); border: 1px dashed var(--brand); columns: 2 340px; column-gap: clamp(28px, 4vw, 56px); }
.footer__disclaimer h2 { column-span: all; margin-bottom: 18px; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink); }
.footer__disclaimer p { color: var(--muted-on-light); font-size: .875rem; break-inside: avoid-column; }
.footer__disclaimer p + p { margin-top: .9em; }
.footer__disclaimer strong { color: var(--ink); font-weight: 700; }

.footer__t3 { display: flex; flex-wrap: wrap; gap: 10px 20px; justify-content: space-between; align-items: center; padding: 18px 8px 0; color: var(--muted-on-light); text-transform: none; letter-spacing: 0; font-size: .8125rem; font-weight: 500; }
.footer__t3 span:last-child { padding: 5px 14px; border-radius: var(--radius-pill); background: var(--brand-tint); color: var(--brand-800); font-weight: 700; }
.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(--deep); color: #e6f2f1;
  border-radius: var(--radius-lg); border: 1px solid var(--line-dark); box-shadow: var(--shadow-lg);
}
.consent p { font-size: .9375rem; color: var(--muted); max-width: 70ch; margin: 0; }
.consent__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.consent .btn { min-height: 44px; padding: 9px 22px; font-size: .875rem; }
.consent__link { font-size: .8125rem; color: var(--brand); }

/* ---------- inner pages: legal docs, contact, thank-you ---------- */
.page { padding: clamp(40px, 6vw, 88px) 0; background: linear-gradient(180deg, var(--brand-tint) 0, var(--white) 320px); }
.doc { max-width: var(--measure); }
.doc__meta { display: grid; gap: 6px; margin: 24px 0 40px; padding: 16px 22px; border-radius: var(--radius); background: var(--brand-tint); border: 1px solid var(--brand-tint-2); color: var(--brand-800); }
.doc h1.h2 { font-size: clamp(2rem, 4vw, 3rem); }
.doc h2 { font-size: clamp(1.25rem, 2vw, 1.5rem); margin: 44px 0 14px; color: var(--ink); padding-top: 28px; border-top: 1px solid var(--line-light); }
.doc h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.doc h3 { margin: 26px 0 8px; }
.doc p, .doc li { color: var(--ink-2); }
.doc ul { list-style: none; margin: 14px 0; display: grid; gap: 10px; }
.doc ul li { position: relative; padding-left: 26px; }
.doc ul li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); }
.doc__toc { list-style: none; display: grid; gap: 8px; margin: 0 0 44px; padding: 22px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line-light); }
.contact__card { border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line-light); box-shadow: var(--shadow-md); padding: clamp(24px, 3vw, 38px); max-width: 760px; }
.contact__mail { display: inline-block; margin: 6px 0 26px; font-family: var(--font-display); font-weight: 700; 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: 10px; margin: 0; }
.contact__grid div { padding: 14px 18px; border-radius: 12px; background: var(--paper); }
.contact__grid dt { color: var(--brand-700); font-size: .6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.contact__grid dd { margin: 4px 0 0; font-size: .9375rem; }
.page .details div { background: var(--paper); }
.page .details dt { color: var(--brand-700); }
.page .details dd { color: var(--ink); }
.thanks { max-width: 640px; }

/* ---------- 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; }
}
@media (prefers-reduced-motion: reduce) { .tl__panel.is-open { animation: none; } }

/* ---------- breakpoints ---------- */
@media (max-width: 1080px) {
  .footer__rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tools__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 992px) {
  .header__nav, .header__cta { display: none; }
  .header__toggle { display: flex; }
  .about__grid, .reg__grid, .faq__layout, .company__grid, .tl { grid-template-columns: 1fr; }
  .spec, .reg__intro, .faq__layout .section-head { position: static; }
  .fit { grid-template-columns: 1fr; }
  .adv { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .adv__card, .adv__card:nth-child(n) { grid-column: span 1; }
  .adv__card:nth-child(1), .adv__card:nth-child(7) { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat, .stat:nth-child(n) { grid-column: span 1; }
  .stat:first-child { grid-column: 1 / -1; grid-row: auto; min-height: 220px; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 36px; }
  .steps::before { display: none; }
  .tl__track { position: static; display: flex; overflow-x: auto; gap: 8px; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .tl__clip { flex: 0 0 auto; width: auto; max-width: 280px; scroll-snap-align: start; }
  .tl__clip[aria-expanded="true"] { transform: none; }
  .tl__meta { display: none; }
  .tl__panels { position: static; }
  .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --gutter: 16px; --header-h: 76px; }
  .header__logo svg { height: 24px; }
  .runs { grid-template-columns: 1fr; gap: 28px; }
  .runs::before { display: none; }
  .form__row--2, .details, .contact__grid, .bonus, .bonus + .bonus .bonus__list, .tools__grid { grid-template-columns: 1fr; }
  .adv { grid-template-columns: 1fr; }
  .adv__card:nth-child(n) { grid-column: 1 / -1; }
  .footer__rail { grid-template-columns: 1fr; }
  .footer__brandband { flex-direction: column; align-items: flex-start; }
  .footer__disclaimer { columns: 1; }
  .footer__t3 { flex-direction: column; align-items: flex-start; }
  .consent__inner { flex-direction: column; align-items: flex-start; }
  .tl__deliver { flex-direction: column; align-items: flex-start; }
  .hero__card { position: static; margin-top: 16px; display: inline-grid; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero__actions .btn, .footer__cta .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .stat:first-child { grid-column: auto; }
}

/* ---------- print ---------- */
@media print {
  .header, .footer__buttons, .consent, .overlay, .hero__actions { display: none; }
  body { background: #fff; color: #000; }
}

/* header pill width */
.header__inner { width: calc(100% - (var(--gutter) * 2)); }
.tool:last-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.4fr) minmax(0, 1fr) auto; align-items: center; gap: 8px 24px; }
.tool:last-child > * { margin: 0; }
.tool:last-child .tool__cost { align-self: center; }
@media (max-width: 1080px) { .tool:last-child { grid-template-columns: 1fr; } .tool:last-child .tool__cost { align-self: flex-start; } }
.form__row--2 > .form__row { align-content: end; }

/* mobile overflow guards */
body { overflow-x: clip; }
.tl > *, .about__grid > *, .reg__grid > *, .faq__layout > *, .company__grid > *, .fit > *, .hero__grid > * { min-width: 0; }
@media (max-width: 992px) {
  .about__grid, .reg__grid, .faq__layout, .company__grid, .tl, .fit { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 768px) {
  .form__row--2, .details, .contact__grid, .bonus, .bonus + .bonus .bonus__list, .tools__grid, .adv, .steps, .runs { grid-template-columns: minmax(0, 1fr); }
  .hero__title-main { font-size: clamp(2.4rem, 12vw, 3rem); }
}


@media (max-width: 992px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { max-width: 520px; margin-inline: auto; width: 100%; }
  .hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__stats li:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero__stats li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
}
@media (max-width: 560px) {
  .hero__flow { left: 8px; top: auto; bottom: 88px; }
  .hero__card { right: 8px; }
  .hero__media { border-radius: 160px 160px var(--radius-lg) var(--radius-lg); }
}
.header__inner { background: rgba(255,255,255,.95); }

/* no hover animation on links and link-buttons */
a, .btn, .nav__link, .overlay__link, .hero__card, .footer__col a, .footer__col button.footer__linkbtn, .callout__link { transition: none; }
.btn:hover, .btn--primary:hover, .btn--ghost:hover, .btn--dark:hover, .hero__card:hover { transform: none; }
.btn--primary:hover { box-shadow: 0 10px 24px -10px var(--brand-glow), 0 2px 0 rgba(255,255,255,.25) inset; }
.footer__col ul a::before, .footer__col ul .footer__linkbtn::before { transition: none; }
