/* ================================
   ECLIPSE BEACH VOLLEYBALL
   ================================ */

:root {
  /* Brand */
  --brand-primary: #FF6699;
  --brand-deep: #4A3D52;
  --brand-rose: #E69BAC;
  --brand-peach: #F4B189;

  /* Surface */
  --bg-page: #FBF4ED;
  --bg-card: #FFFFFF;
  --bg-shell: #F2DDCF;
  --bg-tint: #FFE0EB;

  /* Text */
  --text-primary: #2A2330;
  --text-secondary: #6F5C78;
  --text-muted: #9D8FA8;

  /* Border & states */
  --border-default: #EBDFD3;
  --afterglow-press: #E54B82;

  /* Type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 760px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);
  --section-py: clamp(5rem, 10vw, 8.5rem);

  /* Radii & shadows */
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(74, 61, 82, 0.08);
  --shadow-md: 0 8px 24px rgba(74, 61, 82, 0.10);
  --shadow-lg: 0 24px 60px rgba(74, 61, 82, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- 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);
  background: var(--bg-page);
  color: var(--text-primary);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ----- Layout primitives ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--section-py) 0; position: relative; }
.section--shell { background: var(--bg-shell); }

/* ----- Dark section variant ----- */
.section--dark {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(255, 102, 153, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(74, 61, 82, 0.45) 0%, transparent 70%),
    linear-gradient(180deg, #1a1320 0%, #120c1a 100%);
  color: rgba(255, 255, 255, 0.85);
}
.section--dark .section__heading { color: #fff; }
.section--dark .section__intro { color: rgba(255, 255, 255, 0.72); }
.section--dark .section__eyebrow { color: var(--brand-rose); }

.section--dark .addon-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
}
.section--dark .addon-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-primary);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.30);
}
.section--dark .addon-card__title { color: #fff; }
.section--dark .addon-card__desc { color: rgba(255, 255, 255, 0.65); }
.section--dark .addon-card__price { color: var(--brand-rose); }

.section--dark .faq__item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.section--dark .faq__item[open] {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand-primary);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.30);
}
.section--dark .faq__question { color: #fff; }
.section--dark .faq__question::after { color: var(--brand-rose); }
.section--dark .faq__answer { color: rgba(255, 255, 255, 0.72); }

.section__head {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-peach);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.section__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.section__intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-top: 1.5rem;
  line-height: 1.6;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.875rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform 250ms var(--ease), box-shadow 250ms var(--ease), background-color 200ms, color 200ms;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--brand-primary);
  color: var(--brand-deep);
  box-shadow: 0 6px 20px rgba(255, 102, 153, 0.28);
}
.btn--primary:hover {
  background: var(--afterglow-press);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(229, 75, 130, 0.40);
}
.btn--full { width: 100%; padding: 1.125rem 1.875rem; }
.btn--outline {
  background: transparent;
  color: var(--brand-deep);
  box-shadow: inset 0 0 0 1.5px var(--brand-deep);
}
.btn--outline:hover {
  background: var(--brand-deep);
  color: var(--bg-page);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 61, 82, 0.28);
}
.program-card--elite .btn--outline {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.5);
}
.program-card--elite .btn--outline:hover {
  background: var(--brand-primary);
  color: var(--brand-deep);
  box-shadow: 0 12px 28px rgba(255, 102, 153, 0.32);
}

/* ================================
   HEADER
   ================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: background-color 320ms var(--ease), padding 320ms var(--ease), box-shadow 320ms var(--ease), backdrop-filter 320ms var(--ease);
}
.header__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  text-decoration: none;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  letter-spacing: -0.045em;
  line-height: 0.9;
  display: block;
}
.wordmark--nav {
  font-size: 1.875rem;
  color: #fff;
  transition: color 320ms var(--ease);
}
.wordmark--footer {
  font-size: 3rem;
  color: #fff;
}
.wordmark__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 0.625rem;
}

/* Eclipsed dot above the dotless i in the wordmark */
.wordmark__i {
  position: relative;
  display: inline-block;
}
.wordmark__i::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0.02em;
  width: 0.22em;
  height: 0.22em;
  border-radius: 50%;
  background: currentColor;
  transform: translateX(-50%);
  -webkit-mask-image: radial-gradient(circle 0.115em at 0.20em 0.06em, transparent 99%, #000 100%);
          mask-image: radial-gradient(circle 0.115em at 0.20em 0.06em, transparent 99%, #000 100%);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.header__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  transition: color 200ms;
  position: relative;
}
.header__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms var(--ease);
}
.header__link:hover::after { transform: scaleX(1); }

