/* Move Into Recovery: studio-grade layout, distinct from re:generation */

:root {
  --nav-bg: #0c1012;
  --nav-bg-scrolled: rgba(10, 14, 16, 0.97);
  --footer-bg: #0c1012;
  --ink: #0f1412;
  --ink-soft: #3d4544;
  --muted: #5c6564;
  --cream: #f4f2ed;
  --cream-dark: #e5e2db;
  --surface: #faf9f7;
  --white: #ffffff;
  --teal: #1a9b8a;
  --teal-dark: #0f6f62;
  --teal-glow: rgba(26, 155, 138, 0.35);
  --amber: #e8a54b;
  --amber-hover: #d4923d;
  --accent-logo: #3dd9c5;
  --athlete: #d94a32;
  --athlete-soft: rgba(217, 74, 50, 0.12);
  --hippie: #5c7a63;
  --hippie-soft: rgba(92, 122, 99, 0.14);
  --academic: #1a2744;
  --academic-soft: rgba(26, 39, 68, 0.1);
  --line: rgba(15, 20, 18, 0.08);
  --overlay-dark: rgba(8, 12, 14, 0.72);
  --overlay-mid: rgba(8, 12, 14, 0.55);
  --font: "Inter", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --header-h: 5rem;
  --max: 40rem;
  --max-wide: 72rem;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px rgba(12, 16, 18, 0.12);
  --shadow-card: 0 8px 32px rgba(12, 16, 18, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 4000;
  padding: 0.75rem 1rem;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  margin-bottom: 0.65rem;
}

h3 {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

p {
  margin: 0 0 1rem;
}

a {
  color: var(--teal-dark);
  text-underline-offset: 3px;
}
.site-footer a,
.hero a:not(.btn),
.photo-band a:not(.btn) {
  color: inherit;
}
.content-rich a {
  color: var(--teal-dark);
}
.content-rich a:hover {
  color: var(--athlete);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  height: var(--header-h);
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s, box-shadow 0.2s;
}
.site-header.is-scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-header__inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.logo-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #e8eeec;
  flex-shrink: 0;
}
.logo-wordmark:hover {
  color: #fff;
}
.logo-wordmark__img {
  display: block;
  width: auto;
  max-height: 70px;
}
.logo-wordmark__svg {
  display: block;
  height: 1.65rem;
  width: auto;
  max-width: min(52vw, 280px);
}
.logo-wordmark__svg text {
  font-family: var(--font), system-ui, sans-serif;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop > a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav-desktop > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-desktop > a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1208 !important;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.nav-cta:hover {
  background: var(--amber-hover);
  color: #1a1208 !important;
  transform: translateY(-1px);
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  position: relative;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.nav-toggle__bar::before {
  top: -6px;
}
.nav-toggle__bar::after {
  top: 6px;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: #141a1d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.5rem 1.25rem;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: var(--shadow);
}
.nav-mobile.is-open {
  display: flex;
}
.nav-mobile a {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
}
.nav-mobile a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.nav-mobile .nav-cta {
  margin-left: 0;
  margin-top: 0.5rem;
  text-align: center;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .nav-desktop {
    display: flex;
  }
}

.container {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .section-pad {
    padding: 5rem 0;
  }
}

.narrative {
  max-width: var(--max);
}
.narrative--wide {
  max-width: 48rem;
}

.text-center {
  text-align: center;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mb-0 {
  margin-bottom: 0 !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--amber);
  color: #1a1208;
  border-color: var(--amber);
}
.btn--primary:hover {
  background: var(--amber-hover);
  border-color: var(--amber-hover);
  color: #1a1208;
}
.btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.btn--teal {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn--teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
}
.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--cream-dark);
}
.btn--outline-dark:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Hero (home) */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 4.5rem;
  color: #fff;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(8, 12, 14, 0.92) 0%,
      rgba(8, 12, 14, 0.45) 45%,
      rgba(8, 12, 14, 0.35) 100%
    ),
    rgba(8, 12, 14, 0.25);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
}
.hero__kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-logo);
  margin-bottom: 0.85rem;
}
.hero h1 {
  font-family: var(--font-display);
  color: #fff;
  font-weight: 700;
  max-width: 14ch;
  margin: 0 0 1.25rem;
  line-height: 1.05;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}
