/* ═══════════════════════════════════════════════════════════
   NGT v16 — styles.css
   Context: Athletic Marketing / Brand Site
   Register: Bold · Confident · Nike-tier editorial
   ═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Palette */
  --black:      #050505;
  --dark:       #0f0f0f;
  --charcoal:   #1c1c1c;
  --border-dk:  #262626;
  --white:      #ffffff;
  --offwhite:   #f4f4f0;
  --muted-bg:   #ebebeb;
  --lime:       #c6ff00;
  --lime-dk:    #a8d900;
  --gray:       #888;
  --muted:      #666;
  --dim:        rgba(255,255,255,0.42);

  /* System */
  --nav-h:      68px;
  --max-w:      1160px;
  --r:          10px;
  --r-sm:       6px;
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--white);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ── Buttons ────────────────────────────────────────────── */

/* Lime — primary hero/event CTA */
.btn-lime {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  min-height: 48px;
  background: var(--lime);
  color: var(--dark);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background 0.18s var(--ease), transform 0.1s;
  white-space: nowrap;
}
.btn-lime:hover  { background: var(--lime-dk); }
.btn-lime:active { transform: scale(0.98); }

/* Dark — primary content CTA */
.btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  min-height: 48px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--r-sm);
  transition: background 0.18s var(--ease), transform 0.1s;
  white-space: nowrap;
}
.btn-dark:hover  { background: var(--charcoal); }
.btn-dark:active { transform: scale(0.98); }
.btn-dark:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* White outline — hero secondary */
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  min-height: 48px;
  background: transparent;
  color: var(--white);
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: var(--r-sm);
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); }

/* Dark outline — modal secondary */
.btn-outline-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  min-height: 48px;
  background: transparent;
  color: var(--dark);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  border: 1.5px solid #d0d0d0;
  border-radius: var(--r-sm);
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn-outline-dark:hover { border-color: var(--dark); }

.btn-full { width: 100%; }

/* ── WAIVER CHECKBOX ──────────────────────────────────────── */
.waiver-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px;
  background: rgba(198,255,0,0.05);
  border: 1px solid rgba(198,255,0,0.2);
  border-radius: var(--r-sm);
}
.waiver-input {
  width: 18px; height: 18px;
  flex-shrink: 0; margin-top: 2px;
  accent-color: var(--lime);
  cursor: pointer;
}
.waiver-label {
  font-size: 0.75rem; line-height: 1.55;
  color: var(--muted);
  cursor: pointer;
}
.waiver-label a {
  color: var(--dark); font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
}
/* Dark-background variant (inside dark modals / forms on dark sections) */
.waiver-row--dark {
  background: rgba(198,255,0,0.06);
  border-color: rgba(198,255,0,0.25);
}
.waiver-row--dark .waiver-label { color: rgba(255,255,255,0.55); }
.waiver-row--dark .waiver-label a { color: var(--lime); }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 15, 15, 0.97);
  border-bottom-color: var(--border-dk);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 0;
}
/* Logo */
.nav-logo { flex-shrink: 0; margin-right: 40px; }
.nav-logo-img { height: 44px; width: auto; display: block; }

/* Links — centered in remaining space */
.nav-links {
  display: flex; align-items: center; gap: 28px;
  flex: 1;
}
.nav-link {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  transition: color 0.18s;
  padding: 8px 0;
}
.nav-link:hover { color: var(--white); }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Join NGT button in nav */
.nav-member-btn {
  padding: 9px 18px;
  min-height: 40px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark);
  background: var(--lime);
  border-radius: var(--r-sm);
  transition: background 0.18s;
  white-space: nowrap;
}
.nav-member-btn:hover { background: var(--lime-dk); }

.nav-signin-btn {
  padding: 10px 20px;
  min-height: 44px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: var(--r-sm);
  transition: border-color 0.18s, background 0.18s;
}
.nav-signin-btn:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.08); }

.nav-profile-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 14px 5px 5px;
  min-height: 44px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 40px;
  transition: border-color 0.18s;
}
.nav-profile-btn:hover { border-color: rgba(255,255,255,0.6); }
.nav-avatar {
  width: 34px; height: 34px;
  background: var(--lime); color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700;
}
.nav-username { font-size: 0.82rem; font-weight: 500; color: var(--white); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  margin-left: 12px;
  border-radius: var(--r-sm);
  transition: background 0.18s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.07); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.22s var(--ease), opacity 0.22s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 68% 55% at 92% 8%, rgba(198,255,0,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 45% 60% at 8% 92%, rgba(198,255,0,0.03) 0%, transparent 55%),
    var(--dark);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
/* Subtle horizontal rule accent */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: transparent;
  pointer-events: none;
}
.hero-inner {
  flex: 1;
  max-width: var(--max-w);
  margin: 0 auto; width: 100%;
  padding: 0 32px;
  padding-top: var(--nav-h);
}
.hero-content {
  padding: 60px 0 44px;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero-eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1.5px; background: var(--lime);
  flex-shrink: 0;
}

.hero-headline {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(80px, 10.5vw, 148px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.hl-white { display: block; color: var(--white); }
.hl-lime  { display: block; color: var(--lime); }

/* Tagline — v15 */
.hero-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 24px;
  line-height: 1;
}

/* Hero outline-lime button — v16 */
.btn-outline-lime {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px;
  min-height: 48px;
  background: transparent;
  color: var(--lime);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(198,255,0,0.45);
  border-radius: var(--r-sm);
  transition: border-color 0.18s, background 0.18s;
  white-space: nowrap;
}
.btn-outline-lime:hover { border-color: var(--lime); background: rgba(198,255,0,0.07); }

/* Hero membership strip — v16 */
.hero-member-strip {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px; margin-bottom: 8px;
  padding: 14px 18px;
  background: rgba(198,255,0,0.07);
  border: 1px solid rgba(198,255,0,0.18);
  border-radius: var(--r-sm);
  flex-wrap: wrap;
}
.hms-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
  white-space: nowrap;
}
.hms-text {
  font-size: 0.85rem; color: rgba(255,255,255,0.55);
  flex: 1;
}
.hms-text strong { color: var(--white); }
.hms-cta {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
  transition: opacity 0.18s;
}
.hms-cta:hover { opacity: 0.75; }

.hero-sub {
  font-size: 1.05rem; line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Hero session strips */
.hero-strips {
  display: flex;
  border-top: 1px solid var(--border-dk);
}
.session-strip {
  flex: 1; display: flex; align-items: center; gap: 20px;
  padding: 20px 32px;
}
.session-strip + .session-strip { border-left: 1px solid var(--border-dk); }
.strip-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.strip-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem; letter-spacing: 0.04em;
  color: var(--white);
}
.strip-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-left: auto;
  white-space: nowrap;
}
.strip-divider { display: none; }

/* ── SECTION SYSTEM ──────────────────────────────────────── */
.section        { padding: 80px 0; }
.section--light { background: var(--offwhite); }
.section--dark  { background: var(--dark); }
.section--white { background: var(--white); }

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Section anchor offsets for fixed nav */
#programs, #private-coaching, #membership, #coach,
#community, #events, #about, #contact { scroll-margin-top: var(--nav-h); }

/* Section header */
.section-hd { margin-bottom: 44px; }

.section-num {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.82rem; letter-spacing: 0.2em;
  color: var(--gray);
  border-bottom: 1px solid currentColor;
  padding-bottom: 12px;
  margin-bottom: 14px;
  min-width: 40px;
}
.section-num--lime { color: rgba(198,255,0,0.45); }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--dark);
}
.section-title--white { color: var(--white); }

.section-desc {
  margin-top: 18px;
  font-size: 1rem; line-height: 1.65;
  color: var(--muted);
  max-width: 500px;
}
.section-desc--dim { color: var(--dim); }

/* Section subtitle — used in Events and similar */
.section-sub {
  margin-top: 10px;
  font-size: 0.95rem; line-height: 1.65;
  color: var(--muted);
  max-width: 520px;
}
.section-sub--dim { color: var(--dim); }

/* ── PROGRAMS ─────────────────────────────────────────────── */
.program-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prog-card {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: var(--r);
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.prog-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.prog-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.prog-badge {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #3a6000;
  background: rgba(198,255,0,0.18);
  padding: 4px 10px; border-radius: 40px;
}
.prog-badge--int { color: #003a60; background: rgba(0,120,255,0.1); }

.prog-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.02em;
  color: var(--dark); line-height: 1;
}
.prog-price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem; font-weight: 500;
  color: var(--muted); letter-spacing: 0;
}

.prog-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dark);
}

.prog-details { flex: 1; }
.prog-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0f0f0;
}
.prog-row:last-child { border-bottom: none; }
.prog-row dt {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  list-style: none;
}
.prog-row dd {
  font-size: 0.9rem; font-weight: 500;
  color: var(--dark);
  list-style: none;
  text-align: right;
}

