/* ============================================================
   APEX ATHLETIC — homepage CSS
   Hand-crafted. Dark, athletic, accent #ff4e1a.
   ============================================================ */

:root {
  --bg:        #0c0c0e;
  --bg-2:      #131316;
  --surface:   #18181b;
  --surface-2: #1f1f23;
  --line:      #2a2a30;
  --line-soft: #1f1f24;
  --text:      #f4f4f6;
  --text-mute: #9a9aa3;
  --text-dim:  #6b6b75;
  --accent:    #ff4e1a;
  --accent-2:  #ff7a3e;
  --accent-deep:#c1310d;

  --container: 1280px;
  --gutter:    clamp(20px, 4vw, 56px);

  --display: "Anton", "Bebas Neue", Impact, sans-serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;

  --ease:    cubic-bezier(.2,.7,.2,1);
  --r-sm:    6px;
  --r-md:    10px;
  --r-lg:    16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left:  var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.topbar {
  background: linear-gradient(180deg, #0a0a0c 0%, #060607 100%);
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--text-mute);
  position: relative;
  z-index: 30;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 6px;
  padding-bottom: 6px;
}
.topbar__contact,
.topbar__social {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar__contact li,
.topbar__social li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar__contact svg { color: var(--accent); }
.topbar__social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-soft);
  transition: all .25s var(--ease);
  color: var(--text-mute);
}
.topbar__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: absolute;
  inset: 38px 0 auto 0;
  z-index: 25;
  background: transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  position: fixed;
  inset: 0 0 auto 0;
  background: rgba(8,8,10,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  animation: slidedown .35s var(--ease);
}
@keyframes slidedown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}
.brand__mark {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  color: var(--accent);
  background: rgba(255,78,26,.08);
  border: 1px solid rgba(255,78,26,.32);
  border-radius: 8px;
  transition: transform .3s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(-4deg) scale(1.04); }
.brand__word {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: .04em;
  line-height: 1;
}
.brand__word em {
  font-style: normal;
  color: var(--accent);
  margin-left: 2px;
}
.brand--light { color: var(--text); }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}
.nav__links a:hover { color: var(--accent); }
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--accent); }

.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  align-items: center; justify-content: center;
  border-radius: var(--r-sm);
  transition: background .2s var(--ease);
}
.nav__burger:hover { background: var(--accent-deep); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  --bh: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: var(--bh);
  padding: 0 26px;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12.5px;
  text-transform: uppercase;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform .25s var(--ease), color .2s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--sm  { --bh: 40px; padding: 0 18px; font-size: 11.5px; }
.btn--block { display: flex; width: 100%; }

.btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 22px -10px rgba(255,78,26,.7);
}
.btn--accent::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--accent-deep) 0%, var(--accent) 60%);
  transform: translateX(-100%) skewX(-18deg);
  transition: transform .45s var(--ease);
  z-index: 0;
}
.btn--accent > * { position: relative; z-index: 1; }
.btn--accent:hover::before { transform: translateX(0) skewX(-18deg); }
.btn--accent:hover { transform: translateY(-1px); }

.btn--outline {
  border: 1.5px solid rgba(255,255,255,.32);
  color: var(--text);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost {
  border: 1.5px solid rgba(255,255,255,.2);
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.btn--ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__media,
.hero__media video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__media { z-index: 0; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(75% 80% at 50% 50%, rgba(193,49,13,.18) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,8,10,.85) 0%, rgba(8,8,10,.55) 35%, rgba(8,8,10,.78) 80%, rgba(8,8,10,.95) 100%);
}
.hero__chevron {
  position: absolute; inset: 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,78,26,.22) 40%, rgba(255,78,26,.22) 60%, transparent 70%);
  mix-blend-mode: screen;
  opacity: .35;
  pointer-events: none;
}

