/* ============================================================
   VIA METHOD — Design System
   Dark athletic · Barlow Condensed / Barlow · #E52424 on charcoal
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Brand (sampled from official assets) */
  --red: #E52424;
  --red-bright: #FF3B3B;
  --red-deep: #B81C1C;
  --yellow: #FFDB2F;

  /* Surfaces */
  --bg: #0E0E10;
  --charcoal: #161618;
  --charcoal-2: #1C1C1F;
  --charcoal-3: #242428;
  --border: #2C2C31;

  /* Text */
  --text: #F5F5F2;
  --text-muted: #A6A6A3;
  --text-faint: #777774;

  /* Type */
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 180ms;
  --dur-med: 280ms;
  --dur-reveal: 700ms;

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
  --radius: 10px;
  --radius-lg: 16px;

  /* Z scale */
  --z-nav: 100;
  --z-menu: 90;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;           /* 17px */
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

input, button, textarea, select { font: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

button { cursor: pointer; background: none; border: none; }

::selection { background: var(--red); color: #fff; }

/* Sections get breathing room under the fixed nav when anchored */
section[id], [id="apply"] { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ---------- Type scale ---------- */
h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h2 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); font-weight: 700; letter-spacing: 0.03em; }

p { text-wrap: pretty; }

.text-red { color: var(--red); }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.container-narrow { max-width: 860px; }

.section {
  position: relative;
  padding-block: clamp(84px, 11vw, 148px);
}

.section-alt { background: var(--charcoal); }

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

.section-head-left { margin: 0 0 clamp(36px, 5vw, 56px); text-align: left; }

.section-lede {
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 60ch;
  margin-inline: auto;
}

.section-head-left .section-lede { margin-inline: 0; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: calc(var(--z-nav) + 10);
  background: var(--red);
  color: #fff;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 0 0 8px 8px;
  transition: top var(--dur-fast) ease-out;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  min-height: 48px;
  padding: 12px 28px;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform var(--dur-fast) var(--ease-out),
              background-color var(--dur-fast) ease-out,
              border-color var(--dur-fast) ease-out,
              box-shadow var(--dur-fast) ease-out;
}

.btn .icon { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .icon { transform: translateX(4px); }

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 28px rgba(229, 36, 36, 0.28);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(229, 36, 36, 0.4);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--red); color: #fff; background: rgba(229, 36, 36, 0.1); }
.btn-outline .icon { width: 20px; height: 20px; }

.btn-lg { min-height: 56px; padding: 14px 34px; font-size: 1.1rem; }
.btn-sm { min-height: 42px; padding: 8px 20px; font-size: 0.95rem; }
.btn-block { width: 100%; }

.btn[disabled] { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background-color var(--dur-med) ease-out,
              border-color var(--dur-med) ease-out,
              backdrop-filter var(--dur-med) ease-out;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(14, 14, 16, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { width: auto; height: 40px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.nav-links > a:not(.btn) {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 8px 2px;
  position: relative;
  transition: color var(--dur-fast) ease-out;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 2px;
  background: var(--red);
  transition: right var(--dur-med) var(--ease-out);
}

.nav-links > a:not(.btn):hover { color: var(--text); }
.nav-links > a:not(.btn):hover::after { right: 0; }

.nav-link-accent { color: var(--yellow) !important; }

.nav-toggle {
  display: none;
  flex: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-h) + 48px) 72px;
  overflow: hidden;
  background:
    radial-gradient(1000px 520px at 82% 10%, rgba(229, 36, 36, 0.10), transparent 65%),
    var(--bg);
}

.hero-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-arcs svg {
  width: 100%;
  height: 100%;
  animation: arc-drift 16s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes arc-drift {
  from { transform: translate3d(0, -12px, 0); }
  to   { transform: translate3d(0, 14px, 0); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.8fr);
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.hero-title {
  font-size: clamp(3.4rem, 8.5vw, 6.75rem);
  display: flex;
  flex-direction: column;
}

.hero-line-red { color: var(--red); }

.hero-sub {
  margin-top: 26px;
  max-width: 54ch;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-faint);
  font-size: 0.95rem;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-trust li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.hero-media { position: relative; }

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(200deg, transparent 55%, rgba(14, 14, 16, 0.72));
  pointer-events: none;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 2px solid var(--red);
  border-radius: var(--radius-lg);
  opacity: 0.55;
  pointer-events: none;
}

.hero-media-tag {
  position: absolute;
  right: -14px;
  bottom: 34px;
  transform: rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  animation: cue-bob 2.2s ease-in-out infinite;
  transition: color var(--dur-fast) ease-out;
}
.scroll-cue:hover { color: var(--text); }
.scroll-cue svg { width: 26px; height: 26px; }

@keyframes cue-bob {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--charcoal);
  padding-block: 18px;
}

.marquee-skew {
  will-change: transform;
}

.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: transparent;
  -webkit-text-stroke: 1px var(--text-faint);
  padding-right: 8px;
}

.marquee-track span:nth-child(odd) {
  color: var(--red);
  -webkit-text-stroke: 0;
}

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ---------- Pillars (The Method) ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
}