/* ── COMING SOON PROGRAM CARD ─────────────────────────────── */
.prog-card--soon {
  opacity: 0.7;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.prog-card--soon::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    rgba(0,0,0,0.015) 8px,
    rgba(0,0,0,0.015) 16px
  );
  pointer-events: none;
}
.prog-card--soon:hover {
  transform: none;
  box-shadow: none;
  cursor: default;
}
.prog-badge--adv { color: #6b35d4; background: rgba(120,60,220,0.12); }
.prog-soon-chip {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  background: #f0f0f0;
  border: 1px solid #ddd;
  padding: 4px 10px; border-radius: 40px;
}

/* ── RALLY ROYALE ─────────────────────────────────────────── */
.rally-block {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.rally-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.rally-tag::before {
  content: ''; width: 20px; height: 1.5px; background: var(--lime); flex-shrink: 0;
}

.rally-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 120px);
  line-height: 0.87; letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
}
.rally-hl-lime { color: var(--lime); }

.rally-desc {
  font-size: 1rem; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 420px;
  margin-bottom: 44px;
}

.rally-facts {
  display: flex; gap: 44px;
  margin-bottom: 52px;
}
.rf-val {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; letter-spacing: 0.03em;
  color: var(--white); line-height: 1;
}
.rf-lbl {
  display: block;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
}

/* Animated graphic wrap */
.rally-graphic-wrap {
  flex-shrink: 0;
  position: relative;
  width: 340px; height: 340px;
  display: flex; align-items: center; justify-content: center;
}
.rg-court {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  opacity: 1;
}

/* Spinning emblem badge — overlaid */
.rally-emblem {
  position: relative; z-index: 2;
  flex-shrink: 0;
}
.emblem-ring {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.emblem-ring--outer {
  width: 190px; height: 190px;
  border: 2px solid var(--lime);
  animation: spin-cw 22s linear infinite;
  position: relative;
  background: rgba(15,15,15,0.72);
  backdrop-filter: blur(2px);
}
.emblem-ring--outer::before {
  content: '';
  position: absolute; inset: -10px;
  border: 1px solid rgba(198,255,0,0.18);
  border-radius: 50%;
}
.emblem-ring--inner {
  width: 154px; height: 154px;
  border: 1px solid rgba(198,255,0,0.3);
  animation: spin-cw 22s linear infinite reverse;
}
.emblem-center {
  text-align: center; padding: 14px;
}
.emblem-year {
  display: block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 4px;
}
.emblem-name {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.45rem; letter-spacing: 0.08em;
  color: var(--white); line-height: 1.05;
}
.emblem-sub {
  display: block;
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
@keyframes spin-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── ABOUT ─────────────────────────────────────────────────── */

/* Manifesto banner — full-bleed dark strip at top of About */
.about-manifesto {
  background: var(--dark);
  border-radius: var(--r);
  padding: 52px 56px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.about-manifesto::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--lime);
}
.am-eyebrow {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 20px;
}
.am-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02; letter-spacing: 0.02em;
  color: var(--white);
  max-width: 820px;
}
.am-statement em {
  font-style: normal;
  color: var(--lime);
}