.header__cta {
  background: var(--brand-primary);
  color: var(--brand-deep);
  padding: 0.6875rem 1.375rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 200ms var(--ease);
  box-shadow: 0 4px 14px rgba(255, 102, 153, 0.32);
}
.header__cta:hover {
  background: var(--afterglow-press);
  color: #fff;
  transform: translateY(-1px);
}
.header__cta::after { display: none; }

/* Scrolled state */
.header.is-scrolled {
  background: rgba(251, 244, 237, 0.92);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--border-default);
}
.header.is-scrolled .wordmark--nav { color: var(--text-primary); }
.header.is-scrolled .header__link { color: var(--text-primary); }

/* Mobile menu */
.header__menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: space-around;
  padding: 6px;
}
.header__menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 200ms, transform 250ms var(--ease), opacity 200ms;
}
.header.is-scrolled .header__menu-toggle span,
.header.is-mobile-open .header__menu-toggle span { background: var(--text-primary); }

.header.is-mobile-open .header__menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header.is-mobile-open .header__menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-mobile-open .header__menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================
   HERO
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 100%, #1F1825 0%, transparent 65%),
    linear-gradient(135deg, #3A2E42 0%, var(--brand-deep) 50%, #2E2535 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 70% 55% at 50% 55%, rgba(15, 10, 20, 0.45) 0%, transparent 75%),
    linear-gradient(180deg, rgba(74, 61, 82, 0.15) 0%, transparent 25%, rgba(20, 15, 25, 0.35) 100%);
  pointer-events: none;
}

/* ================================
   FLOWING GRADIENT FIELD
   ================================ */