.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 2rem;
}
.hero__sub strong {
  color: #fff;
  font-weight: 600;
}
.hero__sub--lead {
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

/* Page hero (interior) */
.hero.page-hero {
  min-height: 320px;
  padding: 5rem 1.5rem 2.75rem;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .hero.page-hero {
    min-height: 400px;
  }
}
.hero.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
}
.hero.page-hero .hero__sub {
  max-width: 40rem;
}

/* Voice badges (optional labels) */
.voice-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  color: #fff;
}
.voice-badge i {
  font-size: 0.85rem;
  opacity: 0.95;
}
.voice-badge--athlete {
  background: var(--athlete);
  box-shadow: 0 4px 16px var(--athlete-soft);
}
.voice-badge--hippie {
  background: var(--hippie);
  box-shadow: 0 4px 16px var(--hippie-soft);
}
.voice-badge--academic {
  background: var(--academic);
  box-shadow: 0 4px 16px var(--academic-soft);
}

.voice-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.voice-block {
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.voice-block h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.voice-block--tint-athlete {
  background: linear-gradient(135deg, #fff 0%, #fff8f6 100%);
  border-color: rgba(217, 74, 50, 0.15);
}
.voice-block--tint-hippie {
  background: linear-gradient(135deg, #fff 0%, #f4faf5 100%);
  border-color: rgba(92, 122, 99, 0.2);
}
.voice-block--tint-academic {
  background: linear-gradient(135deg, #fff 0%, #f4f6fa 100%);
  border-color: rgba(26, 39, 68, 0.15);
}

/* Split sections */
.split {
  display: grid;
  gap: 0;
  align-items: stretch;
  background: var(--white);
}
@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--reverse .split__visual {
    order: 2;
  }
  .split--reverse .split__content {
    order: 1;
  }
}
.split__visual {
  min-height: 280px;
  position: relative;
}
@media (min-width: 900px) {
  .split__visual {
    min-height: 100%;
    min-height: 420px;
  }
}
.split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__content {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 900px) {
  .split__content {
    padding: 3.5rem 3.5rem;
  }
}
.split__content .narrative {
  max-width: 32rem;
}
.split--cream .split__content {
  background: var(--cream);
}
.split--dark .split__content {
  background: #1a2226;
  color: rgba(255, 255, 255, 0.85);
}
.split--dark .split__content h2 {
  color: #fff;
}
.split--dark .split__content a {
  color: var(--accent-logo);
}

/* Photo band */
.photo-band {
  position: relative;
  padding: 5rem 1.5rem;
  color: #fff;
  text-align: center;
}
.photo-band__media {
  position: absolute;
  inset: 0;
}
.photo-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-band__overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}
.photo-band__inner {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  margin: 0 auto;
}
.photo-band h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.photo-band p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.5rem;
}

/* Section headers */
.section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.75rem;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}

/* Cards */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .card-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .card-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(12, 16, 18, 0.14);
}
.feature-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feature-card:hover .feature-card__img img {
  transform: scale(1.04);
}
.feature-card__body {
  padding: 1.35rem 1.35rem 1.5rem;
}
.feature-card__label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.35rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.98rem;
  margin: 0;
  color: var(--ink-soft);
}

/* Stats strip */
.stat-strip {
  display: grid;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(120deg, #0f1816 0%, #1a2e2a 50%, #0f1816 100%);
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 768px) {
  .stat-strip {
    grid-template-columns: repeat(3, 1fr);
    padding: 2.5rem 2.5rem;
  }
}
.stat-strip__item {
  text-align: center;
  padding: 0.5rem;
}
.stat-strip__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  color: var(--accent-logo);
  line-height: 1;
}
.stat-strip__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.5rem 0 0.35rem;
}
.stat-strip p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}
.timeline__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.35rem;
  padding: 1.5rem 0 1.5rem 1.25rem;
  border-left: 3px solid var(--teal);
  margin-left: 0.75rem;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 1.65rem;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--amber);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}
.timeline__when {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.timeline__content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
}
.timeline__content p {
  margin: 0;
  font-size: 0.98rem;
}