/* Two-col body: copy + stat grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-hl {
  font-size: 1.1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.about-body {
  font-size: 1rem; line-height: 1.78;
  color: var(--muted);
  margin-bottom: 18px;
}
.about-body:last-of-type { margin-bottom: 24px; }

/* Stat grid — 4 squares with lime accent top border */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-block {
  background: var(--offwhite);
  border: 1px solid #e4e4e4;
  border-top: 3px solid var(--lime);
  border-radius: var(--r-sm);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem; letter-spacing: 0.02em;
  color: var(--dark); line-height: 1;
}
.stat-lbl {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-form {
  max-width: 680px;
  display: flex; flex-direction: column; gap: 20px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cf-row:last-child { margin-bottom: 0; }
.cf-field {
  display: flex; flex-direction: column; gap: 6px;
}
.cf-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}
.cf-input {
  padding: 11px 14px;
  background: var(--white);
  border: 1.5px solid #ddd;
  border-radius: var(--r-sm);
  font-size: 0.93rem;
  color: var(--dark);
  transition: border-color 0.18s;
  outline: none;
  min-height: 44px;
}
.cf-input:focus { border-color: var(--dark); }
.cf-input::placeholder { color: #aaa; }
.cf-textarea {
  resize: vertical; min-height: 130px;
}
.cf-success {
  padding: 14px 18px;
  background: rgba(198,255,0,0.15);
  border: 1px solid rgba(120,180,0,0.4);
  border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 500;
  color: #3a6000;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 0 0 36px;
  border-top: 3px solid var(--lime);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* Newsletter strip — v15 */
.footer-newsletter {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-dk);
  flex-wrap: wrap;
}
.footer-nl-copy { flex: 1; min-width: 260px; }
.footer-nl-hd {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-nl-desc {
  font-size: 0.88rem; line-height: 1.55;
  color: rgba(255,255,255,0.38);
  max-width: 360px;
}
.footer-nl-form-wrap { flex-shrink: 0; }
.footer-nl-form {
  display: flex; gap: 10px; align-items: stretch;
}
.footer-nl-input {
  padding: 13px 18px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  width: 260px;
  min-height: 48px;
  transition: border-color 0.18s;
}
.footer-nl-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-nl-input:focus { border-color: rgba(255,255,255,0.45); }
.footer-nl-btn { flex-shrink: 0; }
.footer-nl-success {
  margin-top: 10px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--lime);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  padding: 60px 0;
  border-bottom: 1px solid var(--border-dk);
  margin-bottom: 32px;
}

/* v15: logo 55px */
.footer-logo { height: 55px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-location {
  font-size: 0.82rem; line-height: 1.5;
  color: rgba(255,255,255,0.28);
  max-width: 240px;
  margin-bottom: 0;
}

.footer-nav { display: flex; gap: 72px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col-hd {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}
.footer-lnk {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.18s;
  display: flex; align-items: center;
  line-height: 1.4;
}
.footer-lnk:hover { color: var(--white); }
.footer-lnk-btn { text-align: left; padding: 0; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy, .footer-loc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── TOAST BANNERS ─────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 200;
  background: var(--lime); color: var(--dark);
  padding: 16px 22px;
  border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 16px;
  font-size: 0.9rem; font-weight: 600;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  max-width: 90vw;
}
.toast button {
  font-size: 1.4rem; line-height: 1;
  color: var(--dark); opacity: 0.55;
  min-width: 32px; min-height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.toast button:hover { opacity: 1; }

/* ── MODALS ────────────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
}
.overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: var(--r);
  width: 100%; max-width: 480px;
  max-height: 90vh;
  overflow-y: auto; overflow-x: hidden;
  position: relative;
}
.modal-wide    { max-width: 540px; }
.modal-profile { max-width: 520px; }
.nl-modal      { max-width: 420px; }

/* Fresh animation on every open — scoped to .open so it replays */
.overlay.open .modal {
  animation: modal-enter 0.24s var(--ease-out) both;
}
@keyframes modal-enter {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

/* Close buttons — two variants (absolute and inline) share same look */
.modal-x,
.modal-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; line-height: 1; color: var(--muted);
  border-radius: 50%;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
}
.modal-x {
  position: absolute; top: 16px; right: 16px;
  z-index: 1;
}
.modal-x:hover,
.modal-close:hover { background: var(--offwhite); color: var(--dark); }

/* Private modal — inline header with close on same row as title */
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 28px 0;
}
.modal-header-text {
  flex: 1;
}

.modal-body {
  padding: 28px 32px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.modal-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.03em;
  color: var(--dark); line-height: 1;
}
.modal-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: -8px;
}
.modal-actions {
  display: flex; align-items: center; gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-top: 4px;
}
.modal-rule {
  border: none; border-top: 1px solid #eee;
}
.tc { text-align: center; }

/* Auth tabs */
.auth-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}
.auth-tab {
  flex: 1; padding: 16px;
  min-height: 52px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.auth-tab.active { color: var(--dark); border-bottom-color: var(--dark); }

/* Step bar */
.step-bar {
  height: 3px; background: #eee;
}
.step-fill {
  height: 100%; background: var(--lime);
  border-radius: 0 2px 2px 0;
  transition: width 0.32s var(--ease-out);
}
.step-pills {
  display: flex; padding: 12px 40px;
  border-bottom: 1px solid #eee; gap: 8px;
}
.step-pill {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #bbb; flex: 1;
  transition: color 0.18s;
}
.step-pill.active { color: var(--dark); }

.modal-step { display: none; }
.modal-step.active { display: block; }

/* Session pick cards */
.pick-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.pick-card {
  border: 2px solid #e5e5e5; border-radius: var(--r-sm);
  padding: 20px; cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color 0.18s, background 0.18s;
  min-height: 100px;
}
.pick-card:hover { border-color: #bbb; }
.pick-card.selected { border-color: var(--dark); background: var(--offwhite); }
.pick-badge {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 40px;
  align-self: flex-start;
  /* Beginner default: lime */
  background: rgba(150,200,0,0.14); color: #3a6000;
}
.pick-badge--int {
  background: rgba(0,80,200,0.1); color: #003a80;
}
.pick-name { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.pick-day { font-size: 0.78rem; color: var(--muted); }
.pick-date { font-size: 0.78rem; font-weight: 600; color: var(--dark); }

/* Coming Soon pick card */
.pick-card--soon {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  background: #fafafa;
}
.pick-date--soon {
  font-size: 0.72rem; font-weight: 600;
  color: #999;
  font-style: italic;
}

/* ── WAIVER BLOCK ──────────────────────────────────────────── */
.waiver-block {
  background: #fff9e6;
  border: 1px solid #ffe58a;
  border-left: 4px solid #f0a500;
  border-radius: var(--r-sm);
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.waiver-text strong {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: #7a4f00;
  display: block; margin-bottom: 6px;
}
.waiver-text p {
  font-size: 0.82rem; color: #5a3c00; line-height: 1.55;
  margin: 0;
}
.waiver-details {
  margin-top: 10px;
}
.waiver-read-more {
  font-size: 0.78rem; font-weight: 600;
  color: #7a4f00; cursor: pointer;
  list-style: none;
  display: flex; align-items: center; gap: 6px;
}
.waiver-read-more::-webkit-details-marker { display: none; }
.waiver-read-more:hover { color: #f0a500; }
.waiver-full {
  margin-top: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid #ffe58a;
  border-radius: 6px;
  font-size: 0.75rem; color: #5a3c00; line-height: 1.65;
  max-height: 180px; overflow-y: auto;
}
.waiver-check-label {
  display: flex; align-items: flex-start; gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid #f0c060;
  border-radius: 6px;
  transition: background 0.18s;
}
.waiver-check-label:hover { background: rgba(255,255,255,0.9); }
.waiver-checkbox {
  width: 18px; height: 18px;
  accent-color: var(--dark);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.waiver-check-text {
  font-size: 0.8rem; font-weight: 500; color: #5a3c00; line-height: 1.5;
}

/* ── MEMBERSHIP CLARIFY NOTICE ─────────────────────────────── */
.mm-clarify {
  background: rgba(198,255,0,0.08);
  border: 1px solid rgba(198,255,0,0.25);
  border-left: 3px solid var(--lime);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

/* Review table */
.review-table {
  border: 1px solid #e5e5e5; border-radius: var(--r-sm); overflow: hidden;
}
.review-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
}
.review-row:last-child { border-bottom: none; }
.review-row span:first-child {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.review-row span:last-child { color: var(--dark); font-weight: 500; }
.review-row--total { background: var(--offwhite); }
.review-row--total span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.03em;
  color: var(--dark);
}

/* Group cards — 3 cards (solo + 2 + 3) */
.group-row { display: flex; gap: 12px; }
.group-card {
  flex: 1;
  border: 2px solid #e5e5e5; border-radius: var(--r-sm);
  padding: 24px 16px; text-align: center;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
  min-height: 100px;
}
.group-card:hover { border-color: #aaa; }
.group-card.selected { border-color: var(--dark); background: var(--offwhite); }
.gc-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--dark); line-height: 1;
}
.gc-lbl {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin: 6px 0;
}
.gc-price { display: block; font-size: 0.92rem; font-weight: 700; color: var(--dark); }

/* Player blocks */
.player-block {
  border: 1px solid #eee; border-radius: var(--r-sm);
  padding: 16px 18px 16px; margin-top: 4px;
}
.pb-head {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}

/* Field groups (inside modals) */
.field-group { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
}

/* Shirt rows */
.shirt-row {
  border: 1px solid #eee; border-radius: var(--r-sm);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.shirt-player-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.tog-wrap {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  min-height: 44px;
}
.shirt-toggle { position: absolute; opacity: 0; width: 0; height: 0; }
.tog-ui {
  width: 46px; height: 26px;
  background: #ddd; border-radius: 13px;
  position: relative; flex-shrink: 0;
  transition: background 0.2s;
}
.tog-ui::after {
  content: ''; position: absolute;
  left: 3px; top: 3px;
  width: 20px; height: 20px;
  background: var(--white); border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.shirt-toggle:checked ~ .tog-ui { background: var(--dark); }
.shirt-toggle:checked ~ .tog-ui::after { transform: translateX(20px); }
.tog-lbl { font-size: 0.88rem; color: var(--dark); }
.sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.sz { cursor: pointer; }
.sz input { position: absolute; opacity: 0; width: 0; height: 0; }
.sz span {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1.5px solid #ddd; border-radius: var(--r-sm);
  font-size: 0.82rem; font-weight: 600; color: var(--dark);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.sz input:checked + span {
  border-color: var(--dark); background: var(--dark); color: var(--white);
}
.shirt-total {
  font-size: 0.85rem; font-weight: 700;
  color: var(--dark); text-align: right; padding-top: 4px;
}

/* Summary */
.summary-players { display: flex; flex-direction: column; gap: 0; }
.summary-player-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
}
.summary-player-item span { font-size: 0.82rem; font-weight: 400; color: var(--muted); }
.summary-team-row {
  font-size: 0.85rem; color: var(--muted); padding: 10px 0;
}

/* Error */
.error-msg,
.form-error {
  padding: 12px 16px;
  background: #fff2f2; border: 1px solid #ffd0d0;
  border-radius: var(--r-sm);
  font-size: 0.85rem; color: #c0392b;
}

.modal-footer-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding-top: 4px;
}

/* ── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════════
   v14.1 ADDITIONS
   ═══════════════════════════════════════════════════════════ */

/* ── Hero trust bar ──────────────────────────────────────── */
.hero-trust {
  display: flex; align-items: center; gap: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dk);
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; letter-spacing: 0.04em;
  color: var(--white); line-height: 1;
}
.trust-lbl {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.trust-divider {
  width: 1px; height: 32px;
  background: var(--border-dk);
  margin: 0 28px;
}

/* ── What's included strip ───────────────────────────────── */
.included-strip {
  display: flex; flex-wrap: wrap; gap: 0;
  margin-top: 40px;
  border: 1px solid #e2e2e2;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--white);
}
.included-item {
  flex: 1 1 200px;
  display: flex; align-items: center; gap: 12px;
  padding: 20px 24px;
  font-size: 0.88rem; font-weight: 500; color: var(--dark);
  border-right: 1px solid #e2e2e2;
}
.included-item:last-child { border-right: none; }
.included-icon {
  color: var(--lime-dk);
  font-size: 1rem; font-weight: 700; flex-shrink: 0;
}

/* ── PRIVATE TRAINING BANNER ─────────────────────────────── */
.private-banner {
  margin-top: 24px;
  background: var(--dark);
  border-radius: var(--r);
  border-left: 4px solid var(--lime);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 40px 44px;
  position: relative;
  overflow: hidden;
}
.private-banner::before {
  content: '';
  position: absolute; top: -40px; right: 80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(198,255,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.private-badge {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 12px;
}
.private-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  letter-spacing: 0.02em; line-height: 1.05;
  color: var(--white); margin-bottom: 14px;
}
.private-desc {
  font-size: 0.9rem; line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 420px; margin-bottom: 20px;
}
.private-features {
  display: flex; flex-direction: column; gap: 7px;
}
.private-feat {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.62);
  display: flex; align-items: center; gap: 8px;
}
.pf-icon { color: var(--lime); font-weight: 700; flex-shrink: 0; }

/* Right pricing block */
.private-banner-right {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  flex-shrink: 0; min-width: 220px;
}
.private-pricing {
  display: flex; flex-direction: column;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-sm);
  overflow: hidden;
  width: 100%;
}
.private-price-option {
  display: flex; flex-direction: column; gap: 3px;
  padding: 16px 20px;
}
.private-price-divider {
  height: 1px; background: rgba(255,255,255,0.08);
}
.ppo-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ppo-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.04em;
  color: var(--lime); line-height: 1;
}
.ppo-price small { font-size: 0.9rem; font-family: 'Inter', sans-serif; opacity: 0.7; }
.ppo-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
}
.private-cta { width: 100%; }
.private-confirm-note {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  text-align: center;
}

/* Private format card picker */
.pt-format-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin: 8px 0 20px;
}
.pt-format-card {
  background: var(--white);
  border: 2px solid #e4e4e4;
  border-radius: var(--r);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.pt-format-card:hover { border-color: #bbb; }
.pt-format-card.selected {
  border-color: var(--dark);
  box-shadow: 0 0 0 1px var(--dark);
}
.ptf-badge {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime-dk);
  background: rgba(150,200,0,0.1);
  padding: 3px 9px; border-radius: 40px;
  align-self: flex-start;
}
.ptf-badge--semi { color: #555; background: #f0f0f0; }
.ptf-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; letter-spacing: 0.04em;
  color: var(--dark); line-height: 1; margin-top: 6px;
}
.ptf-price small { font-size: 0.85rem; font-family: 'Inter', sans-serif; color: var(--muted); }
.ptf-name {
  font-size: 0.9rem; font-weight: 700; color: var(--dark);
}
.ptf-desc {
  font-size: 0.8rem; color: var(--muted); line-height: 1.5;
}

/* Review block reuse — private */
.review-block {
  background: var(--offwhite);
  border: 1px solid #e4e4e4;
  border-radius: var(--r-sm);
  overflow: hidden; margin-bottom: 20px;
}
.review-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 18px;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.88rem;
}
.review-row:last-child { border-bottom: none; }
.review-lbl { color: var(--muted); }
.review-val { font-weight: 600; color: var(--dark); text-align: right; max-width: 60%; }
.review-note {
  font-size: 0.8rem; color: var(--muted);
  line-height: 1.55; margin-bottom: 20px;
  padding: 12px 14px;
  background: rgba(198,255,0,0.06);
  border: 1px solid rgba(198,255,0,0.15);
  border-radius: var(--r-sm);
}

/* Stripe pay button */
.btn-stripe {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; min-height: 52px;
  background: var(--dark); color: var(--white);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--r-sm); transition: background 0.18s;
  margin-bottom: 8px;
}
.btn-stripe:hover { background: #222; }
.btn-stripe:disabled { opacity: 0.5; cursor: not-allowed; }
.stripe-fine {
  font-size: 0.72rem; color: var(--muted);
  text-align: center; line-height: 1.5; margin-bottom: 4px;
}
.step-intro {
  font-size: 0.9rem; color: var(--muted);
  margin-bottom: 4px; line-height: 1.5;
}
.modal-badge {
  display: inline-block;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime-dk);
  margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 860px) {
  .private-banner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }
  .private-banner-right { align-items: flex-start; }
  .private-pricing { max-width: 320px; }
  .private-cta { max-width: 320px; }
}
@media (max-width: 480px) {
  .pt-format-grid { grid-template-columns: 1fr; }
  .private-banner { padding: 28px 20px; }
}

/* ── Spots indicator ─────────────────────────────────────── */
.spots-indicator {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 40px;
}
.spots-indicator--open { background: rgba(198,255,0,0.15); color: #3a6000; }
.spots-indicator--few  { background: rgba(255,150,0,0.12); color: #8a4a00; }
.spots-indicator--full { background: rgba(220,50,50,0.1);  color: #8a0000; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tcard {
  background: var(--offwhite);
  border: 1px solid #e4e4e4;
  border-radius: var(--r);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.tcard:hover {
  border-color: #ccc;
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.tcard-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; line-height: 1;
  color: var(--lime-dk);
  margin-bottom: -10px;
}
.tcard-text {
  font-size: 0.95rem; line-height: 1.72;
  color: #3a3a3a;
  font-style: italic;
  flex: 1;
}
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
  letter-spacing: 0.04em;
}
.tcard-name {
  display: block; font-size: 0.88rem; font-weight: 700;
  color: var(--dark); line-height: 1.2;
}
.tcard-meta {
  display: block; font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.02em; margin-top: 3px;
}

/* ── COACHES ──────────────────────────────────────────────── */
.coaches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* Individual coach card */
.coach-card {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.coach-card-top {
  background: var(--dark);
  padding: 40px 36px 32px;
  display: flex; align-items: flex-end; gap: 28px;
  border-bottom: 3px solid var(--lime);
  position: relative;
}
.coach-photo {
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 3px solid var(--lime);
  background: #1e1e1e;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}
.coach-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block;
}
.coach-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; letter-spacing: 0.05em;
  color: var(--lime);
}
.coach-header-info {
  flex: 1;
}
.coach-tag {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 6px;
}
.coach-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 2.8vw, 36px);
  letter-spacing: 0.02em; line-height: 1;
  color: var(--white);
}
.coach-hometown {
  font-size: 0.72rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em; margin-top: 5px;
}

.coach-card-body {
  padding: 28px 32px 32px;
  flex: 1; display: flex; flex-direction: column;
}
.coach-bio {
  font-size: 0.95rem; line-height: 1.76;
  color: var(--muted); margin-bottom: 24px;
  flex: 1;
}
.coach-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.coach-cred {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted);
  background: var(--offwhite);
  border: 1px solid #e4e4e4;
  padding: 5px 13px; border-radius: 40px;
}
.coach-stat-row {
  display: flex; gap: 28px;
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
  margin-top: 20px;
}
.cs-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.03em;
  color: var(--dark); line-height: 1;
}
.cs-lbl {
  display: block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 4px;
}