.grad {
  position: absolute;
  inset: -25%;
  pointer-events: none;
  will-change: transform;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

/* Base color washes — large, soft, full coverage */
.grad--1 { /* Afterglow dominant */
  background-image: radial-gradient(ellipse 65% 55% at center,
    rgba(255, 102, 153, 1.00) 0%,
    rgba(255, 102, 153, 0.55) 32%,
    rgba(255, 102, 153, 0.0) 75%);
  animation: gradFlowA 26s ease-in-out infinite alternate;
}
.grad--2 { /* Peach — wide ellipse */
  background-image: radial-gradient(ellipse 80% 50% at center,
    rgba(244, 177, 137, 0.85) 0%,
    rgba(244, 177, 137, 0.45) 35%,
    rgba(244, 177, 137, 0.0) 78%);
  animation: gradFlowB 32s ease-in-out infinite alternate;
}
.grad--3 { /* Rose */
  background-image: radial-gradient(ellipse 70% 70% at center,
    rgba(230, 155, 172, 0.85) 0%,
    rgba(230, 155, 172, 0.45) 35%,
    rgba(230, 155, 172, 0.0) 78%);
  animation: gradFlowC 28s ease-in-out infinite alternate;
}
.grad--4 { /* Deep magenta — overlay for richness */
  background-image: radial-gradient(ellipse 55% 60% at center,
    rgba(160, 50, 95, 1.00) 0%,
    rgba(160, 50, 95, 0.55) 30%,
    rgba(160, 50, 95, 0.0) 72%);
  mix-blend-mode: overlay;
  animation: gradFlowD 36s ease-in-out infinite alternate;
}
.grad--5 { /* Twilight purple depth */
  background-image: radial-gradient(ellipse 50% 65% at center,
    rgba(58, 40, 75, 0.85) 0%,
    rgba(58, 40, 75, 0.45) 35%,
    rgba(58, 40, 75, 0.0) 75%);
  animation: gradFlowE 30s ease-in-out infinite alternate;
}

/* Bokeh highlights — small, bright, screen blend = glowing accents */
.grad--6 { /* Bright pink glow */
  inset: -10%;
  background-image: radial-gradient(circle 22% at center,
    rgba(255, 200, 220, 0.95) 0%,
    rgba(255, 130, 175, 0.45) 30%,
    rgba(255, 102, 153, 0.0) 70%);
  mix-blend-mode: screen;
  animation: gradFlowF 18s ease-in-out infinite alternate;
}
.grad--7 { /* Coral / warm accent */
  inset: -10%;
  background-image: radial-gradient(circle 20% at center,
    rgba(255, 175, 130, 0.85) 0%,
    rgba(255, 130, 100, 0.40) 35%,
    rgba(255, 100, 80, 0.0) 70%);
  mix-blend-mode: screen;
  animation: gradFlowG 20s ease-in-out infinite alternate;
}
.grad--8 { /* Magenta accent — overlay for color depth */
  inset: -10%;
  background-image: radial-gradient(circle 26% at center,
    rgba(255, 70, 130, 0.75) 0%,
    rgba(220, 50, 100, 0.35) 35%,
    rgba(180, 30, 80, 0.0) 70%);
  mix-blend-mode: overlay;
  animation: gradFlowH 24s ease-in-out infinite alternate;
}
.grad--9 { /* Cream highlight — adds light warmth */
  inset: -10%;
  background-image: radial-gradient(circle 18% at center,
    rgba(255, 230, 215, 0.65) 0%,
    rgba(255, 210, 195, 0.30) 35%,
    rgba(255, 200, 180, 0.0) 70%);
  mix-blend-mode: screen;
  animation: gradFlowI 16s ease-in-out infinite alternate;
}

/* ================================
   PAGE-LOAD TOTALITY MOMENT
   A brief intro: sun visible, moon slides across, corona flares,
   then the page reveals. Skipped on reduced motion or repeat visit
   (JS removes the element immediately in those cases).
   ================================ */
.totality {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1320;
  pointer-events: none;
  animation: totalityFade 700ms cubic-bezier(0.4, 0, 0.2, 1) 1750ms forwards;
}
html.skip-totality .totality { display: none; }
.totality__stage {
  position: relative;
  width: clamp(120px, 22vmin, 200px);
  aspect-ratio: 1;
}
.totality__sun {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #FFE4C9 0%, #FF6699 55%, #E54B82 100%);
  box-shadow:
    0 0 30px 6px rgba(255, 102, 153, 0.55),
    0 0 80px 20px rgba(255, 102, 153, 0.25);
  animation: totalityCorona 2200ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.totality__moon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #1a1320;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
  animation: totalityMoon 2200ms cubic-bezier(0.45, 0.05, 0.55, 0.95) forwards;
}
@keyframes totalityMoon {
  0%   { transform: translateX(-220%); }
  48%  { transform: translateX(-3%); }
  52%  { transform: translateX(3%); }
  100% { transform: translateX(220%); }
}
@keyframes totalityCorona {
  0%, 30% {
    box-shadow:
      0 0 30px 6px rgba(255, 102, 153, 0.55),
      0 0 80px 20px rgba(255, 102, 153, 0.25);
  }
  50% {
    box-shadow:
      0 0 60px 18px rgba(255, 220, 200, 0.85),
      0 0 140px 40px rgba(255, 130, 175, 0.55),
      0 0 240px 80px rgba(255, 102, 153, 0.30);
  }
  70%, 100% {
    box-shadow:
      0 0 30px 6px rgba(255, 102, 153, 0.55),
      0 0 80px 20px rgba(255, 102, 153, 0.25);
  }
}
@keyframes totalityFade {
  to { opacity: 0; visibility: hidden; }
}

/* ================================
   SCROLL-PROGRESS PHASE INDICATOR
   A small fixed glyph in the corner. As you scroll, the moon slides
   across the sun: top of page = no eclipse, mid = totality, bottom = post.
   ================================ */
.phase-progress {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms ease;
  box-shadow:
    0 0 0 1px rgba(74, 61, 82, 0.15),
    0 6px 18px rgba(74, 61, 82, 0.18);
  background: var(--bg-card);
}
.phase-progress.is-visible { opacity: 1; }
.phase-progress__sun {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #FFD9C0 0%, var(--brand-primary) 55%, var(--afterglow-press) 100%);
}
.phase-progress__moon {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brand-deep);
  /* Drives across the sun via inline transform set in JS. */
  transform: translateX(-110%);
  will-change: transform;
}
@media (max-width: 600px) {
  .phase-progress {
    bottom: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .totality { display: none; }
  .totality__sun, .totality__moon { animation: none; }
}

/* Film grain overlay — adds texture / pattern */
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  background-repeat: repeat;
  opacity: 0.22;
  mix-blend-mode: overlay;
}