.hero__deco { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.x {
  position: absolute;
  width: 16px; height: 16px;
  opacity: .85;
}
.x::before, .x::after {
  content: "";
  position: absolute; top: 50%; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform-origin: center;
}
.x::before { transform: translateY(-50%) rotate(45deg); }
.x::after  { transform: translateY(-50%) rotate(-45deg); }
.x--tl { top: 22%; left: 8%; }
.x--tr { top: 18%; right: 12%; }

.dots {
  position: absolute;
  width: 64px; height: 64px;
  background-image: radial-gradient(circle, rgba(255,255,255,.55) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  background-repeat: repeat;
  opacity: .35;
}
.dots--l { top: 26%; left: 4%; }
.dots--r { bottom: 18%; right: 6%; }

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 22px;
  font-weight: 600;
}
.eyebrow__line {
  display: inline-block;
  width: 36px; height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 13.5vw, 220px);
  line-height: .85;
  letter-spacing: -.01em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.hero__title .line { display: block; position: relative; }
.line--outline {
  -webkit-text-stroke: 2px rgba(255,255,255,.85);
  color: transparent;
}
.line--solid {
  color: var(--text);
  margin-left: clamp(40px, 8vw, 140px);
}
.line--shift {
  color: var(--accent);
  margin-left: clamp(80px, 16vw, 280px);
  display: inline-block;
}
.period { color: var(--text); }

.hero__lede {
  max-width: 560px;
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--text-mute);
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__meta {
  position: absolute;
  bottom: 32px; left: 0; right: 0;
  z-index: 2;
}
.hero__meta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-mute);
}
.stars { color: var(--accent); letter-spacing: 2px; }
.hero__scrollcue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-mute);
  transition: color .2s var(--ease);
}
.hero__scrollcue svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
.hero__scrollcue:hover { color: var(--accent); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: .04em;
}
.marquee__track span {
  display: inline-flex; align-items: center; gap: 28px;
  padding-right: 28px;
}
.marquee__track i {
  font-style: normal;
  font-size: .8em;
  color: rgba(255,255,255,.65);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-33.333%); } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 64px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat {
  position: relative;
  padding: 8px 32px 8px 0;
  border-right: 1px solid var(--line);
}
.stats__grid .stat:last-child { border-right: 0; }
.stat__num {
  font-family: var(--display);
  font-size: clamp(48px, 5vw, 78px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -.01em;
}
.stat__plus {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 56px);
  color: var(--accent);
  line-height: 1;
  margin-left: 2px;
}
.stat__lbl {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
.section {
  padding: clamp(72px, 9vw, 130px) 0;
  position: relative;
}
.section--programs { background: var(--bg); }
.section--about    { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--steps    { background: var(--bg); }
.section--coaches  { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section--pricing  { background: var(--bg); }
.section--stories  { background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section__head {
  max-width: 760px;
  margin: 0 0 56px;
}
.section__head--row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  max-width: none;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
  margin-bottom: 22px;
}
.kicker b {
  color: var(--accent);
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0;
}
.kicker--light { color: rgba(255,255,255,.7); }

.section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: .96;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: -.005em;
}
.section__title em {
  font-style: normal;
  color: var(--text-mute);
}
.section__title .accent { color: var(--accent); }
.section__sub {
  color: var(--text-mute);
  font-size: clamp(15px, 1.2vw, 17px);
  margin: 0;
  max-width: 620px;
}
.section__sub--align { align-self: end; text-align: right; }

/* ============================================================
   PROGRAMS GRID
   ============================================================ */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.prog {
  position: relative;
  padding: 36px 28px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.prog::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .45s var(--ease);
}
.prog:hover {
  transform: translateY(-4px);
  border-color: rgba(255,78,26,.35);
  background: var(--surface-2);
}
.prog:hover::after { width: 100%; }
.prog__num {
  position: absolute;
  top: 22px; right: 26px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: .1em;
}
.prog__icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(255,78,26,.1);
  border: 1px solid rgba(255,78,26,.3);
  border-radius: 8px;
  color: var(--accent);
  margin-bottom: 22px;
  transition: transform .35s var(--ease), background .25s var(--ease);
}
.prog:hover .prog__icon {
  transform: rotate(-5deg) scale(1.04);
  background: var(--accent);
  color: #fff;
}
.prog h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.prog p {
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 22px;
}
.prog__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  transition: gap .25s var(--ease), color .2s var(--ease);
}
.prog__more span { color: var(--accent); transition: transform .25s var(--ease); }
.prog__more:hover { color: var(--accent); }
.prog__more:hover span { transform: translateX(4px); }