.pillar {
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  overflow: hidden;
  transition: transform var(--dur-med) var(--ease-out),
              border-color var(--dur-med) ease-out,
              box-shadow var(--dur-med) ease-out;
}

.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 36, 36, 0.5);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45);
}

.pillar-num {
  position: absolute;
  top: 14px;
  right: 20px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 4.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--charcoal-3);
  transition: -webkit-text-stroke-color var(--dur-med) ease-out;
}

.pillar:hover .pillar-num { -webkit-text-stroke-color: rgba(229, 36, 36, 0.45); }

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 36, 36, 0.12);
  color: var(--red);
  margin-bottom: 22px;
}
.pillar-icon svg { width: 28px; height: 28px; }

.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--text-muted); font-size: 1rem; }
.pillar em { font-style: italic; color: var(--text); }

/* ---------- Coaching (What you get) ---------- */
.coaching-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.coaching-media { position: sticky; top: calc(var(--nav-h) + 32px); }

.coaching-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
}

.coaching-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 60%, rgba(22, 22, 24, 0.8));
  pointer-events: none;
}

.coaching-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.feature {
  display: flex;
  gap: 20px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--border);
}

.feature:first-child { border-top: 1px solid var(--border); }

.feature-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 36, 36, 0.12);
  color: var(--red);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature h3 { font-size: 1.25rem; margin-bottom: 6px; }
.feature p { color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Steps (How it works) ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 22px 0;
  border-top: 2px solid var(--border);
}

.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 56px;
  height: 2px;
  background: var(--red);
}

.step-num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--red);
  margin-bottom: 14px;
}

.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.97rem; }

/* ---------- Pricing ---------- */
#pricing { overflow: hidden; }

.pricing-arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pricing-arcs svg { width: 100%; height: 100%; }

.price-card {
  position: relative;
  max-width: 560px;
  margin-inline: auto;
  background: linear-gradient(180deg, var(--charcoal-2), var(--charcoal));
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 4.5vw, 56px);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.price-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--yellow);
  border: 1px solid rgba(255, 219, 47, 0.35);
  border-radius: 999px;
  padding: 7px 20px;
  margin-bottom: 26px;
}

.price-amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4.5rem, 9vw, 6.5rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.price-currency {
  font-size: 0.45em;
  vertical-align: super;
  color: var(--text-muted);
  margin-right: 2px;
}

.price-period {
  font-size: 0.3em;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.price-note {
  margin-top: 10px;
  color: var(--text-faint);
  font-size: 0.95rem;
}

.price-list {
  list-style: none;
  margin: 32px 0 34px;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.02rem;
}

.icon-check {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--red);
}

.price-fine {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 0.88rem;
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur-fast) ease-out;
}

.faq-item.open { border-color: rgba(229, 36, 36, 0.45); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  padding: 20px 24px;
  min-height: 64px;
  color: var(--text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--dur-fast) ease-out;
}

.faq-q:hover { color: var(--red-bright); }

.faq-chev {
  flex: none;
  width: 22px;
  height: 22px;
  color: var(--text-faint);
  transition: transform var(--dur-med) var(--ease-out), color var(--dur-fast) ease-out;
}

.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--red); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-med) var(--ease-out);
}

.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a-inner { overflow: hidden; }

.faq-a-inner p {
  padding: 0 24px 22px;
  color: var(--text-muted);
}

/* ---------- Apply ---------- */
.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.apply-points {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text-muted);
}

.apply-points li { display: flex; align-items: center; gap: 14px; }