/* Big slow base movement */
@keyframes gradFlowA {
  0%   { transform: translate3d(-14%, -10%, 0) scale(1.0); }
  50%  { transform: translate3d(16%,  8%, 0) scale(1.12); }
  100% { transform: translate3d(-8%, 22%, 0) scale(1.05); }
}
@keyframes gradFlowB {
  0%   { transform: translate3d(14%, -18%, 0) scale(1.05); }
  50%  { transform: translate3d(-18%, 12%, 0) scale(1.0); }
  100% { transform: translate3d(20%, -8%, 0) scale(1.15); }
}
@keyframes gradFlowC {
  0%   { transform: translate3d(-18%, 16%, 0) scale(1.0); }
  50%  { transform: translate3d(18%, -12%, 0) scale(1.18); }
  100% { transform: translate3d(-22%, -18%, 0) scale(1.0); }
}
@keyframes gradFlowD {
  0%   { transform: translate3d(20%, 14%, 0) scale(1.10); }
  50%  { transform: translate3d(-16%, -22%, 0) scale(1.0); }
  100% { transform: translate3d(14%, 20%, 0) scale(1.08); }
}
@keyframes gradFlowE {
  0%   { transform: translate3d(0%, 18%, 0) scale(1.0); }
  50%  { transform: translate3d(12%, -14%, 0) scale(1.18); }
  100% { transform: translate3d(-14%, 12%, 0) scale(1.05); }
}

/* Faster, sharper highlight movement — bokeh feel */
@keyframes gradFlowF {
  0%   { transform: translate3d(-30%, -25%, 0) scale(0.85); }
  50%  { transform: translate3d(25%, 20%, 0) scale(1.15); }
  100% { transform: translate3d(-15%, 30%, 0) scale(0.95); }
}
@keyframes gradFlowG {
  0%   { transform: translate3d(28%, -20%, 0) scale(1.0); }
  50%  { transform: translate3d(-25%, 28%, 0) scale(0.85); }
  100% { transform: translate3d(20%, -28%, 0) scale(1.15); }
}
@keyframes gradFlowH {
  0%   { transform: translate3d(-20%, 25%, 0) scale(1.10); }
  50%  { transform: translate3d(28%, -22%, 0) scale(0.90); }
  100% { transform: translate3d(-28%, -15%, 0) scale(1.05); }
}
@keyframes gradFlowI {
  0%   { transform: translate3d(15%, -28%, 0) scale(0.9); }
  50%  { transform: translate3d(-22%, 25%, 0) scale(1.20); }
  100% { transform: translate3d(28%, 18%, 0) scale(1.0); }
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 920px;
  padding: 0 var(--container-padding);
}

.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.75rem;
  color: rgba(255,255,255,0.92);
  opacity: 0;
  animation: fadeUp 900ms var(--ease) 200ms forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(2.625rem, 7vw, 5.75rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgba(74, 61, 82, 0.25);
  opacity: 0;
  animation: fadeUp 1100ms var(--ease) 400ms forwards;
}

.hero__subhead {
  font-size: clamp(1.0625rem, 1.5vw, 1.1875rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 1100ms var(--ease) 600ms forwards;
}

.hero__content .btn {
  opacity: 0;
  animation: fadeUp 1100ms var(--ease) 800ms forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeUp 1000ms var(--ease) 1200ms forwards;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brand-primary);
  animation: scrollDown 2.4s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ================================
   ABOUT
   ================================ */
.about__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.about__heading-col .section__heading,
.about__heading-col .section__eyebrow {
  text-align: left;
}
.about__heading-col .section__eyebrow {
  margin-bottom: 1.25rem;
}
.about__body {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.about__body + .about__body { margin-top: 1.5rem; }

/* ================================
   PROGRAMS
   ================================ */
.programs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.program-card {
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.program-card--beginner {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}
.program-card--elite {
  background: var(--brand-deep);
  color: #fff;
}
.program-card--elite::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-peach));
}