.prog--feat {
  background: linear-gradient(180deg, var(--surface) 0%, #251008 100%);
  border-color: rgba(255,78,26,.35);
}
.prog--feat::after { width: 100%; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.about__text p {
  color: var(--text-mute);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 30px;
}
.about__bullets {
  display: grid;
  gap: 18px;
  margin: 0 0 36px;
}
.about__bullets li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: start;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 6px;
  font-size: 14.5px;
  color: var(--text);
}
.about__bullets li span {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  padding-top: 2px;
}
.about__sig {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--accent);
}
.about__sig div { color: var(--text-mute); }
.about__sig strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  letter-spacing: .02em;
}
.about__sig span {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  isolation: isolate;
}
.about__video, .about__video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__videoframe {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, transparent 50%, rgba(12,12,14,.65) 100%),
    linear-gradient(0deg, rgba(255,78,26,.08), rgba(255,78,26,.08));
  z-index: 1;
  pointer-events: none;
}
.about__badge {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(8,8,10,.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.about__badge-num {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
}
.about__badge-num small {
  font-size: 14px;
  color: var(--text-mute);
  margin-left: 4px;
}
.about__badge-lbl {
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  line-height: 1.4;
}
.about__chip {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  padding: 8px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: var(--r-md);
  position: relative;
  transition: transform .3s var(--ease), background .25s var(--ease);
}
.step:hover { transform: translateY(-3px); background: var(--surface-2); }
.step__num {
  display: block;
  font-family: var(--display);
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.step h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.step p {
  color: var(--text-mute);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   COACHES
   ============================================================ */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.coach {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .25s var(--ease);
}
.coach:hover {
  transform: translateY(-4px);
  border-color: rgba(255,78,26,.35);
}
.coach__photo {
  aspect-ratio: 1 / 1.05;
  position: relative;
  overflow: hidden;
}
.coach__photo svg { width: 100%; height: 100%; }
.coach__info { padding: 22px 22px 26px; }
.coach__info h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.coach__info > span {
  display: block;
  font-size: 12.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.coach__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.coach__pills li {
  font-size: 11px;
  letter-spacing: .1em;
  padding: 4px 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text-mute);
  font-family: var(--mono);
}

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 36px 32px;
  transition: transform .3s var(--ease), border-color .25s var(--ease);
}
.price:hover { transform: translateY(-3px); }
.price__head { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.price__tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 18px;
}
.price__cost {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  line-height: 1;
  margin-bottom: 12px;
}
.price__currency {
  font-family: var(--display);
  font-size: 28px;
  color: var(--text-mute);
  margin-top: 8px;
}
.price__num {
  font-family: var(--display);
  font-size: 78px;
  line-height: 1;
  letter-spacing: -.02em;
}
.price__per {
  align-self: end;
  margin-bottom: 12px;
  color: var(--text-mute);
  font-size: 14px;
  letter-spacing: .04em;
}
.price__sub {
  margin: 0;
  font-size: 14px;
  color: var(--text-mute);
}
.price__list {
  flex: 1;
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
}
.price__list li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  color: var(--text);
}
.price__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: rgba(255,78,26,.18);
  border-radius: 4px;
}
.price__list li::after {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.price--featured {
  background: linear-gradient(180deg, #1c0d07 0%, #2c1108 100%);
  border-color: var(--accent);
  box-shadow: 0 14px 42px -22px rgba(255,78,26,.6);
  transform: scale(1.02);
}
.price--featured:hover { transform: scale(1.02) translateY(-3px); }
.price__ribbon {
  position: absolute;
  top: -1px; right: 26px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 7px 14px 8px;
  border-radius: 0 0 4px 4px;
}
.price__note {
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
  margin: 32px 0 0;
}

/* ============================================================
   QUOTES
   ============================================================ */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.quote {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  margin: 0;
  position: relative;
  transition: transform .3s var(--ease), border-color .25s var(--ease);
}
.quote:hover {
  transform: translateY(-3px);
  border-color: rgba(255,78,26,.3);
}
.quote__mark { color: var(--accent); opacity: .7; margin-bottom: 14px; }
.quote blockquote {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.quote figcaption strong {
  display: block;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 2px;
}
.quote figcaption span {
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-weight: 600;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 140px) 0;
}
.cta__media, .cta__media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(193,49,13,.4), transparent 70%),
    linear-gradient(180deg, rgba(8,8,10,.86) 0%, rgba(8,8,10,.78) 100%);
}
.cta__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.cta__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 6.5vw, 96px);
  line-height: .95;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.cta__title span { color: var(--accent); }
