/* ============================================================
   Athlete Brand Launchpad — powered by DPMX Media Lab
   Design system: dark hero + light editorial body
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --track-black: #191614;
  --ink-deep: #0F0E0D;
  --bone: #F7F5F0;
  --bone-alt: #F1EEE6;
  --cobalt: #0E65F8;
  --cobalt-deep: #0951CC;
  --border-light: #D8D2C6;
  --border-dark: #2F2C28;
  --text-on-dark: #F0EDE7;
  --text-muted-dark: #8A867E;
  --text-muted-light: #5F5B54;
  --ink: #191614;

  /* type scale */
  --fs-hero: clamp(56px, 8vw, 128px);
  --fs-headline: clamp(36px, 5vw, 72px);
  --fs-sub: clamp(20px, 2vw, 28px);
  --fs-body-lg: 20px;
  --fs-body: 17px;
  --fs-eyebrow: 13px;

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* spacing (8px base) */
  --s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 40px;
  --s6: 48px; --s8: 64px; --s10: 80px; --s12: 96px; --s16: 128px; --s18: 144px;

  --maxw: 1200px;
  --maxw-narrow: 820px;
  --maxw-editorial: 720px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { width: 100%; max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 24px; }
.wrap-editorial { width: 100%; max-width: var(--maxw-editorial); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; position: relative; }
@media (min-width: 900px) { .section { padding: 144px 0; } }

.section-dark { background: var(--track-black); color: var(--text-on-dark); }
.section-deep { background: var(--ink-deep); color: var(--text-on-dark); }
.section-light { background: var(--bone); color: var(--ink); }
.section-light-alt { background: var(--bone-alt); color: var(--ink); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted-light);
}
.section-dark .eyebrow, .section-deep .eyebrow { color: var(--text-muted-dark); }
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--cobalt);
  border-radius: 50%;
  flex: none;
}
.eyebrow.no-dot::before { display: none; }
.eyebrow-cobalt { color: var(--cobalt); }
.section-dark .eyebrow-cobalt, .section-deep .eyebrow-cobalt { color: var(--cobalt); }

.headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-headline);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-top: 24px;
}
.headline-md {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.sub {
  font-size: var(--fs-sub);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-muted-light);
  margin-top: 24px;
  max-width: 640px;
}
.section-dark .sub, .section-deep .sub { color: var(--text-muted-dark); }