.program-card__header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-default);
}
.program-card--elite .program-card__header {
  border-bottom-color: rgba(255,255,255,0.14);
}
.program-card__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(2.25rem, 4vw, 2.875rem);
  line-height: 1;
  margin-bottom: 0.625rem;
  letter-spacing: -0.025em;
}
.program-card--elite .program-card__label { color: var(--brand-primary); }
.program-card__tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}
.program-card--elite .program-card__tagline { color: rgba(255,255,255,0.78); }

.program-card__details {
  list-style: none;
  margin-bottom: 1.75rem;
  flex: 1;
  counter-reset: detail;
}
.program-card__details li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  color: var(--text-secondary);
  counter-increment: detail;
}
.program-card--elite .program-card__details li { color: rgba(255,255,255,0.85); }
.program-card__details li::before {
  content: counter(detail);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 0.0625rem;
  border-radius: 50%;
  background: var(--brand-peach);
  color: var(--brand-deep);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.program-card--elite .program-card__details li::before {
  background: var(--brand-rose);
  color: var(--brand-deep);
}

.program-card__pricing {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-default);
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.program-card--elite .program-card__pricing {
  border-top-color: rgba(255,255,255,0.14);
}
.program-card__price {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.program-card--elite .program-card__price { color: rgba(255,255,255,0.78); }
.program-card__price span {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.875rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.program-card--elite .program-card__price span { color: #fff; }

.program-card__footnote {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-style: italic;
}
.program-card--elite .program-card__footnote { color: rgba(255,255,255,0.5); }

.program-card__cta {
  align-self: flex-start;
  margin-top: 1.25rem;
  padding: 0.875rem 1.5rem;
}

/* Brief flash on the track field after autofill from an Inquire CTA */
.form__field.is-prefilled select {
  box-shadow: 0 0 0 3px rgba(255, 102, 153, 0.35);
  transition: box-shadow 1200ms var(--ease);
}

/* ================================
   ADD-ONS
   ================================ */
.addons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.addon-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  transition: transform 300ms var(--ease), border-color 300ms var(--ease), box-shadow 300ms var(--ease);
  display: flex;
  flex-direction: column;
}
.addon-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.addon-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.4375rem;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}
.addon-card__price {
  font-size: 0.875rem;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 0.875rem;
  letter-spacing: 0.01em;
}
.addon-card__desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ================================
   COACHES
   ================================ */
.coaches__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: 820px;
  margin: 0 auto;
}
.coach-card {
  text-align: center;
  padding: 2.75rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.coach-card__portrait {
  position: relative;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 25%, var(--brand-rose) 0%, transparent 55%),
    radial-gradient(circle at 75% 75%, var(--brand-peach) 0%, transparent 55%),
    linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-deep) 100%);
  margin: 0 auto 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.4), 0 8px 28px rgba(74, 61, 82, 0.18);
}
.coach-card__initials {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: #fff;
  letter-spacing: -0.02em;
}
.coach-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.04) saturate(0.9) brightness(1.02) sepia(0.06);
}
.coach-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.625rem;
  margin-bottom: 0.625rem;
  letter-spacing: -0.015em;
}
.coach-card__title {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.coach-card__bio {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.65;
  text-align: left;
}
.coach-card__bio p {
  margin-bottom: 1rem;
}
.coach-card__bio p:last-child {
  margin-bottom: 0;
}

/* ================================
   FAQ
   ================================ */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms;
}
.faq__item[open] {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-sm);
}
.faq__question {
  padding: 1.4rem 1.75rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 200ms;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.625rem;
  font-weight: 300;
  line-height: 1;
  color: var(--brand-primary);
  transition: transform 320ms var(--ease);
  flex-shrink: 0;
}
.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
}