/* ── LOCATION ────────────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Primary training venue — spans full width */
.loc-card.loc-card--primary {
  grid-column: 1 / -1;
  background: var(--dark) !important;
  border: 1px solid var(--border-dk) !important;
  border-left: 3px solid var(--lime) !important;
  border-radius: var(--r);
  padding: 28px 32px;
}
.loc-primary-badge {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 16px;
}
.loc-primary-body {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.loc-primary-left { flex: 1; min-width: 240px; }
.loc-card.loc-card--primary .loc-name { color: #ffffff !important; }
.loc-card.loc-card--primary .loc-detail { color: rgba(255,255,255,0.55) !important; }
.loc-primary-levels {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
.loc-level {
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
  white-space: nowrap;
}

/* Event venue cards */
.loc-card {
  background: var(--white);
  border: 1px solid #e2e2e2;
  border-radius: var(--r);
  padding: 24px 26px;
}
.loc-card--event {
  position: relative;
  opacity: 0.72;
}
/* Venue with an active upcoming event — full opacity + subtle lime accent */
.loc-card--live {
  opacity: 1;
  border-color: rgba(198,255,0,0.35);
  background: rgba(198,255,0,0.03);
}
.loc-event-badge {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.loc-name {
  display: block;
  font-size: 0.92rem; font-weight: 700;
  color: var(--dark); margin-bottom: 5px;
}
.loc-detail {
  display: block;
  font-size: 0.82rem; color: var(--muted);
  line-height: 1.5; margin-bottom: 8px;
}
.loc-status {
  display: inline-block;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 40px;
}
.loc-status--inactive {
  background: #f0f0f0; color: #999;
}
.loc-status--active {
  background: rgba(198,255,0,0.15); color: #3a6000;
}
/* Keep these for compat */
.loc-note {
  display: block;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lime-dk);
}

/* ── EVENTS NAV HIGHLIGHT ────────────────────────────────── */
.nav-link--event {
  color: var(--lime) !important;
  font-weight: 700;
}
.nav-link--event:hover { opacity: 0.8; }

/* ── EVENTS SECTION ──────────────────────────────────────── */
.event-feature {
  background: var(--dark);
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(198,255,0,0.18);
  margin-top: 8px;
}
.event-feature-badge {
  background: var(--lime);
  color: var(--dark);
  font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 20px;
  display: inline-block;
}
.event-feature-body {
  padding: 32px 36px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.event-feature-left { flex: 1; min-width: 0; }
.event-partner-line {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(198,255,0,0.6);
  margin-bottom: 10px;
}
.event-feature-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.03em; line-height: 1.05;
  color: var(--white);
  margin: 0 0 10px;
}
.event-feature-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.65);
  line-height: 1.6; margin-bottom: 24px;
}

/* Three-day schedule grid */
.event-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.event-day-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
}
.event-day-card--highlight {
  background: rgba(198,255,0,0.08);
  border-color: rgba(198,255,0,0.3);
}
.event-day-label {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 6px;
}
.event-day-card--highlight .event-day-label { color: var(--lime); }
.event-day-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 4px;
}
.event-day-desc {
  font-size: 0.75rem; color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* Metadata row */
.event-meta-row {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
}
.event-meta-item {
  font-size: 0.78rem; color: rgba(255,255,255,0.55);
}
.event-meta-free {
  background: rgba(198,255,0,0.12);
  color: var(--lime);
  border: 1px solid rgba(198,255,0,0.3);
  border-radius: 40px;
  padding: 3px 12px;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* CTA column */
.event-feature-cta {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 12px;
  flex-shrink: 0;
  padding-top: 4px;
}
.event-cta-note {
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
  line-height: 1.5; margin: 0;
}

@media (max-width: 768px) {
  .event-feature-body { flex-direction: column; padding: 24px 20px; gap: 24px; }
  .event-schedule-grid { grid-template-columns: 1fr; }
  .event-feature-title { font-size: 1.8rem; }
  .event-feature-cta { width: 100%; }
  .event-feature-cta .btn-lime { width: 100%; text-align: center; }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex; flex-direction: column;
  max-width: 780px;
}
.faq-item { border-bottom: 1px solid #e5e5e5; }
.faq-item:first-child { border-top: 1px solid #e5e5e5; }
.faq-q {
  list-style: none;
  padding: 22px 0;
  font-size: 1rem; font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transition: color 0.18s;
  user-select: none;
  min-height: 64px;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem; font-weight: 300;
  color: var(--muted); flex-shrink: 0;
  transition: transform 0.22s var(--ease), color 0.18s;
  line-height: 1;
}
.faq-item[open] .faq-q { color: var(--dark); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); color: var(--dark); }
.faq-a {
  padding-bottom: 22px;
  font-size: 0.95rem; line-height: 1.75;
  color: var(--muted);
  max-width: 680px;
}

/* ── CONTACT LAYOUT ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px; align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.cf-footer {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.cf-newsletter {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--muted);
  cursor: pointer;
}
.cf-newsletter input { accent-color: var(--dark); width: 18px; height: 18px; }

.contact-aside { display: flex; flex-direction: column; gap: 28px; padding-top: 8px; }
.contact-info-block { display: flex; flex-direction: column; gap: 6px; }
.cib-label {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.cib-value { font-size: 0.95rem; font-weight: 500; color: var(--dark); }
.contact-social { display: flex; flex-direction: column; gap: 10px; }
.social-links { display: flex; flex-direction: column; gap: 8px; }
.social-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--dark);
  transition: color 0.18s;
  min-height: 44px;
}
.social-link:hover { color: var(--lime-dk); }

/* ── FOOTER SOCIAL ───────────────────────────────────────── */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.fsocial {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.18s, color 0.18s;
}
.fsocial:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── STICKY MOBILE CTA ───────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  /* iOS safe area — sits above home indicator */
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 90;
  background: rgba(15,15,15,0.97);
  border-top: 1px solid var(--border-dk);
  display: none;
  align-items: center; justify-content: space-between; gap: 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: translateY(0);
  transition: transform 0.3s var(--ease);
  /* Prevent overflow-x on body from breaking fixed on iOS */
  -webkit-transform: translateZ(0);
}
.sticky-cta.hidden { transform: translateY(100%); }
.sticky-cta-text { display: flex; flex-direction: column; gap: 2px; }
.sticky-cta-title { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.sticky-cta-sub   { font-size: 0.72rem; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════
   v15 NEW STYLES
   ═══════════════════════════════════════════════════════════ */

/* ── NEWSLETTER POPUP ────────────────────────────────────── */
.nl-overlay { z-index: 160; }
.nl-modal-body { gap: 16px; }
.nl-accent-bar {
  width: 48px; height: 4px;
  background: var(--lime);
  border-radius: 2px;
  margin-bottom: 4px;
}
.nl-skip {
  font-size: 0.82rem; color: var(--muted);
  text-align: center;
  transition: color 0.18s;
  padding: 8px;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: color 0.18s, text-decoration-color 0.18s;
}
.nl-skip:hover { color: var(--dark); text-decoration-color: currentColor; }
.nl-success-msg { margin-top: -4px; }

/* ── PROFILE MODAL DASHBOARD ─────────────────────────────── */
.profile-head {
  display: flex; align-items: center; gap: 20px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid #f0f0f0;
}
.profile-avatar-lg {
  width: 72px; height: 72px;
  background: var(--lime); color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; font-weight: 700;
  flex-shrink: 0;
}
.profile-head-info {
  display: flex; flex-direction: column; gap: 5px;
  min-width: 0;
}
.profile-display-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.03em;
  color: var(--dark); line-height: 1;
}
.profile-email-txt {
  font-size: 0.85rem; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Skill badge */
.skill-badge {
  display: inline-block;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 40px;
  background: rgba(198,255,0,0.18); color: #3a6000;
  align-self: flex-start;
}
.skill-badge--intermediate { background: rgba(0,120,255,0.1); color: #003a60; }
.skill-badge--advanced     { background: rgba(120,0,255,0.1); color: #3a006a; }

/* Profile quick stats */
.profile-stats-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}
.pstat {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  padding: 20px 0;
  align-items: center; text-align: center;
  border-right: 1px solid #f0f0f0;
}
.pstat:last-child { border-right: none; }
.pstat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.03em;
  color: var(--dark); line-height: 1;
}
.pstat-lbl {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* Profile sections */
.profile-section {
  padding: 20px 36px;
  border-bottom: 1px solid #f0f0f0;
}
.profile-section-hd {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* Registration list */
.reg-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f8f8f8;
}
.reg-item:last-child { border-bottom: none; }
.reg-type-dot {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  flex-shrink: 0;
}
.reg-type-dot--training { background: rgba(198,255,0,0.15); color: #3a6000; }
.reg-type-dot--rally    { background: rgba(15,15,15,0.08);  color: var(--dark); }
.reg-info { flex: 1; min-width: 0; }
.reg-name {
  font-size: 0.9rem; font-weight: 600;
  color: var(--dark); line-height: 1.3;
}
.reg-date {
  font-size: 0.78rem; color: var(--muted);
  margin-top: 2px;
}
.reg-empty {
  font-size: 0.9rem; color: var(--muted);
  padding: 8px 0;
}
.reg-link {
  color: var(--dark); font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.reg-link:hover { color: var(--lime-dk); }

/* Skill editor */
.skill-editor {
  display: flex; gap: 8px;
}
.skill-opt {
  flex: 1;
  padding: 10px 8px;
  min-height: 44px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--r-sm);
  transition: border-color 0.18s, background 0.18s, color 0.18s;
}
.skill-opt:hover { border-color: #aaa; color: var(--dark); }
.skill-opt.active {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--white);
}
.skill-hint {
  font-size: 0.78rem; color: var(--lime-dk);
  font-weight: 600;
  margin-top: 8px;
  min-height: 20px;
}

/* Profile footer */
.profile-footer {
  padding: 20px 36px 28px;
}

/* Old profile styles (kept for compat) */
.profile-meta {
  font-size: 0.88rem; color: var(--muted); text-align: center;
}

/* ── V16 ADDITIONS ─────────────────────────────────────────── */

/* Nav member button */
.nav-member-btn {
  padding: 9px 18px; min-height: 40px;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); background: var(--lime);
  border-radius: var(--r-sm); transition: background 0.18s; white-space: nowrap;
}
.nav-member-btn:hover { background: var(--lime-dk); }

/* Outline lime button (hero secondary CTA) */
.btn-outline-lime {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 30px; min-height: 48px; background: transparent;
  color: var(--lime); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1.5px solid rgba(198,255,0,0.45); border-radius: var(--r-sm);
  transition: border-color 0.18s, background 0.18s; white-space: nowrap;
}
.btn-outline-lime:hover { border-color: var(--lime); background: rgba(198,255,0,0.07); }

/* Hero membership strip */
.hero-member-strip {
  display: flex; align-items: center; gap: 14px;
  margin-top: 20px; margin-bottom: 8px; padding: 14px 18px;
  background: rgba(198,255,0,0.07); border: 1px solid rgba(198,255,0,0.18);
  border-radius: var(--r-sm); flex-wrap: wrap;
}
.hms-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); white-space: nowrap; }
.hms-text  { font-size: 0.85rem; color: rgba(255,255,255,0.55); flex: 1; }
.hms-text strong { color: var(--white); }
.hms-cta   { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lime); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* Hero strips — 3 items */
.hero-strips { display: flex; }
.session-strip { flex: 1; }

/* Advanced badge on program cards */
.prog-badge--adv {
  background: rgba(140,80,255,0.18);
  color: #7b40e8;
}

/* Programs: 3 columns at desktop */
.program-grid { grid-template-columns: repeat(3, 1fr); }

/* Training modal: 3-col pick grid */
.pick-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Advanced pick badge — extends base .pick-badge pill */
.pick-badge--adv {
  background: rgba(120,60,220,0.12);
  color: #6b35d4;
}

/* ── Membership Card ─────────────────────────────────────── */
/* ── 3-TIER MEMBERSHIP GRID ───────────────────────────────── */
.tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  align-items: stretch;
}

.tier-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dk);
  border-radius: var(--r);
  padding: 28px 28px 32px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.tier-card:hover {
  border-color: rgba(198,255,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Featured (middle) card */
.tier-card--featured {
  background: rgba(198,255,0,0.06);
  border-color: var(--lime);
  border-width: 2px;
}
.tier-card--featured:hover { border-color: var(--lime); }

/* Premium card */
.tier-card--premium {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

/* Popular badge */
.tier-popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--lime); color: var(--dark);
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 40px;
  white-space: nowrap;
}

.tier-top {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 8px;
}
.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.04em;
  color: var(--white);
}
.tier-price { display: flex; align-items: baseline; gap: 2px; }
.tier-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem; letter-spacing: 0.02em; line-height: 1;
  color: var(--lime);
}
.tier-price-per {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
}