.apply-alt {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.apply-alt p {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.apply-form {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.form-row { display: flex; flex-direction: column; gap: 8px; }

.form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-row-half > div { display: flex; flex-direction: column; gap: 8px; }

.apply-form label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.req { color: var(--red); }
.optional { color: var(--text-faint); text-transform: none; letter-spacing: 0; font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; }

.apply-form input,
.apply-form select,
.apply-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  min-height: 48px;
  color: var(--text);
  width: 100%;
  transition: border-color var(--dur-fast) ease-out, box-shadow var(--dur-fast) ease-out;
}

.apply-form textarea { resize: vertical; min-height: 110px; }

.apply-form input::placeholder,
.apply-form textarea::placeholder { color: var(--text-faint); }

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(229, 36, 36, 0.22);
}

.apply-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A6A6A3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 44px;
}

.field-error {
  display: none;
  color: var(--red-bright);
  font-size: 0.88rem;
}

.form-row.invalid .field-error,
.form-row-half > div.invalid .field-error { display: block; }

.form-row.invalid input,
.form-row-half > div.invalid select { border-color: var(--red); }

.gotcha { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-status { min-height: 1.4em; font-size: 0.95rem; color: var(--text-muted); text-align: center; }
.form-status.error { color: var(--red-bright); }
.form-status.success { color: var(--yellow); }

.form-success {
  text-align: center;
  padding: 40px 10px;
}
.form-success h3 { color: var(--yellow); margin-bottom: 12px; }
.form-success p { color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding-top: clamp(48px, 6vw, 72px);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding-bottom: 44px;
}

.footer-brand img { width: 132px; height: auto; }

.footer-brand p {
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 0;
  transition: color var(--dur-fast) ease-out;
}
.footer-links a:hover { color: var(--text); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  padding: 8px 0;
  transition: color var(--dur-fast) ease-out;
}
.footer-social a:hover { color: var(--text); }
.footer-social svg { width: 22px; height: 22px; }

.footer-legal {
  border-top: 1px solid var(--border);
  padding-block: 22px;
  color: var(--text-faint);
  font-size: 0.88rem;
  text-align: center;
}

/* ---------- Reveal animations ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* ---------- Blueprint page ---------- */
.bp-hero {
  position: relative;
  padding-block: calc(var(--nav-h) + clamp(56px, 9vw, 110px)) clamp(72px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(900px 480px at 15% 8%, rgba(229, 36, 36, 0.10), transparent 65%),
    var(--bg);
}

.bp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.7fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.bp-title { font-size: clamp(2.9rem, 7vw, 5.5rem); }
.bp-title .text-red { display: block; }

.bp-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--text-muted);
}

.bp-list li { display: flex; align-items: flex-start; gap: 14px; }
.bp-list .icon-check { margin-top: 4px; }

.bp-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 38px; }

.bp-cta-note { color: var(--text-faint); font-size: 0.9rem; }

.bp-cover {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  transform: rotate(2deg);
}

.bp-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.bp-band {
  background: var(--charcoal);
  border-block: 1px solid var(--border);
  padding-block: clamp(64px, 8vw, 100px);
  text-align: center;
}

