/* ============================================================
   COACH TY ALEXANDER — Athletic Editorial Design System
   Strength · Conditioning · Athletic Performance — St. Petersburg, FL
   Bebas Neue (display) · DM Sans (text) · DM Mono (labels)
   Mobile-first. Premium. Conversion-focused.
============================================================ */

/* ── Design tokens ─────────────────────────────────────── */
:root {
  /* Foundation */
  --ink:        #0C0C0D;   /* near-black charcoal */
  --ink-2:      #101012;   /* raised surface */
  --ink-3:      #16171A;   /* cards */
  --ink-4:      #1D1E22;   /* card hover / inputs */
  --line:       rgba(244, 239, 231, 0.10);
  --line-2:     rgba(244, 239, 231, 0.16);

  /* Warm white ink */
  --paper:      #F4EFE7;
  --paper-dim:  rgba(244, 239, 231, 0.70);
  --paper-faint:rgba(244, 239, 231, 0.44);

  /* Single restrained accent — warm athletic gold */
  --accent:      #E6A94E;
  --accent-deep: #C6892C;
  --accent-soft: rgba(230, 169, 78, 0.14);
  --accent-line: rgba(230, 169, 78, 0.32);

  --ok: #5FB98A;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t:    0.45s var(--ease);

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.75);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--paper-dim);
  background: var(--ink);
  line-height: 1.7;
  min-height: 100dvh;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ── Typography ────────────────────────────────────────── */
.display {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  color: var(--paper);
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-line);
}
.eyebrow.center::after {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent-line);
}
h1, h2, h3, h4 { color: var(--paper); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
p { text-wrap: pretty; }
strong { color: var(--paper); font-weight: 600; }

/* ── Layout primitives ─────────────────────────────────── */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 11vw, 130px); position: relative; }
.section--tight { padding-block: clamp(48px, 8vw, 90px); }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-sm { max-width: 46ch; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1.1em; }
.divider { height: 1px; background: var(--line); border: 0; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  will-change: transform;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--primary {
  background: var(--accent);
  color: #1a1206;
  box-shadow: 0 10px 30px -10px rgba(230, 169, 78, 0.55);
}
.btn--primary:hover { background: var(--accent-deep); box-shadow: 0 14px 34px -10px rgba(230, 169, 78, 0.6); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-2);
}
.btn--ghost:hover { border-color: var(--accent-line); background: rgba(244, 239, 231, 0.04); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 16px; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Header / nav ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), background var(--t);
}
.site-header.scrolled { border-bottom-color: var(--line); background: color-mix(in srgb, var(--ink) 92%, transparent); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  color: var(--paper);
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}
.brand .brand-mark { color: var(--accent); }
.brand small {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--paper-faint);
  text-transform: uppercase;
}
.nav-links { display: none; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--paper-dim);
  letter-spacing: 0.01em;
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--paper); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 72px 0 auto 0;
  background: var(--ink-2);
  border-bottom: 1px solid var(--line);
  padding: 18px var(--gutter) 30px;
  display: grid;
  gap: 4px;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  z-index: 55;
  box-shadow: var(--shadow);
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  padding: 15px 4px;
  font-size: 18px;
  font-weight: 500;
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 16px; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  padding-top: clamp(48px, 9vw, 96px);
  padding-bottom: clamp(56px, 10vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  background: radial-gradient(circle, var(--accent-soft), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: clamp(36px, 6vw, 60px); align-items: center; }
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: var(--paper);
  font-size: clamp(52px, 13vw, 118px);
  margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); display: block; }
.hero-sub {
  font-size: clamp(17px, 2.4vw, 21px);
  color: var(--paper-dim);
  max-width: 40ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-3);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-width: 440px;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 12, 13, 0.72) 100%);
}
.hero-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--ink) 72%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-2);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }

/* ── Outcome strip ─────────────────────────────────────── */
.outcomes {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}
.outcome-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.outcome {
  padding: 30px clamp(18px, 4vw, 34px);
  border-bottom: 1px solid var(--line);
}
.outcome:last-child { border-bottom: 0; }
.outcome .num {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.outcome h3 { font-size: 19px; margin-bottom: 6px; }
.outcome p { font-size: 14.5px; color: var(--paper-dim); }

/* ── Section head ──────────────────────────────────────── */
.section-head { margin-bottom: clamp(38px, 6vw, 62px); max-width: 62ch; }
.section-head.center { margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 {
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1.04;
  margin-bottom: 18px;
}
.section-head p { font-size: clamp(16px, 2vw, 18px); color: var(--paper-dim); }

/* ── Philosophy ────────────────────────────────────────── */
.pillars { display: grid; gap: 20px; margin-top: 20px; }
.pillar {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-3);
}
.pillar .k {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}
.pillar h3 { font-size: 18px; margin-bottom: 6px; }
.pillar p { font-size: 14.5px; }

/* ── Flagship offer ────────────────────────────────────── */
.flagship {
  position: relative;
  border: 1px solid var(--accent-line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 100% at 100% 0%, var(--accent-soft), transparent 55%),
    var(--ink-3);
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}
.flagship-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #1a1206;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.flagship h2 { font-size: clamp(28px, 4.6vw, 44px); margin-bottom: 14px; }
.flagship .lede { font-size: clamp(16px, 2vw, 19px); color: var(--paper-dim); max-width: 58ch; margin-bottom: 30px; }
.include-grid { display: grid; gap: 14px 26px; margin-bottom: 34px; }
.include {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--paper);
}
.include .tick {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.include .tick svg { width: 12px; height: 12px; stroke: var(--accent); }
.flagship-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.flagship-price .amt { font-family: 'Bebas Neue', sans-serif; font-size: 46px; color: var(--paper); line-height: 1; }
.flagship-price .amt span { font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--paper-faint); font-weight: 500; }
.flagship-price .note { font-size: 13px; color: var(--paper-faint); margin-top: 4px; }

/* ── Ways to train ─────────────────────────────────────── */
.ways-grid { display: grid; gap: 20px; }
.way {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-3);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
  position: relative;
}
.way:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--ink-4); }
.way--featured { border-color: var(--accent-line); background: radial-gradient(120% 100% at 50% 0%, var(--accent-soft), transparent 60%), var(--ink-3); }
.way-flag {
  position: absolute;
  top: -11px; left: 30px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: #1a1206;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.way h3 { font-size: 22px; margin-bottom: 6px; }
.way .who { font-size: 13.5px; color: var(--accent); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.01em; }
.way p { font-size: 14.5px; margin-bottom: 20px; flex: 1; }
.way .price-line { font-size: 14px; color: var(--paper-dim); margin-bottom: 20px; }
.way .price-line b { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 26px; color: var(--paper); letter-spacing: 0.02em; }
.way .link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--paper);
}
.way .link:hover { color: var(--accent); }
.way .link .arrow { transition: transform 0.25s var(--ease); }
.way .link:hover .arrow { transform: translateX(4px); }

/* ── Pricing packages (clickable cards) ────────────────── */
.pkg-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 620px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pkg-grid { grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); } }
.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  color: var(--paper-dim);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.3s var(--ease), box-shadow 0.35s var(--ease);
}
.pkg::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pkg:hover { transform: translateY(-6px); border-color: var(--accent-line); box-shadow: var(--shadow); }
.pkg:hover::before { transform: scaleX(1); }
.pkg-name { font-size: 22px; font-weight: 700; color: var(--paper); letter-spacing: -0.01em; line-height: 1.15; }
.pkg-who { display: block; margin-top: 9px; font-size: 11.5px; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase; color: var(--accent); }
.pkg-desc { display: block; margin-top: 15px; font-size: 14px; line-height: 1.6; color: var(--paper-dim); flex: 1 0 auto; }
.pkg-foot { display: block; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 16px; }
.pkg-from { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper-faint); }
.pkg-amt { font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: 42px; line-height: 0.9; color: var(--paper); letter-spacing: 0.01em; }
.pkg-amt--sm { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 20px; letter-spacing: 0; }
.pkg-per { font-size: 13px; color: var(--paper-faint); }
.pkg-cta {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 13px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-2);
  font-size: 14.5px; font-weight: 600; color: var(--paper);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pkg-cta .arrow { transition: transform 0.25s var(--ease); }