.tier-tagline {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  line-height: 1.5; margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.tier-perks {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 20px;
}
.tier-perks li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.83rem; color: rgba(255,255,255,0.68); line-height: 1.45;
}
.tier-perks li::before {
  content: '✓'; color: var(--lime); font-weight: 700;
  font-size: 0.78rem; flex-shrink: 0; margin-top: 2px;
}

.tier-value {
  font-size: 0.72rem; color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  border-left: 2px solid rgba(198,255,0,0.3);
}
.tier-value strong { color: rgba(198,255,0,0.75); }

.tier-cta { margin-top: auto; }

.tier-footnote {
  text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  margin-top: 28px; line-height: 1.6;
}

/* Mobile: stack to single column */
@media (max-width: 800px) {
  .tier-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-card--featured { border-width: 2px; }
  .tier-popular-badge { top: -12px; }
}

/* ── MEMBERSHIP MODAL: includes callout ─────────────────── */
.mm-modal-sub {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  margin: 4px 0 0; line-height: 1.5;
}
.mm-includes {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(198,255,0,0.10);
  border: 1px solid rgba(100,160,0,0.35);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.82rem; color: #2a4000;
  line-height: 1.5;
  margin-bottom: 4px;
}
.mm-includes-icon {
  color: #4a7a00; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}

/* Tablet: 2 col */
@media (min-width: 600px) and (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr 1fr; }
  .tier-card--premium { grid-column: 1 / -1; max-width: 420px; margin: 0 auto; width: 100%; }
}