.bp-band h2 { margin-bottom: 16px; }
.bp-band p { color: var(--text-muted); max-width: 52ch; margin: 0 auto 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-media { max-width: 460px; }
  .hero-media-tag { display: none; }
  .scroll-cue { display: none; }

  .coaching-grid { grid-template-columns: 1fr; }
  .coaching-media { position: static; max-width: 460px; }

  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }

  .apply-grid { grid-template-columns: 1fr; }

  .bp-grid { grid-template-columns: 1fr; }
  .bp-cover { max-width: 400px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-logo img { height: 34px; }

  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    z-index: var(--z-menu);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(14, 14, 16, 0.97);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 18px clamp(20px, 4vw, 40px) 26px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur-med) var(--ease-out),
                opacity var(--dur-med) ease-out,
                visibility 0s linear var(--dur-med);
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-links > a:not(.btn) {
    padding: 14px 4px;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links > a:not(.btn)::after { content: none; }

  .nav-cta { margin-top: 16px; }

  .pillar-grid { grid-template-columns: 1fr; }

  .form-row-half { grid-template-columns: 1fr; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .bp-cta .btn { width: 100%; }
}

/* ============================================================
   ENHANCEMENTS — preloader, cursor, WebGL, premium motion
   (everything below degrades gracefully: no JS / no CDN / no
   WebGL / reduced-motion all keep the site fully usable)
   ============================================================ */

/* ---------- Lenis smooth scroll helpers ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* GSAP-driven elements must not fight CSS transitions */
.gsap-anim { transition: none !important; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: transform 650ms var(--ease-out), visibility 0s linear 650ms;
  /* Failsafe: if JS never runs, dismiss anyway */
  animation: preloader-failsafe 0.6s ease 3.2s forwards;
}

.preloader.done {
  transform: translateY(-101%);
  visibility: hidden;
}

.preloader img { width: min(190px, 42vw); height: auto; }

.preloader-count {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 3.6rem);
  line-height: 1;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.preloader-bar {
  width: min(300px, 58vw);
  height: 2px;
  background: var(--border);
  overflow: hidden;
}

.preloader-bar-fill {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

@keyframes preloader-failsafe {
  to { transform: translateY(-101%); visibility: hidden; }
}

/* ---------- Custom cursor (decorative; native cursor stays) ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(229, 36, 36, 0.55);
  transition: width 250ms var(--ease-out), height 250ms var(--ease-out),
              border-color 250ms ease-out, opacity 250ms ease-out;
}

.cursor-ring.is-active {
  width: 58px;
  height: 58px;
  border-color: var(--yellow);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Button sheen sweep ---------- */
.btn { position: relative; overflow: hidden; }

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -70%;
  width: 44%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.30), transparent);
  transform: skewX(-20deg);
  transition: left 600ms ease;
  pointer-events: none;
}

.btn:hover::before { left: 130%; }

/* ---------- Nav auto-hide on scroll down ---------- */
.nav {
  transition: background-color var(--dur-med) ease-out,
              border-color var(--dur-med) ease-out,
              backdrop-filter var(--dur-med) ease-out,
              transform 340ms var(--ease-out);
}

.nav.nav-hidden { transform: translateY(-100%); }
.nav:focus-within { transform: none; }

/* ---------- Hero particle canvas ---------- */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Split-text headline: mask each line, protect descenders */
.hero-title .hero-line {
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

[data-split] .word { display: inline-block; white-space: pre; }
[data-split] .char { display: inline-block; will-change: transform; }

/* ---------- The System (3D band) ---------- */
.system {
  position: relative;
  padding-block: clamp(84px, 11vw, 140px);
  background: var(--charcoal);
  border-block: 1px solid var(--border);
  overflow: hidden;
}

.system .section-head { margin-bottom: 0; }

.system-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(820px 420px at 50% 58%, rgba(229, 36, 36, 0.12), transparent 70%);
  pointer-events: none;
}

.system-canvas-wrap {
  position: relative;
  height: clamp(280px, 44vh, 460px);
  margin-block: clamp(10px, 2.5vw, 28px);
}

.system-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.no-webgl .system-canvas-wrap,
.no-webgl .hero-canvas { display: none; }

.no-webgl .system-canvas-wrap + .container .stats-grid { margin-top: clamp(36px, 5vw, 56px); }

.stats-grid {
  list-style: none;
  margin: clamp(20px, 3.5vw, 40px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  position: relative;
}

.stat-value {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.7rem, 5.5vw, 4.2rem);
  line-height: 1;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- Photo treatments ---------- */
.coaching-frame img {
  filter: grayscale(0.85) contrast(1.02);
  transition: filter 900ms ease;
}

.coaching-media.revealed .coaching-frame img { filter: none; }

/* ---------- Step line draw ---------- */
.step::before {
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 700ms var(--ease-out) 180ms;
}

.step.revealed::before { transform: scaleX(1); }

/* ---------- Tilt targets ---------- */
[data-tilt] { will-change: transform; }

/* ---------- Enhancement responsive ---------- */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
  .system-canvas-wrap { height: clamp(220px, 36vh, 320px); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee-track { animation: none; }
  .hero-arcs svg { animation: none; }
  .scroll-cue { animation: none; }

  /* Kill all decorative enhancement layers */
  .preloader,
  .cursor-dot,
  .cursor-ring,
  .hero-canvas,
  .system-canvas-wrap { display: none !important; }

  .coaching-frame img { filter: none; }
  .step::before { transform: scaleX(1); }
}