.body-lg { font-size: var(--fs-body-lg); line-height: 1.65; }
.cobalt { color: var(--cobalt); }
.tnum { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease, transform 250ms ease;
  line-height: 1;
  text-align: center;
}
.btn-primary { background: var(--cobalt); color: var(--bone); }
.btn-primary:hover { background: var(--cobalt-deep); }
.btn-ghost { background: transparent; border-color: var(--cobalt); color: var(--cobalt); }
.btn-ghost:hover { background: var(--cobalt); color: var(--bone); }
.btn-ghost-dark { background: transparent; border-color: rgba(240,237,231,0.4); color: var(--text-on-dark); }
.btn-ghost-dark:hover { border-color: var(--bone); background: rgba(247,245,240,0.06); }
.btn-bone { background: var(--bone); color: var(--ink); }
.btn-bone:hover { background: #fff; }
.btn-lg { padding: 20px 36px; font-size: 17px; }

.btn-group { display: flex; flex-wrap: wrap; gap: 16px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 300ms ease, border-color 300ms ease, backdrop-filter 300ms ease;
  border-bottom: 1px solid transparent;
}
/* transparent over dark hero */
.site-header.on-dark { background: transparent; }
.site-header.on-dark .brand-word, .site-header.on-dark .nav-link { color: var(--text-on-dark); }
.site-header.on-dark .brand-sub { color: var(--text-muted-dark); }
/* solid scrolled */
.site-header.scrolled {
  background: rgba(25,22,20,0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border-dark);
}
.site-header.scrolled .brand-word, .site-header.scrolled .nav-link { color: var(--text-on-dark); }
.site-header.scrolled .brand-sub { color: var(--text-muted-dark); }
/* light-page default (non-dark-hero pages) */
.site-header.on-light { background: rgba(247,245,240,0.92); backdrop-filter: blur(12px); border-bottom-color: var(--border-light); }
.site-header.on-light .brand-word, .site-header.on-light .nav-link { color: var(--ink); }
.site-header.on-light .brand-sub { color: var(--text-muted-light); }
.site-header.on-light.scrolled { background: rgba(247,245,240,0.96); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 30px; height: 24px; flex: none; }
.brand-logo svg { width: 100%; height: 100%; display: block; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.brand-sub .powered-by {
  display: inline-block;
  color: inherit;
  opacity: 0.75;
  line-height: 1;
}
.brand-sub .brand-dpmx-logo {
  height: 22px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .brand-sub .brand-dpmx-logo { height: 18px; }
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 200ms ease, opacity 200ms ease;
  opacity: 0.82;
}
.nav-link:hover { opacity: 1; color: var(--cobalt); }
.nav-cta {
  padding: 10px 20px;
  border-radius: 4px;
  background: var(--cobalt);
  color: var(--bone) !important;
  opacity: 1;
  font-weight: 600;
}
.nav-cta:hover { background: var(--cobalt-deep); color: var(--bone) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  transition: transform 250ms ease, opacity 250ms ease;
}
.site-header.on-dark .nav-toggle, .site-header.scrolled .nav-toggle { color: var(--text-on-dark); }
.site-header.on-light .nav-toggle { color: var(--ink); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: var(--track-black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--border-dark);
    transform: translateY(-120%);
    transition: transform 300ms ease;
    z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-link { color: var(--text-on-dark) !important; opacity: 0.9; padding: 16px 0; border-bottom: 1px solid var(--border-dark); font-size: 18px; }
  .nav-cta { text-align: center; margin-top: 16px; border: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  background: var(--track-black);
  color: var(--text-on-dark);
  padding: 192px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle cinematic radial */
  content: "";
  position: absolute;
  top: -30%; right: -10%;
  width: 70%; height: 120%;
  background: radial-gradient(circle at center, rgba(14,101,248,0.10), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text-muted-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content:""; width:7px; height:7px; background: var(--cobalt); border-radius:50%; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-hero);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-top: 32px;
  max-width: 14ch;
}
.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--text-muted-dark);
  margin-top: 32px;
  max-width: 620px;
}
.hero-cta { margin-top: 48px; }

/* Two-column hero layout */
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.hero-copy { min-width: 0; }
.hero-copy .hero-title {
  max-width: 12ch;
  font-size: clamp(48px, 5.6vw, 88px);
}
@media (max-width: 960px) {
  .hero-copy .hero-title { font-size: clamp(48px, 8vw, 96px); }
}

/* Urgency line under CTA */
.hero-urgency {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted-dark);
}
.hero-urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cobalt);
  box-shadow: 0 0 0 4px rgba(14,101,248,0.18);
  animation: pulse-dot 2.2s ease-in-out infinite;
  flex: none;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(14,101,248,0.14); }
  50% { box-shadow: 0 0 0 7px rgba(14,101,248,0.06); }
}

/* Hero portrait */
.hero-portrait {
  position: relative;
  min-width: 0;
}
.hero-portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 3 / 4;
  background: #0a0a0a;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7);
}
.hero-portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 28%;
  filter: contrast(1.02) saturate(1.02);
}
@media (max-width: 960px) {
  .hero-portrait-frame { aspect-ratio: 4 / 5; }
  .hero-portrait-frame img { object-position: 62% 30%; }
}
.hero-portrait-frame::before {
  /* stronger bottom gradient so badge sits on a legible field */
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.75) 40%, rgba(10,10,10,0.2) 85%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-portrait-frame::after {
  /* left cobalt accent bar */
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 3px;
  background: var(--cobalt);
  z-index: 2;
}
.hero-portrait-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 520px) {
  .hero-portrait-badge { left: 18px; right: 18px; bottom: 16px; }
  .hero-portrait-badge-name { font-size: 19px !important; }
  .hero-portrait-badge-title { font-size: 10.5px !important; letter-spacing: 0.1em !important; }
}
.hero-portrait-badge-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--cobalt);
}
.hero-portrait-badge-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
}
.hero-portrait-badge-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #C8C7C4;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-portrait { max-width: 480px; margin: 0; }
}