/* ── LEGACY membership-card (kept for any residual refs) ── */
.membership-card {
  background: var(--dark);
  border: 1px solid var(--border-dk);
  border-top: 3px solid var(--lime);
  border-radius: var(--r);
  padding: 32px 36px;
  margin-top: 32px;
}

/* Top row: badge + price inline */
.mc-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.mc-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime);
}
.mc-badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  animation: pulse-lime 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-lime {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}

/* Inline price in header */
.mc-price-tag {
  display: flex; align-items: baseline; gap: 3px;
}
.mc-price-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.6rem; letter-spacing: 0.02em;
  color: var(--lime); line-height: 1;
}
.mc-price-per {
  font-size: 0.95rem; font-weight: 700;
  color: rgba(255,255,255,0.4);
}

/* Title */
.mc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem; letter-spacing: 0.04em; line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Perks: 2-col grid, fully visible */
.mc-perks {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin-bottom: 0;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mc-perk,
.mc-perks li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.45;
}
.mc-perk::before,
.mc-perks li::before {
  content: '✓';
  color: var(--lime); font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0; margin-top: 2px;
}

/* CTA row */
.mc-cta-row {
  display: flex; align-items: center; gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.mc-note {
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* ── Membership Modal ────────────────────────────────────── */
/* ── MEMBERSHIP MODAL ──────────────────────────────────────── */
.mm-header {
  background: var(--dark);
  border-left: 4px solid var(--lime);
  border-radius: var(--r) var(--r) 0 0;
  padding: 24px 52px 22px 28px; /* right padding accounts for absolute × */
  position: relative;
}
.mm-header-inner { display: flex; flex-direction: column; gap: 4px; }
.mm-header-badge {
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime);
}
.mm-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.03em; line-height: 1;
  color: var(--white);
}
/* Override .modal-x color on dark background */
.mm-header ~ .modal-x,
.modal-wide .modal-x { color: rgba(255,255,255,0.5); }
.modal-wide .modal-x:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.mm-body {
  padding: 24px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.mm-selectors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Stat strip — horizontal, no cards, just numbers */
.mm-stats {
  display: flex; align-items: center;
  background: var(--offwhite);
  border: 1px solid #e8e8e8;
  border-top: 3px solid var(--lime);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.mm-stat {
  flex: 1; text-align: center;
  padding: 14px 12px;
}
.mm-stat-div {
  width: 1px; height: 40px;
  background: #e4e4e4; flex-shrink: 0;
}
.mm-stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.04em;
  color: var(--dark); line-height: 1;
}
.mm-stat-lbl {
  display: block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-top: 3px;
}

/* Form — 2-col name/email row */
.mm-form { display: flex; flex-direction: column; gap: 12px; }

/* Review block */
.mm-review-block {
  background: var(--offwhite);
  border: 1.5px solid #e0e0e0;
  border-radius: var(--r-sm);
  overflow: hidden;
}
.mm-rrow {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px; border-bottom: 1px solid #ebebeb;
  font-size: 0.87rem; gap: 16px;
}
.mm-rrow:last-child { border-bottom: none; background: #fff; }
.mm-rlbl {
  color: var(--muted); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  flex-shrink: 0;
}
.mm-rval { font-weight: 600; color: var(--dark); text-align: right; }
.mm-rrow--total .mm-rlbl { color: var(--dark); font-size: 0.75rem; }
.mm-rtotal { font-size: 1.2rem; font-weight: 800; color: var(--dark); }

/* CTA button */
.mm-cta {
  min-height: 54px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.mm-fine {
  font-size: 0.72rem; color: var(--muted);
  text-align: center; line-height: 1.6; margin-top: -4px;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { padding: 72px 0 48px; }

  .rally-block { grid-template-columns: 1fr; }
  .rally-graphic-wrap { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-manifesto { padding: 36px 32px; }
  .am-statement { font-size: clamp(28px, 5vw, 46px); }
  .coaches-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-links {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(15,15,15,0.98);
    flex-direction: column; align-items: stretch;
    padding: 8px 0 20px; gap: 0;
    border-bottom: 1px solid var(--border-dk);
  }
  .nav-links.mobile-open { display: flex; }
  .nav-link {
    padding: 16px 24px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-dk);
    min-height: 52px;
  }
  .nav-toggle { display: flex; }
  .nav-username { display: none; }

  /* Logo left — actions + hamburger right */
  .nav-actions {
    flex: 1;
    justify-content: flex-end;
  }
  /* Hide Sign In on mobile — only show Join/Sign Up */
  .nav-signin-btn { display: none; }
  /* Show the Join button compactly */
  .nav-member-btn {
    display: flex !important;
    padding: 8px 14px;
    font-size: 0.7rem;
  }

  .program-grid { grid-template-columns: 1fr; }
  .pick-grid--3 { grid-template-columns: 1fr; }
  .mc-perks { grid-template-columns: 1fr; gap: 10px; }
  .footer-nav { flex-wrap: wrap; gap: 40px; }

  /* Show sticky CTA */
  .sticky-cta { display: flex; }
  /* Add bottom padding so content isn't hidden behind sticky CTA */
  .footer { padding-bottom: 88px; }

  /* Testimonials: stack */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Coaches: stack on mobile */
  .coaches-grid { grid-template-columns: 1fr; }
  .coach-card-top { padding: 32px 24px 24px; gap: 20px; }
  .coach-card-body { padding: 24px 24px 28px; }
  .coach-photo { width: 80px; height: 80px; }
  .coach-initials { font-size: 2rem; }

  /* Location: stack */
  .location-grid { grid-template-columns: 1fr; }
  .loc-primary-body { flex-direction: column; gap: 16px; }
  .loc-primary-levels { flex-direction: column; }

  /* Contact: stack */
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { border-top: 1px solid #eee; padding-top: 28px; }

  /* Included strip — 2×2 compact grid */
  .included-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: unset;
  }
  .included-item {
    padding: 16px 16px;
    border-right: none;
    border-bottom: 1px solid #e2e2e2;
    font-size: 0.82rem;
  }
  .included-item:nth-child(odd)         { border-right: 1px solid #e2e2e2; }
  .included-item:nth-last-child(-n+2)   { border-bottom: none; }
  .included-item:last-child             { border-right: none; }

  /* Footer newsletter: stack */
  .footer-newsletter { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-nl-input { width: 100%; }
  .footer-nl-form { width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section-inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .hero-inner { padding: 0 20px; padding-top: var(--nav-h); }
  .hero-content { padding: 48px 0 36px; max-width: 100%; }
  .hero-strips { flex-direction: column; }
  .session-strip + .session-strip { border-left: none; border-top: 1px solid var(--border-dk); }
  .strip-meta { display: none; }

  .cf-row     { grid-template-columns: 1fr; }
  .pick-grid  { grid-template-columns: 1fr; }
  .step-pills { padding: 12px 22px; }
  .rally-facts { gap: 28px; }

  /* Footer mobile — fully redesigned */
  .footer-inner { padding: 0 20px; }
  .footer-top { gap: 36px; padding: 40px 0; }

  /* Brand block: compact */
  .footer-logo { height: 44px; margin-bottom: 10px; }
  .footer-tagline { font-size: 0.95rem; }
  .footer-location { font-size: 0.78rem; }
  .footer-social { margin-top: 14px; gap: 10px; }
  .fsocial { width: 36px; height: 36px; }

  /* Nav: 2-column grid, tight links */
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    width: 100%;
  }
  .footer-col { gap: 10px; }
  .footer-col-hd { font-size: 0.64rem; margin-bottom: 2px; }
  .footer-lnk {
    font-size: 0.85rem;
    min-height: 26px;
    line-height: 1.3;
  }

  /* Bottom bar */
  .footer-bottom { flex-direction: column; gap: 4px; align-items: flex-start; }
  .footer-copy { font-size: 0.72rem; }

  .tcard { padding: 28px 22px; }
  .coach-stats { gap: 24px; flex-wrap: wrap; }
  .cf-footer { flex-direction: column; align-items: flex-start; }
  .cf-footer .btn-dark { width: 100%; }

  /* Keep nav-member-btn visible on mobile (overridden by 768px rule) */

  /* Membership card: compact */
  .membership-card { padding: 22px 20px; }
  .mc-top { flex-wrap: wrap; gap: 10px; }
  .mc-title { font-size: 1.45rem; }
  .mc-price-num { font-size: 2rem; }
  .mc-perks { grid-template-columns: 1fr; }

  /* Membership modal */
  .mm-header { padding: 20px 48px 18px 20px; }
  .mm-body { padding: 20px 20px 24px; }
  .mm-stat-num { font-size: 1.5rem; }
  .mm-stat { padding: 12px 8px; }
  .cf-row { grid-template-columns: 1fr; }

  /* Profile modal: tighter */
  .profile-head { padding: 24px 22px 20px; gap: 14px; }
  .profile-section { padding: 18px 22px; }
  .profile-footer  { padding: 18px 22px 24px; }
  .profile-avatar-lg { width: 60px; height: 60px; font-size: 1.5rem; }
  .skill-editor { flex-wrap: wrap; }
  .skill-opt { flex: 1 1 calc(50% - 4px); }

  /* Group row: 3 cards on mobile */
  .group-row { gap: 8px; }
  .gc-num { font-size: 2.4rem; }
  .gc-lbl { font-size: 0.6rem; }
  .gc-price { font-size: 0.82rem; }
  .group-card { padding: 18px 10px; }

  /* Bottom-sheet modals on small screens */
  .overlay {
    align-items: flex-end;
    padding: 0;
  }
  /* Newsletter popup stays centered */
  .nl-overlay {
    align-items: center;
    padding: 20px;
  }
  .overlay:not(.nl-overlay) .modal {
    animation: sheet-up 0.32s var(--ease-out) both;
    border-radius: 20px 20px 0 0;
    max-width: 100%;
    max-height: 92vh;
  }
  .modal-body { padding: 24px 20px; }
}

@keyframes sheet-up {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   SITE-WIDE INTERACTIONS & HOVER STATES
   ═══════════════════════════════════════════════════════════ */

/* ── Global cursor & transition baseline ── */
button, a, [onclick], .pick-card, .pt-format-card, .prog-card,
.coach-card, .tcard, .stat-block, .loc-card, .faq-q,
.skill-opt, .fsocial, .nav-link { cursor: pointer; }

/* ── Buttons ── */
.btn-lime {
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.18s;
  position: relative; overflow: hidden;
}
.btn-lime::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-lime:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(198,255,0,0.35); }
.btn-lime:hover::after { transform: translateX(100%); }
.btn-lime:active { transform: translateY(0); box-shadow: none; }

.btn-dark {
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.18s;
}
.btn-dark:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.btn-dark:active { transform: translateY(0); }

.btn-outline-dark {
  transition: transform 0.15s var(--ease), background 0.18s, color 0.18s, border-color 0.18s;
}
.btn-outline-dark:hover { transform: translateY(-1px); }

/* ── Nav links — animated underline ── */
.nav-link {
  position: relative;
  transition: color 0.18s;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.22s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }

/* ── Program cards ── */
.prog-card {
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.prog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* ── Pick cards (session selector) ── */
.pick-card {
  transition: border-color 0.18s, background 0.18s, transform 0.15s var(--ease), box-shadow 0.15s;
}
.pick-card:hover {
  border-color: #aaa;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
}
.pick-card.selected {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* ── Private format cards ── */
.pt-format-card {
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.15s var(--ease);
}
.pt-format-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}
.pt-format-card.selected {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* ── Coach cards ── */
.coach-card {
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0,0,0,0.12);
}

/* ── Testimonial cards ── */
.tcard {
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
}
.tcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.08);
  border-color: #d0d0d0;
}

/* ── About stat blocks ── */
.stat-block {
  transition: transform 0.18s var(--ease), box-shadow 0.18s;
}
.stat-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ── Location cards ── */
.loc-card {
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.loc-card--event:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  opacity: 1;
}

/* ── Membership card (section) ── */
.membership-card {
  transition: box-shadow 0.3s var(--ease);
}
.membership-card:hover {
  box-shadow: 0 0 0 1px var(--lime), 0 12px 40px rgba(198,255,0,0.12);
}

/* ── Social links ── */
.fsocial {
  transition: border-color 0.18s, color 0.18s, transform 0.15s var(--ease);
}
.fsocial:hover {
  transform: scale(1.12);
  border-color: var(--lime);
  color: var(--lime);
}

/* ── Footer links ── */
.footer-lnk {
  position: relative;
  transition: color 0.18s;
}
.footer-lnk::after {
  content: '';
  position: absolute; bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--lime);
  transition: width 0.2s var(--ease);
}
.footer-lnk:hover::after { width: 100%; }

/* ── Inputs & selects — lime focus accent ── */
.cf-input:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(198,255,0,0.18);
  transition: border-color 0.18s, box-shadow 0.18s;
}

/* ── FAQ accordion ── */
.faq-q {
  transition: color 0.18s;
  user-select: none;
}
.faq-q:hover { color: var(--dark); }
.faq-item[open] .faq-q { color: var(--dark); }
.faq-a {
  animation: faq-expand 0.24s var(--ease) both;
}
@keyframes faq-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ── Skill level options ── */
.skill-opt {
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.12s;
}
.skill-opt:hover { transform: scale(1.03); }

/* ── Step pills — active underline ── */
.step-pill {
  transition: color 0.18s;
  position: relative;
}
.step-pill.active::after {
  content: '';
  position: absolute; bottom: -13px; left: 0; right: 0;
  height: 2px; background: var(--lime);
  border-radius: 1px;
}

/* ── Sticky CTA ── */
.sticky-cta {
  transition: transform 0.28s var(--ease), opacity 0.28s;
}
.sticky-cta.hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }

/* ── Toast entrance ── */
.toast {
  animation: toast-in 0.3s var(--ease) both;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Reveal animation improvement ── */
.reveal {
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Membership modal stat strip hover ── */
.mm-stat {
  transition: background 0.18s;
}
.mm-stat:hover { background: rgba(198,255,0,0.06); }

/* ════════════════════════════════════════════════════════════
   NEW OFFERINGS — FULL SITE REFRESH
   Group Training · Private Coaching · Membership · Community
   ════════════════════════════════════════════════════════════ */

/* ── SUBSECTION LABEL ──────────────────────────────────────── */
.subsection-label {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin: 40px 0 16px;
}

/* ── FIRST SERVE BANNER ────────────────────────────────────── */
.first-serve-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--dark);
  border: 1px solid var(--border-dk);
  border-left: 4px solid var(--lime);
  border-radius: var(--r);
  padding: 36px 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.first-serve-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(198,255,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.fsb-badge {
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.fsb-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.03em; line-height: 1.05;
  color: var(--white); margin-bottom: 12px;
}
.fsb-desc {
  font-size: 0.88rem; color: rgba(255,255,255,0.62);
  line-height: 1.6; margin-bottom: 16px; max-width: 520px;
}
.fsb-perks {
  list-style: none;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.fsb-perks li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.65);
}
.fsb-perks li span { color: var(--lime); font-weight: 700; flex-shrink: 0; }

.fsb-right {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  min-width: 180px; text-align: center;
}
.fsb-price-tag { display: flex; align-items: baseline; gap: 4px; }
.fsb-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; letter-spacing: 0.02em; line-height: 1;
  color: var(--lime);
}
.fsb-per { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.4); }
.fsb-value { font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.fsb-cta { white-space: nowrap; width: 100%; }
.fsb-note { font-size: 0.68rem; color: rgba(255,255,255,0.3); }

/* ── MEMBER BRIDGE ─────────────────────────────────────────── */
.member-bridge {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  margin-top: 32px;
  padding: 28px 36px;
  background: var(--dark);
  border: 2px solid rgba(198,255,0,0.35);
  border-radius: var(--r);
}
.mb-label {
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lime); display: block; margin-bottom: 6px;
}
.mb-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.mb-text strong { color: var(--white); font-weight: 700; }
.mb-cta { white-space: nowrap; flex-shrink: 0; min-width: 200px; text-align: center; }