.pkg:hover .pkg-cta { background: var(--accent); color: #1a1206; border-color: var(--accent); }
.pkg:hover .pkg-cta .arrow { transform: translateX(4px); }
.pkg--featured { border-color: var(--accent-line); background: radial-gradient(130% 90% at 50% 0%, var(--accent-soft), transparent 58%), linear-gradient(180deg, var(--ink-3), var(--ink-2)); }
.pkg--featured::before { transform: scaleX(1); }
.pkg--featured .pkg-cta { background: var(--accent); color: #1a1206; border-color: var(--accent); }
.pkg--featured:hover .pkg-cta { background: var(--accent-deep); border-color: var(--accent-deep); }
.pkg-flag {
  position: absolute; top: 15px; right: 15px;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--accent); color: #1a1206;
  font-family: 'DM Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}

/* ── Fit Finder quiz ───────────────────────────────────── */
.quiz { max-width: 680px; margin-inline: auto; }
.quiz-bar { height: 4px; border-radius: 3px; background: var(--ink-4); overflow: hidden; margin-bottom: 32px; }
.quiz-bar span { display: block; height: 100%; width: 20%; background: linear-gradient(90deg, var(--accent-deep), var(--accent)); border-radius: 3px; transition: width 0.45s var(--ease); }
.quiz-step, .quiz-result { display: none; }
.quiz-step.active, .quiz-result.active { display: block; animation: quizIn 0.4s var(--ease); }
@keyframes quizIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.quiz-kicker { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.quiz-q { font-size: clamp(24px, 4vw, 34px); color: var(--paper); font-weight: 700; line-height: 1.12; margin-bottom: 24px; letter-spacing: -0.01em; }
.quiz-opts { display: grid; gap: 12px; }
.quiz-opt {
  display: flex; align-items: center; gap: 14px;
  width: 100%; text-align: left;
  padding: 18px 20px; border-radius: var(--r-md);
  border: 1px solid var(--line-2); background: var(--ink-3);
  color: var(--paper); font-size: 16px; font-weight: 500;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.15s var(--ease);
}
.quiz-opt:hover { border-color: var(--accent-line); background: var(--ink-4); }
.quiz-opt:active { transform: scale(0.99); }
.quiz-opt .dot { flex: none; width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--line-2); transition: all 0.2s var(--ease); }
.quiz-opt.sel { border-color: var(--accent); background: var(--accent-soft); }
.quiz-opt.sel .dot { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px var(--ink-3); }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; }
.quiz-back { font-size: 14px; color: var(--paper-dim); display: inline-flex; align-items: center; gap: 7px; }
.quiz-back:hover { color: var(--paper); }
.quiz-back[hidden] { visibility: hidden; display: inline-flex; }
.quiz-count { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--paper-faint); }
.prefill-note { display: block; background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--paper); border-radius: var(--r-sm); padding: 13px 16px; font-size: 14px; margin-bottom: 18px; }
.prefill-note[hidden] { display: none; }

/* ── Split feature (basketball / about) ────────────────── */
.split { display: grid; gap: clamp(30px, 6vw, 60px); align-items: center; }
.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  position: relative;
  background: var(--ink-3);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media--tall { aspect-ratio: 3 / 4; }