/* Full-bleed action image break */
.action-break {
  position: relative;
  width: 100%;
  min-height: 460px;
  max-height: 640px;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: var(--track-black);
  display: flex;
  align-items: flex-end;
}
.action-break-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  filter: contrast(1.05) saturate(0.95);
}
.action-break-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.35) 55%, rgba(10,10,10,0.15) 100%),
    linear-gradient(to right, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.1) 60%);
  pointer-events: none;
}
.action-break-caption {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 56px;
  color: var(--text-on-dark);
}
.action-break-caption .headline {
  max-width: 860px;
  color: var(--text-on-dark);
  font-size: clamp(30px, 4vw, 56px);
}
@media (max-width: 720px) {
  .action-break { min-height: 360px; aspect-ratio: 4 / 3; }
  .action-break-caption { padding: 0 20px 36px; }
  .action-break-caption .headline { font-size: clamp(24px, 6.6vw, 34px); margin-top: 20px; }
}

/* Meet Your Coach - two-column with founder cutout */
.coach-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.coach-copy .pull-quote { margin-top: 24px; }
.coach-copy .coach-body { margin-top: 32px; }
.coach-figure {
  position: relative;
  margin: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 620px;
}
.coach-figure::before {
  /* Cobalt radial glow behind the cutout */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 55% 45%, rgba(14,101,248,0.22) 0%, rgba(14,101,248,0.08) 45%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}
.coach-figure::after {
  /* Subtle floor shadow so cutout doesn't feel like it's floating unmoored */
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 4%;
  height: 40px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}
.coach-figure picture {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.coach-figure img {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
}
.coach-figure {
  flex-direction: column;
}
.coach-caption {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.14);
  width: 60%;
}
.coach-caption-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-on-dark);
  letter-spacing: -0.01em;
}
.coach-caption-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted-dark);
}
@media (max-width: 900px) {
  .coach-grid { grid-template-columns: 1fr; gap: 32px; }
  .coach-figure { order: -1; min-height: 500px; }
  .coach-figure img { max-height: 460px; }
  .coach-caption { width: 70%; }
}
@media (max-width: 520px) {
  .coach-figure { min-height: 420px; }
  .coach-figure img { max-height: 380px; }
  .coach-caption { width: 80%; }
  .coach-caption-name { font-size: 18px; }
}

/* Hero credentials strip */
.hero-cred {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  max-width: 920px;
}
.hero-cred-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted-dark);
  margin-bottom: 24px;
}
.hero-cred-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-cred-stats li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 16px;
  border-left: 2px solid var(--cobalt);
}
.hero-cred-stats .cred-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  font-variant-numeric: tabular-nums;
}
.hero-cred-stats .cred-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted-dark);
  line-height: 1.35;
}
@media (max-width: 840px) {
  .hero-cred { margin-top: 56px; padding-top: 28px; }
  .hero-cred-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 440px) {
  .hero-cred-stats { grid-template-columns: 1fr; gap: 16px; }
}

.scroll-ind {
  margin-top: 72px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted-dark);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-ind .arrow { animation: bob 1.8s ease-in-out infinite; font-size: 18px; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--ink-deep);
  border-top: 1px solid var(--border-dark);
  color: var(--text-on-dark);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.proof-item {
  padding: 40px 24px;
  border-right: 1px solid var(--border-dark);
}
.proof-item:last-child { border-right: none; }
.proof-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.proof-num .cobalt { color: var(--cobalt); }
.proof-label {
  margin-top: 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-dark);
}
@media (max-width: 700px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(1), .proof-item:nth-child(2) { border-bottom: 1px solid var(--border-dark); }
}

/* ---------- Section head ---------- */
.section-head { max-width: 760px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .sub { margin-left: auto; margin-right: auto; }

/* ---------- Logo strip ---------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.logo-cell {
  background: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  min-height: 92px;
}
.logo-mark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A19C92;
  text-align: center;
  transition: color 350ms ease;
  font-variant-numeric: tabular-nums;
}
.logo-cell:hover .logo-mark { color: var(--cobalt); }
@media (max-width: 900px) { .logo-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Stat cards ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.stat-card {
  background: var(--bone-alt);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px 32px;
  transition: transform 250ms ease, border-color 250ms ease;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--cobalt); }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted-light);
  letter-spacing: 0.02em;
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr; } }

/* ---------- Editorial body ---------- */
.editorial { max-width: var(--maxw-editorial); }
.editorial p {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  font-weight: 400;
  color: var(--ink);
}
.section-dark .editorial p, .section-deep .editorial p { color: var(--text-on-dark); }
.editorial p:last-child { margin-bottom: 0; }
.editorial .emph { color: var(--cobalt); font-weight: 500; }

.editorial-tight p { font-size: clamp(18px, 2vw, 21px); line-height: 1.6; margin-bottom: 20px; }

/* ---------- Module / ABOS cards ---------- */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.module-card {
  background: var(--bone-alt);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 40px;
  transition: transform 250ms ease, border-color 250ms ease;
}
.module-card:hover { transform: translateY(-4px); border-color: var(--cobalt); }
.week-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cobalt);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.module-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.module-card p { font-size: 16px; line-height: 1.55; color: var(--text-muted-light); }
@media (max-width: 800px) { .module-grid { grid-template-columns: 1fr; } .module-card { padding: 32px; } }