/* Pull quote fullbleed */
.pull-quote-bleed {
  position: relative;
  padding: 5.5rem 1.5rem;
  color: #fff;
}
.pull-quote-bleed__media {
  position: absolute;
  inset: 0;
}
.pull-quote-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pull-quote-bleed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 12, 14, 0.88) 0%,
    rgba(8, 12, 14, 0.65) 100%
  );
}
.pull-quote-bleed__inner {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  margin: 0 auto;
}
.pull-quote-bleed blockquote {
  margin: 0;
  padding: 0;
  border: none;
}
.pull-quote-bleed p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: #fff;
  margin: 0 0 1rem;
}
.pull-quote-bleed .attrib {
  font-family: var(--font);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-logo);
  margin: 0;
}

/* Tint sections */
.bg-cream {
  background: var(--cream);
}
.bg-surface {
  background: var(--surface);
}
.bg-teal-tint {
  background: linear-gradient(180deg, #e8f5f3 0%, #dff0ed 100%);
}
.section-icon-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.section-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: var(--shadow-card);
  font-size: 1.25rem;
}

.logo-showcase {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 2rem auto 0;
}
.logo-showcase__img {
  display: block;
  width: min(500px, 100%);
  height: auto;
}

/* Charts */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.chart-frame {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.chart-frame__head {
  padding: 1.15rem 1.15rem 0.75rem;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.chart-frame__head i {
  color: var(--teal);
  font-size: 1.25rem;
  margin-top: 0.15rem;
}
.chart-frame__head h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
}
.chart-frame__head .sub {
  font-size: 0.8125rem;
  color: var(--muted);
  margin: 0;
}
.chart-frame__body {
  padding: 0.75rem 0.75rem 1.25rem;
}
.chart-container {
  position: relative;
  height: 260px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .chart-container {
    height: 210px;
  }
}

.source-note {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 1.5rem;
  line-height: 1.55;
}

/* Program cards (recovery) */
.program-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Form */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.form-group {
  margin-bottom: 1.15rem;
}
.form label {
  display: block;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}
.form textarea {
  min-height: 8rem;
  resize: vertical;
}
.form-hint {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

.form-status--error {
  background: #fdf2f0;
  border: 1px solid #e8c4bc;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #8b3a2d;
}
.form-field-error[data-fs-error] {
  display: block;
  min-height: 1.1rem;
  margin-top: 0.3rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #8b3a2d;
}
.form-status--error[data-fs-error]:not([data-fs-active]) {
  display: none;
}
.form-status--error[data-fs-error][data-fs-active] {
  display: block;
}
.form-success[data-fs-success]:not([data-fs-active]) {
  display: none;
}
.form-success[data-fs-success][data-fs-active] {
  display: block;
}
.form-success {
  text-align: center;
  padding: 2rem 1rem;
  outline: none;
}
.form-success h3 {
  font-family: var(--font-display);
  margin-bottom: 0.35rem;
}
.form-success p {
  margin: 0;
}
[data-fs-field][aria-invalid="true"] {
  border-color: var(--athlete) !important;
}
button.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Footer */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 1.5rem 2rem;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__grid {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1.1fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.site-footer h3 {
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 1rem;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li {
  margin-bottom: 0.5rem;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-weight: 600;
}
.site-footer a:hover {
  color: var(--accent-logo);
}
.site-footer p {
  margin: 0;
  line-height: 1.55;
}
.site-footer__brand .logo-wordmark {
  color: #fff;
  margin-bottom: 0.75rem;
}
.site-footer__brand .logo-wordmark__svg {
  height: 1.4rem;
}
.site-footer__legal {
  max-width: var(--max-wide);
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.site-footer__legal a:hover {
  color: var(--accent-logo);
}

.site-footer__copyright {
  max-width: var(--max-wide);
  margin: 0.85rem auto 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__copyright a {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}
.site-footer__copyright a:hover {
  color: var(--accent-logo);
}

.cta-bar {
  background: linear-gradient(135deg, #0f1816 0%, #1a2c28 100%);
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: #fff;
}
.cta-bar h2 {
  color: #fff;
  margin-bottom: 0.75rem;
}
.cta-bar p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.faq-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
}
.faq-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.faq-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