.stat-row { display: flex; flex-wrap: wrap; gap: 26px 40px; margin-top: 28px; }
.stat .n { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--accent); line-height: 1; }
.stat .l { font-size: 13px; color: var(--paper-dim); letter-spacing: 0.02em; }
.check-list { display: grid; gap: 12px; margin-top: 8px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--paper); }
.check-list .tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; margin-top: 2px; }
.check-list .tick svg { width: 12px; height: 12px; stroke: var(--accent); }

/* ── Credentials ───────────────────────────────────────── */
.creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.cred {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-pill);
  background: var(--ink-3);
  font-size: 13px;
  color: var(--paper);
  font-weight: 500;
}
.cred .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

/* ── CTA band ──────────────────────────────────────────── */
.cta-band {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(100% 140% at 50% 0%, var(--accent-soft), transparent 60%),
    var(--ink-2);
  text-align: center;
}
.cta-band h2 { font-size: clamp(32px, 6vw, 60px); margin-bottom: 18px; }
.cta-band .display { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.01em; }
.cta-band p { font-size: 18px; color: var(--paper-dim); max-width: 52ch; margin: 0 auto 34px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-3);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 600;
  color: var(--paper);
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex: none; width: 20px; height: 20px; position: relative; transition: transform 0.3s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq summary .plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq summary .plus::after { left: 9px; top: 0; width: 2px; height: 20px; transition: opacity 0.3s var(--ease); }
.faq details[open] summary .plus { transform: rotate(90deg); }
.faq details[open] summary .plus::after { opacity: 0; }
.faq .faq-body { padding: 0 24px 24px; font-size: 15px; color: var(--paper-dim); }

/* ── Interior page hero ────────────────────────────────── */
.page-hero { padding-top: clamp(48px, 8vw, 88px); padding-bottom: clamp(30px, 5vw, 50px); position: relative; }
.breadcrumb { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.06em; color: var(--paper-faint); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--line-2); }
.page-hero h1 { font-size: clamp(38px, 8vw, 74px); font-family: 'Bebas Neue', sans-serif; font-weight: 400; text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.94; margin-bottom: 20px; color: var(--paper); }
.page-hero .lede { font-size: clamp(17px, 2.2vw, 20px); color: var(--paper-dim); max-width: 60ch; }

/* ── Apply form ────────────────────────────────────────── */
.apply-grid { display: grid; gap: clamp(30px, 5vw, 54px); align-items: start; }
.apply-aside .eyebrow { margin-bottom: 18px; }
.apply-aside h2 { font-size: clamp(28px, 4.4vw, 42px); margin-bottom: 16px; }
.apply-aside p { color: var(--paper-dim); margin-bottom: 22px; }
.apply-steps { display: grid; gap: 16px; margin-top: 26px; }
.apply-step { display: flex; gap: 14px; align-items: flex-start; }
.apply-step .n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--accent-line); background: var(--accent-soft);
  display: grid; place-items: center; color: var(--accent);
  font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 600;
}
.apply-step h4 { font-size: 15.5px; margin-bottom: 2px; }
.apply-step p { font-size: 14px; margin: 0; }

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--ink-3);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--paper); margin-bottom: 8px; letter-spacing: 0.01em; }
.field label .req { color: var(--accent); }
.field .hint { font-size: 12.5px; color: var(--paper-faint); font-weight: 400; margin-top: -2px; margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  background: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  color: var(--paper);
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--paper-faint); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--ink-4); }
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23E6A94E' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }
.field-row { display: grid; gap: 20px; }
.form-note { font-size: 12.5px; color: var(--paper-faint); margin-top: 4px; }
.form-note a { color: var(--paper-dim); text-decoration: underline; text-underline-offset: 2px; }
.form-status { border-radius: var(--r-sm); padding: 14px 16px; font-size: 14.5px; margin-bottom: 18px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(95, 185, 138, 0.12); border: 1px solid rgba(95, 185, 138, 0.4); color: #b6e7cd; }
.form-status.err { background: rgba(224, 82, 82, 0.12); border: 1px solid rgba(224, 82, 82, 0.4); color: #f2b8b8; }
.form-success { text-align: center; padding: 20px 6px; display: none; }
.form-success.show { display: block; }
.form-success .ico { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent-soft); border: 1px solid var(--accent-line); display: grid; place-items: center; }
.form-success .ico svg { width: 28px; height: 28px; stroke: var(--accent); }
.form-success h3 { font-size: 24px; margin-bottom: 10px; }
.form-success p { color: var(--paper-dim); }
button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding-block: clamp(48px, 7vw, 72px) 30px;
}
.footer-grid { display: grid; gap: 40px; margin-bottom: 44px; }
.footer-brand .brand { font-size: 28px; margin-bottom: 14px; }
.footer-brand p { font-size: 14.5px; color: var(--paper-dim); max-width: 34ch; }
.footer-col h4 { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--paper-faint); margin-bottom: 16px; font-weight: 500; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14.5px; color: var(--paper-dim); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--paper); }
.footer-contact a { display: block; }
.cross-link {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--ink-3);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.cross-link p { font-size: 14px; color: var(--paper-dim); }
.cross-link a { font-size: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 7px; }
.cross-link a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
  justify-content: space-between;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.footer-bottom p { font-size: 13px; color: var(--paper-faint); }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--paper-dim); transition: all 0.2s var(--ease); }