/* ---------- Deliverable cards ---------- */
.deliv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.deliv-card {
  background: var(--bone-alt);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 32px 28px;
  transition: transform 250ms ease, border-color 250ms ease;
}
.deliv-card:hover { transform: translateY(-4px); border-color: var(--cobalt); }
.deliv-icon { width: 32px; height: 32px; margin-bottom: 20px; color: var(--cobalt); }
.deliv-icon svg { width: 100%; height: 100%; display: block; }
.deliv-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
@media (max-width: 1000px) { .deliv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .deliv-grid { grid-template-columns: 1fr; } }

/* ---------- Built for / not for ---------- */
.list-editorial { margin-top: 48px; max-width: 860px; }
.list-editorial li {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--border-light);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.45;
  align-items: flex-start;
}
.list-editorial li:last-child { border-bottom: 1px solid var(--border-light); }
.list-mark { flex: none; color: var(--cobalt); font-family: var(--font-display); font-weight: 700; }
.list-mark.x { color: var(--text-muted-light); }

/* ---------- Coach section (legacy pull-quote + body styles) ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin-top: 24px;
  max-width: 18ch;
}
.pull-quote .u {
  color: var(--cobalt);
  border-bottom: 3px solid var(--cobalt);
  padding-bottom: 2px;
}
.coach-body { max-width: 640px; margin-top: 40px; }
.coach-body p { font-size: 18px; line-height: 1.6; color: var(--text-on-dark); margin-bottom: 20px; }
.coach-body p.muted { color: var(--text-muted-dark); }
.coach-body p .lead { color: var(--text-on-dark); font-weight: 500; }

/* ---------- Success stories empty state ---------- */
.empty-state { text-align: center; max-width: 720px; margin: 0 auto; }
.empty-state .headline { margin-top: 24px; }
.empty-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.empty-card {
  border: 1px dashed var(--cobalt);
  border-radius: 4px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  font-variant-numeric: tabular-nums;
  opacity: 0.55;
  background: rgba(14,101,248,0.02);
}
@media (max-width: 700px) { .empty-cards { grid-template-columns: 1fr; } .empty-card { min-height: 140px; } }

/* ---------- Timeline (Athlete Journey) ---------- */
.timeline { margin-top: 56px; position: relative; max-width: 860px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 19px; top: 12px; bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--cobalt), rgba(14,101,248,0.2));
}
.tl-stop { position: relative; padding-left: 72px; padding-bottom: 40px; }
.tl-stop:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: 0; top: 2px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bone);
  border: 2px solid var(--cobalt);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cobalt);
  font-variant-numeric: tabular-nums;
}
.tl-stop h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.tl-stop p { margin-top: 8px; font-size: 17px; color: var(--text-muted-light); line-height: 1.5; }

/* ---------- Ecosystem (dark journey) ---------- */
.eco { margin-top: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.eco-stage {
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  background: rgba(247,245,240,0.02);
  padding: 28px 32px;
  position: relative;
  transition: border-color 250ms ease;
}
.eco-stage:hover { border-color: var(--cobalt); }
.eco-stage h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
}
.eco-stage p { margin-top: 6px; font-size: 16px; color: var(--text-muted-dark); }
.eco-connect {
  display: flex; justify-content: center;
  color: var(--cobalt);
  padding: 10px 0;
  font-size: 18px;
}
.eco-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--cobalt);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