/* ── PRIVATE COACHING SECTION ──────────────────────────────── */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.coaching-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dk);
  border-radius: var(--r);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
/* Anchor CTAs to bottom of every coaching card */
.coaching-card > button,
.coaching-card > .btn-lime,
.coaching-card > .btn-dark { margin-top: auto; }
.coaching-card:hover {
  border-color: rgba(198,255,0,0.3);
  transform: translateY(-3px);
}
.coaching-card--featured {
  grid-column: 1 / -1;
  border-color: var(--lime);
  border-width: 2px;
  background: rgba(198,255,0,0.05);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 48px;
}
.coaching-card--featured button { grid-column: 1 / -1; }

.cc-top { display: flex; flex-direction: column; gap: 10px; }
.cc-badge-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.cc-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem; letter-spacing: 0.04em;
  color: var(--lime);
}
.cc-badge--alt { color: var(--white); }
.cc-badge-sub {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.cc-prices { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 0; }
.cc-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cc-price-row:last-child { border-bottom: none; padding-bottom: 0; }
.cc-price-label { font-size: 0.77rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.cc-price-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem; letter-spacing: 0.02em; line-height: 1;
  color: var(--white);
}
.cc-price-val small { font-family: 'Inter', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.4); font-weight: 400; }
.cc-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.65; flex: 1;
}
.cc-perks {
  list-style: none;
  display: flex; flex-direction: column; gap: 7px;
}
.cc-perks li {
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: flex-start; gap: 8px;
}
.cc-perks li::before { content: '✓'; color: var(--lime); font-weight: 700; flex-shrink: 0; }