.cta__lede {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 17px;
  color: var(--text-mute);
}
.cta__form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 18px;
  background: rgba(8,8,10,.65);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 6px;
}
.cta__form input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  padding: 0 16px;
  min-width: 0;
}
.cta__form input::placeholder { color: var(--text-dim); }
.cta__form .btn { height: 48px; padding: 0 22px; flex: 0 0 auto; }
.cta__fine {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060608;
  border-top: 1px solid var(--line-soft);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__brand p {
  max-width: 320px;
  color: var(--text-mute);
  font-size: 14.5px;
  margin: 18px 0 22px;
}
.footer__brand .topbar__social { gap: 12px; }
.footer__col h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 22px;
  color: var(--text);
}
.footer__col ul { display: grid; gap: 10px; }
.footer__col a,
.footer__col address a {
  color: var(--text-mute);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--accent); }
.footer__col address { font-size: 14px; color: var(--text-mute); line-height: 1.8; }
.footer__bar { padding: 24px 0; font-size: 12.5px; color: var(--text-dim); }
.footer__bar-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer__legal a:hover { color: var(--accent); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .prog-grid,
  .steps,
  .coach-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__col:last-child { grid-column: 1 / -1; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid .stat:nth-child(2) { border-right: 0; }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav.is-open .nav__links {
    display: grid;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 88%; max-width: 360px;
    background: var(--bg-2);
    grid-auto-rows: max-content;
    padding: 100px 28px 28px;
    z-index: 30;
    box-shadow: -20px 0 40px rgba(0,0,0,.5);
  }
  .nav.is-open .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav.is-open .nav__links a::after { display: none; }

  .topbar__contact li:nth-child(3) { display: none; }
  .section__head--row { grid-template-columns: 1fr; }
  .section__sub--align { text-align: left; }

  .about { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 16 / 11; max-width: 560px; }

  .price-grid { grid-template-columns: 1fr; }
  .price--featured { transform: none; }
  .quote-grid { grid-template-columns: 1fr; }

  .hero { padding-top: 120px; min-height: 92vh; }
  .line--solid { margin-left: 24px; }
  .line--shift { margin-left: 56px; }
}

@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid .stat { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .prog-grid, .steps, .coach-grid { grid-template-columns: 1fr; }
  .topbar__contact li:nth-child(2) { display: none; }
  .cta__form { flex-direction: column; }
  .cta__form .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Top-nav auth link added 2026-06-21 */
.nav__authlink {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .2s var(--ease);
}
.nav__authlink:hover { color: var(--accent); }