.footer-social a:hover { border-color: var(--accent-line); color: var(--accent); }
.footer-social svg { width: 17px; height: 17px; }

/* ── Sticky mobile apply bar (conversion) ──────────────── */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  gap: 10px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--ink) 90%, transparent);
  backdrop-filter: saturate(1.3) blur(14px);
  -webkit-backdrop-filter: saturate(1.3) blur(14px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { flex: 1; padding: 14px 18px; }
.sticky-cta .btn--call {
  flex: 0 0 auto; width: 54px; padding: 0;
  display: grid; place-items: center;
}
.sticky-cta .btn--call svg { width: 20px; height: 20px; }
@media (max-width: 899px) {
  .sticky-cta { display: flex; }
  body.has-cta { padding-bottom: 76px; }
}

/* ── Reveal on scroll ──────────────────────────────────────
   Progressive enhancement: content is visible by default and only
   starts hidden once the inline head script confirms JS is present
   (html.js). No-JS or failed-JS visitors always see everything. */
.reveal { transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(22px); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

/* ── Responsive ────────────────────────────────────────── */
@media (min-width: 640px) {
  .outcome-grid { grid-template-columns: 1fr 1fr; }
  .outcome { border-right: 1px solid var(--line); }
  .outcome:nth-child(2n) { border-right: 0; }
  .outcome:nth-last-child(-n+2):nth-child(odd) { }
  .pillars { grid-template-columns: 1fr 1fr; }
  .include-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { min-width: 200px; }
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
  .hero-media { justify-self: end; max-width: 440px; }
  .outcome-grid { grid-template-columns: repeat(4, 1fr); }
  .outcome { border-right: 1px solid var(--line); border-bottom: 0; }
  .outcome:last-child { border-right: 0; }
  .pillars { grid-template-columns: repeat(4, 1fr); }
  .ways-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .way--featured { transform: scale(1.03); }
  .way--featured:hover { transform: scale(1.03) translateY(-4px); }
  .ways-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .ways-grid--4 .way--featured { transform: none; }
  .ways-grid--4 .way--featured:hover { transform: translateY(-4px); }
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split-media { order: 2; }
  .apply-grid { grid-template-columns: 0.9fr 1.1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.3fr; }
  .flagship-price .amt { font-size: 52px; }
}
@media (min-width: 1100px) {
  .hero h1 { font-size: clamp(80px, 8vw, 120px); }
}

/* Hide mobile menu container on desktop */
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ── Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ── Print ─────────────────────────────────────────────── */
@media print {
  .site-header, .mobile-menu, .cta-band, .site-footer { display: none; }
  body { background: #fff; color: #111; }
}