.coaching-member-note {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 24px; padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dk);
  border-radius: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.coaching-member-note strong { color: var(--white); }
.cmn-icon { color: var(--lime); flex-shrink: 0; font-size: 1rem; }
.cmn-link {
  background: none; border: none; padding: 0;
  color: var(--lime); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; text-decoration: underline;
}

/* ── PASS BUILDER (Membership) ─────────────────────────────── */
.pass-builder {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  margin-top: 8px;
}
.pass-config { display: flex; flex-direction: column; gap: 28px; }
.pass-config-section {}
.pass-config-label {
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 12px;
}
.pass-optional {
  font-size: 0.62rem; font-weight: 600;
  color: rgba(255,255,255,0.25); text-transform: none; letter-spacing: 0;
}

.pass-level-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pass-level-btn {
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--border-dk);
  border-radius: var(--r-sm);
  padding: 16px 18px;
  text-align: left; cursor: pointer;
  display: flex; flex-direction: column; gap: 4px;
  transition: border-color 0.18s, background 0.18s;
}
.pass-level-btn:hover { border-color: rgba(198,255,0,0.4); }
.pass-level-btn.active { border-color: var(--lime); background: rgba(198,255,0,0.07); }
.plb-name { font-size: 0.9rem; font-weight: 700; color: var(--white); }
.plb-detail { font-size: 0.72rem; color: rgba(255,255,255,0.4); }

.pass-addon-grid { display: flex; flex-direction: column; gap: 8px; }
.pass-addon-btn {
  background: rgba(255,255,255,0.04);
  border: 2px solid var(--border-dk);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  text-align: left; cursor: pointer;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 4px 16px;
  transition: border-color 0.18s, background 0.18s;
}
.pass-addon-btn:hover { border-color: rgba(198,255,0,0.4); }
.pass-addon-btn.active { border-color: var(--lime); background: rgba(198,255,0,0.07); }
.pab-name { font-size: 0.85rem; font-weight: 700; color: var(--white); grid-column: 1; }
.pab-detail { font-size: 0.72rem; color: rgba(255,255,255,0.4); grid-column: 1; }
.pab-price {
  font-size: 0.85rem; font-weight: 700; color: var(--lime);
  grid-column: 2; grid-row: 1 / 3; align-self: center;
  white-space: nowrap;
}

/* Summary card */
.pass-summary {
  width: 280px; flex-shrink: 0;
  position: sticky; top: 80px;
}
.pass-summary-inner {
  background: var(--white);
  border-radius: var(--r);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.ps-badge {
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.ps-total-label {
  font-size: 0.72rem; color: var(--muted); margin-bottom: 2px;
}
.ps-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; letter-spacing: 0.02em; line-height: 1;
  color: var(--dark); margin-bottom: 2px;
  transition: all 0.2s var(--ease);
}
.ps-per { font-size: 0.75rem; color: var(--muted); margin-bottom: 16px; }

.ps-breakdown {
  border-top: 1.5px solid #e8e8e8; border-bottom: 1.5px solid #e8e8e8;
  padding: 14px 0; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.ps-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: #666;
}
.ps-row span:last-child { font-weight: 600; color: var(--dark); }
.ps-row--addon span:last-child { color: var(--dark); }
.ps-row--savings {
  background: #f0fce8; border-radius: 4px; padding: 5px 8px;
  color: #267a00; font-weight: 700; font-size: 0.75rem;
  margin-top: 2px;
}
.ps-row--savings span { color: #267a00 !important; font-weight: 700; }

.ps-includes {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 22px;
}
.ps-include-item {
  font-size: 0.78rem; color: #444;
  display: flex; align-items: flex-start; gap: 7px; line-height: 1.45;
}

.ps-cta { margin-top: auto; }
.ps-fine { font-size: 0.65rem; color: var(--muted); text-align: center; margin-top: 8px; line-height: 1.5; }

/* ── COMMUNITY SECTION ─────────────────────────────────────── */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.community-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dk);
  border-radius: var(--r);
  padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.25s var(--ease);
}
/* Anchor CTAs to bottom in community cards */
.community-card > button,
.community-card > .btn-dark,
.community-card > .btn-lime,
.community-card > .btn-full { margin-top: auto; }
.community-card:hover { border-color: rgba(198,255,0,0.3); }
.community-card--featured {
  border-color: var(--lime);
  border-width: 2px;
}
.comm-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.04em;
  color: var(--lime);
}
.comm-title {
  font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.35;
}
.comm-desc {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.comm-details { display: flex; flex-direction: column; gap: 8px; }
.comm-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
}
.cdr-label { color: rgba(255,255,255,0.4); font-weight: 600; }
.cdr-val { color: var(--white); font-weight: 600; }
.comm-note { font-size: 0.68rem; color: rgba(255,255,255,0.3); line-height: 1.5; }

/* Ace amounts */
.ace-amounts {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ace-amt {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dk);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.85rem; font-weight: 700; color: var(--white);
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}
.ace-amt:hover, .ace-amt.selected { border-color: var(--lime); background: rgba(198,255,0,0.1); color: var(--lime); }
.ace-amt--custom {
  background: transparent; color: rgba(255,255,255,0.4);
  border-style: dashed;
}

/* ── ACE GIFT CARD — amount buttons ────────────────────────── */
.ace-amt-btn {
  background: var(--offwhite);
  border: 2px solid var(--border-dk);
  border-radius: var(--r);
  color: var(--dark);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  padding: 12px 6px;
  cursor: pointer;
  transition: all 0.15s;
  text-align: center;
}
.ace-amt-btn:hover { border-color: var(--dark); }
.ace-amt-btn.selected {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--lime);
}

/* ── PSET / SPK type cards ──────────────────────────────────── */
.pick-card.selected {
  border-color: var(--lime) !important;
  box-shadow: 0 0 0 2px var(--lime);
}

/* ── NET WORK textarea ──────────────────────────────────────── */
textarea.cf-input {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

/* ── RESPONSIVE — new sections ─────────────────────────────── */
@media (max-width: 900px) {
  .first-serve-banner { grid-template-columns: 1fr; gap: 28px; }
  .fsb-perks { grid-template-columns: 1fr; }
  .fsb-right { align-items: flex-start; text-align: left; }
  .coaching-grid { grid-template-columns: 1fr 1fr; }
  .coaching-card--featured { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .pass-builder { grid-template-columns: 1fr; }
  .pass-summary { width: 100%; position: static; }
  .pass-level-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .first-serve-banner { padding: 24px 20px; }
  /* Coaching: single column on phones */
  .coaching-grid { grid-template-columns: 1fr; }
  .coaching-card--featured {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .coaching-card--featured button { grid-column: auto; }
  .coaching-card { padding: 22px 18px; }
  .community-card { padding: 24px 20px; }
  .pass-config-label { font-size: 0.65rem; }
  .member-bridge { flex-direction: column; }
}