/* ---------- Pricing (redesigned) ---------- */
.pricing-row { margin-top: 64px; }
.pricing-row.programs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}
.pricing-row.dfy { margin-top: 24px; }

.pricing-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease, border-color 320ms ease;
}
.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20,22,28,0.16);
  box-shadow: 0 24px 48px -32px rgba(20,22,28,0.28);
}

.pricing-anchor {
  border: 1px solid rgba(14,101,248,0.5);
  box-shadow: 0 30px 60px -32px rgba(14,101,248,0.35), 0 4px 14px -8px rgba(14,101,248,0.18);
  transform: translateY(-6px);
  padding-top: 44px;
}
.pricing-anchor:hover {
  transform: translateY(-9px);
  border-color: rgba(14,101,248,0.7);
  box-shadow: 0 38px 72px -32px rgba(14,101,248,0.4), 0 6px 18px -8px rgba(14,101,248,0.22);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cobalt);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(14,101,248,0.5);
  white-space: nowrap;
}

.pricing-head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.pricing-meta { display: flex; flex-direction: column; gap: 8px; }
.pricing-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pricing-audience {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted-light);
}
.pricing-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pricing-price-lg .pricing-amt { font-size: 60px; }
.pricing-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.pricing-cadence {
  font-size: 12px;
  color: var(--text-muted-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.pricing-strike {
  font-size: 13px;
  color: #9C978C;
  text-decoration: line-through;
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

.pricing-desc {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted-light);
}

.pricing-features {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.pricing-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink);
}
.tick {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(14,101,248,0.1);
  position: relative;
  margin-top: 2px;
}
.tick::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 7px;
  height: 3.5px;
  border-left: 1.5px solid var(--cobalt);
  border-bottom: 1.5px solid var(--cobalt);
  transform: rotate(-45deg);
}

.pricing-note {
  margin-top: 20px;
  padding: 12px 14px;
  background: rgba(14,101,248,0.05);
  border-left: 2px solid var(--cobalt);
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink);
  border-radius: 0 6px 6px 0;
}

.pricing-cta {
  margin-top: 28px;
  justify-content: center;
  width: 100%;
}

/* Done-for-you wide card */
.pricing-wide {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}
.pricing-wide:hover { transform: translateY(-2px); }
.pricing-wide-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
}
.pricing-wide-copy {
  padding: 48px 48px 44px;
  border-right: 1px solid var(--border-light);
}
.pricing-wide-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 8px 0 12px;
}
.pricing-wide-audience {
  font-size: 15px;
  color: var(--text-muted-light);
  margin-bottom: 16px;
}
.pricing-wide-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
}
.pricing-guarantee {
  margin-top: 28px;
  padding: 16px 18px;
  background: rgba(14,101,248,0.05);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.guarantee-mark {
  color: var(--cobalt);
  font-size: 18px;
  line-height: 1;
  margin-top: 1px;
}
.pricing-wide-buy {
  padding: 48px 44px 44px;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.eyebrow-dfy { margin-bottom: 4px; }

@media (max-width: 1100px) {
  .pricing-row.programs { grid-template-columns: 1fr; gap: 20px; }
  .pricing-anchor { transform: none; }
  .pricing-anchor:hover { transform: translateY(-3px); }
  .pricing-wide-inner { grid-template-columns: 1fr; }
  .pricing-wide-copy { border-right: none; border-bottom: 1px solid var(--border-light); padding: 40px 32px 32px; }
  .pricing-wide-buy { padding: 32px 32px 36px; }
}
@media (max-width: 640px) {
  .pricing-card { padding: 32px 24px 28px; }
  .pricing-anchor { padding-top: 36px; }
  .pricing-amt { font-size: 40px; }
  .pricing-price-lg .pricing-amt { font-size: 48px; }
  .pricing-wide-title { font-size: 26px; }
  .pricing-wide-copy, .pricing-wide-buy { padding: 32px 24px; }
}

/* ---------- Authority section ---------- */
.authority { padding-top: 96px; padding-bottom: 96px; }
.authority-grid { max-width: 900px; }
.authority-lead {
  margin-top: 24px;
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-on-dark);
  max-width: 780px;
}
.authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.authority-stats li { display: flex; flex-direction: column; gap: 8px; }
.authority-stats .stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  line-height: 1;
}
.authority-stats .stat-label {
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.5;
  max-width: 220px;
}
.authority-ctas {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-ghost-dark {
  color: var(--text-on-dark);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost-dark:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
}
@media (max-width: 720px) {
  .authority-stats { grid-template-columns: 1fr; gap: 20px; padding: 24px 0; }
  .stat-num { font-size: 32px; }
}

/* ---------- Form ---------- */
.form-wrap { margin-top: 48px; max-width: 720px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-light);
  margin-bottom: 8px;
}
.section-dark .field label, .section-deep .field label { color: var(--text-muted-dark); }
.field .req { color: var(--cobalt); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--bone);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(14,101,248,0.12);
}
.field .prefix-input { position: relative; }
.field .prefix-input .at {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted-light); font-size: 16px;
}
.field .prefix-input input { padding-left: 32px; }
.fine-print { margin-top: 20px; font-size: 13px; color: var(--text-muted-light); line-height: 1.5; }
.section-dark .fine-print { color: var(--text-muted-dark); }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