/* ================================
   SIGN UP
   ================================ */
.signup {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(255, 224, 235, 0.8) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(244, 177, 137, 0.5) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-tint) 0%, var(--bg-shell) 100%);
}
.signup__head {
  text-align: center;
  margin-bottom: 3rem;
}
.signup__eyebrow { color: var(--afterglow-press); }
.signup__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}
.signup__intro {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.signup__form {
  background: var(--bg-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form__row { margin-bottom: 1.25rem; }
.form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__field { display: flex; flex-direction: column; }
.form__field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form__field input,
.form__field select,
.form__field textarea {
  padding: 0.875rem 1rem;
  background: var(--bg-page);
  border: 1.5px solid var(--border-default);
  border-radius: 12px;
  color: var(--text-primary);
  transition: border-color 200ms, background-color 200ms, box-shadow 200ms;
  font-family: inherit;
}
.form__field textarea { resize: vertical; min-height: 88px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 4px rgba(255, 102, 153, 0.14);
}
.form__field input.is-error,
.form__field select.is-error,
.form__field textarea.is-error {
  border-color: #d04545;
  background: rgba(208, 69, 69, 0.04);
}
.form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236F5C78' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__addons {
  border: 1.5px solid var(--border-default);
  border-radius: 12px;
  padding: 0.5rem 1.125rem 1.125rem;
  background: var(--bg-page);
}
.form__addons legend {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  padding: 0 0.4rem;
}
.form__addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.625rem 1rem;
  margin-top: 0.625rem;
}
.form__check {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text-primary);
  cursor: pointer;
  user-select: none;
  line-height: 1.3;
}
.form__check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1.5px solid var(--border-default);
  border-radius: 5px;
  background: var(--bg-card);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 150ms, background-color 150ms;
}
.form__check input[type="checkbox"]:checked {
  background: var(--brand-peach);
  border-color: var(--brand-peach);
}
.form__check input[type="checkbox"]:checked::after {
  content: '';
  width: 5px;
  height: 9px;
  border: solid var(--brand-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}
.form__check input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(244, 177, 137, 0.35);
}
@media (max-width: 600px) {
  .form__addons-grid { grid-template-columns: 1fr; }
}

.signup__legal {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.signup__error {
  text-align: center;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(229, 75, 130, 0.1);
  border: 1px solid var(--afterglow-press);
  border-radius: var(--radius);
  color: var(--afterglow-press);
  font-size: 0.9375rem;
  font-weight: 500;
}

.signup__success {
  background: var(--bg-card);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.75rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.signup__success h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 2rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.signup__success p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* ================================
   FOOTER
   ================================ */
.footer {
  background: var(--brand-deep);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  align-items: start;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer__location {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__col-title {
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.footer__col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
  transition: color 200ms;
}
.footer__col a:hover { color: var(--brand-primary); }

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* ================================
   SCROLL REVEAL
   ================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 960px) {
  .header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg-page);
    flex-direction: column;
    align-items: stretch;
    padding: 1.75rem var(--container-padding) 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--border-default);
  }
  .header.is-mobile-open .header__nav {
    display: flex;
  }
  .header.is-mobile-open .header__link { color: var(--text-primary); }
  .header.is-mobile-open .header__link::after { display: none; }
  .header.is-mobile-open .header__cta { text-align: center; }
  .header__menu-toggle { display: flex; }

  .about__layout { grid-template-columns: 1fr; gap: 2rem; }
  .programs__grid { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .coaches__grid { grid-template-columns: 1fr; max-width: 480px; }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .form__row--2col { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.625rem; text-align: center; }
  .hero__scroll-indicator { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .grad { display: none; }
  .hero__bg {
    background:
      radial-gradient(ellipse at 25% 30%, rgba(255, 102, 153, 0.70) 0%, transparent 55%),
      radial-gradient(ellipse at 75% 70%, rgba(244, 177, 137, 0.60) 0%, transparent 55%),
      radial-gradient(ellipse at 55% 50%, rgba(230, 155, 172, 0.55) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 25%, rgba(194, 79, 119, 0.50) 0%, transparent 55%),
      var(--brand-deep);
  }
}