/* email capture */
.email-capture { display: flex; gap: 12px; margin-top: 40px; max-width: 520px; }
.email-capture input {
  flex: 1;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 16px;
  background: var(--bone);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  color: var(--ink);
}
.email-capture input:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 3px rgba(14,101,248,0.12); }
.email-capture .btn { flex: none; }
@media (max-width: 520px) { .email-capture { flex-direction: column; } .email-capture .btn { width: 100%; justify-content: center; } }

/* ---------- FAQ accordion ---------- */
.faq { margin-top: 48px; max-width: 820px; }
.faq-item { border-top: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.2vw, 24px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.faq-icon { flex: none; color: var(--cobalt); font-size: 26px; font-weight: 400; transition: transform 300ms ease; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease;
}
.faq-a-inner { padding: 0 0 28px; font-size: 17px; line-height: 1.65; color: var(--text-muted-light); max-width: 680px; }

/* ---------- Final CTA band ---------- */
.cta-band {
  background: var(--cobalt);
  color: var(--bone);
  padding: 120px 0;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 0 auto;
  color: var(--bone);
}
.cta-band p { margin: 24px auto 0; max-width: 600px; font-size: 18px; line-height: 1.5; color: rgba(247,245,240,0.85); }
.cta-band .btn { margin-top: 40px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-deep); color: var(--text-on-dark); padding: 80px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand-word { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.02em; text-transform: uppercase; }
.footer-brand p { margin-top: 16px; font-size: 15px; line-height: 1.6; color: var(--text-muted-dark); max-width: 320px; }
.footer-brand .brand { margin-bottom: 8px; }
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted-dark); margin-bottom: 20px; font-weight: 600;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 15px; color: var(--text-on-dark); opacity: 0.82; transition: color 200ms, opacity 200ms; }
.footer-col ul li a:hover { color: var(--cobalt); opacity: 1; }
.footer-bottom {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-size: 13px;
  color: var(--text-muted-dark);
  letter-spacing: 0.02em;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Manifesto ---------- */
.page-hero {
  background: var(--track-black);
  color: var(--text-on-dark);
  padding: 176px 0 96px;
}
.page-hero .headline { max-width: 20ch; }
.page-hero .sub { color: var(--text-muted-dark); }
.manifesto-body { }
.manifesto-section { margin-bottom: 72px; max-width: var(--maxw-editorial); }
.manifesto-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-section .num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--cobalt);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.manifesto-section p { font-size: 19px; line-height: 1.7; margin-bottom: 20px; color: #2A2621; }
.manifesto-section.drop p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 76px;
  float: left;
  line-height: 0.8;
  padding: 8px 14px 0 0;
  color: var(--cobalt);
}
.signature { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-top: 48px; }
.signature span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 15px; color: var(--text-muted-light); margin-top: 4px; }

/* ---------- About ---------- */
.about-body .about-block { margin-bottom: 64px; max-width: var(--maxw-editorial); }
.about-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.1;
}
.about-body p { font-size: 19px; line-height: 1.7; margin-bottom: 20px; color: #2A2621; }
.about-body .ship-list li {
  padding: 20px 0;
  border-top: 1px solid var(--border-light);
  font-size: 18px; line-height: 1.5;
}
.about-body .ship-list li:last-child { border-bottom: 1px solid var(--border-light); }
.about-body .ship-list strong { font-family: var(--font-display); font-weight: 700; color: var(--ink); }

.about-mission { position: relative; overflow: visible; }
.about-portrait {
  float: right;
  width: 42%;
  max-width: 340px;
  margin: 0 0 24px 40px;
  position: relative;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: -8% -8% -4% -8%;
  background: radial-gradient(60% 55% at 55% 45%, rgba(14,101,248,0.18) 0%, rgba(14,101,248,0.06) 45%, transparent 75%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.about-portrait picture { position: relative; z-index: 1; display: block; }
.about-portrait img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.18));
}
.about-action-break { background-position: center 40%; }
.manifesto-action-break { background-position: center 42%; }

.apply-coach-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  padding: 32px 36px;
  background: linear-gradient(135deg, #F7F6F2 0%, #EEECE4 100%);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.apply-coach-card::before {
  content: "";
  position: absolute;
  top: -20%; left: -10%;
  width: 320px; height: 320px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(14,101,248,0.14) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.apply-coach-fig { position: relative; z-index: 1; margin: 0; }
.apply-coach-fig img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.15));
}
.apply-coach-copy { position: relative; z-index: 1; }
.apply-coach-copy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 16px 0 12px;
  color: var(--ink);
}
.apply-coach-copy p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 12px;
}
.apply-coach-meta { font-size: 14px !important; color: var(--ink) !important; }
@media (max-width: 700px) {
  .apply-coach-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .apply-coach-fig { max-width: 180px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .about-portrait { float: none; width: 70%; max-width: 300px; margin: 0 auto 32px; }
}

/* ---------- Resources ---------- */
.res-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 56px; }
.res-card {
  background: var(--bone-alt);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, border-color 250ms ease;
}
.res-card.live:hover { transform: translateY(-4px); border-color: var(--cobalt); }
.res-card.soon { opacity: 0.7; }
.res-status {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  padding: 5px 10px; border-radius: 3px; align-self: flex-start; margin-bottom: 20px;
}
.res-status.live { background: var(--cobalt); color: var(--bone); }
.res-status.soon { background: transparent; border: 1px solid var(--border-light); color: var(--text-muted-light); }
.res-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 12px; }
.res-card p { font-size: 16px; color: var(--text-muted-light); line-height: 1.55; flex-grow: 1; }
.res-card .res-link { margin-top: 24px; color: var(--cobalt); font-weight: 600; font-size: 16px; }
.res-card.soon .res-link { color: var(--text-muted-light); }
.res-mini { margin-top: 48px; max-width: 640px; }
.res-mini h3 { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 16px; letter-spacing: -0.01em; }
.res-mini ul li { padding: 12px 0; border-top: 1px solid var(--border-light); font-size: 17px; color: var(--text-muted-light); }
@media (max-width: 800px) { .res-grid { grid-template-columns: 1fr; } }

/* ---------- Big number strip (success stories) ---------- */
.num-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.num-strip .n-item { background: var(--bone); padding: 32px 16px; text-align: center; }
.num-strip .n-v { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px,2.4vw,32px); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.num-strip .n-l { margin-top: 10px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted-light); }
@media (max-width: 760px) { .num-strip { grid-template-columns: repeat(2,1fr); } .num-strip .n-item:nth-child(5) { grid-column: span 2; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 500ms ease-out, transform 500ms ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .scroll-ind .arrow { animation: none !important; }
}

/* ---------- Utility ---------- */
.mt-s2 { margin-top: 16px; }
.mt-s4 { margin-top: 32px; }
.mt-s6 { margin-top: 48px; }
.divider-line { height: 1px; background: var(--border-light); margin: 64px 0; }
.section-dark .divider-line, .section-deep .divider-line { background: var(--border-dark); }
.text-center { text-align: center; }

/* ---------- Form submission states (async fetch handler) ---------- */
.btn.is-loading {
  cursor: wait;
  opacity: 0.85;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn.is-loading .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spinner-rot 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spinner-rot {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .btn.is-loading .spinner { animation: none; }
}

.form-error {
  background: #FDECEE;
  border-left: 3px solid #A13544;
  color: #5A1620;
  padding: 14px 16px;
  border-radius: 6px;
  margin: 16px 0 20px;
  font-size: 14px;
  line-height: 1.55;
}
.form-error strong { color: #A13544; display: block; margin-bottom: 2px; }
