/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ─── VARIABLES ─── */
:root {
  --green: #1c5a2f;
  --green-mid: #22673a;
  --green-light: #2a7d48;
  --green-bright: #5ab870;
  --silver: #9ba2aa;
  --iron: #1e2020;
  --iron-mid: #242727;
  --iron-light: #2c2f2f;
  --iron-darker: #131515;
  --iron-deep: #0d0f0f;
  --brushed: #c4c7ca;
  --white: #ffffff;
  --green-tint: rgba(28, 90, 47, 0.1);
  --green-border: rgba(28, 90, 47, 0.35);
  --iron-border: rgba(255, 255, 255, 0.07);
  --shadow-green:
    0 0 40px rgba(28, 90, 47, 0.3), 0 0 80px rgba(28, 90, 47, 0.1);
  --shadow-btn: 0 4px 20px rgba(28, 90, 47, 0.45), 0 2px 6px rgba(0, 0, 0, 0.5);
  --nav-h: 68px;
}

/* ─── BASE ─── */
body {
  background: var(--iron);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Manrope", sans-serif;
  line-height: 1.05;
}

/* ─── UTILITIES ─── */
.label {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-bright);
  flex-shrink: 0;
}
.label-center {
  justify-content: center;
}
.label-center::before {
  display: none;
}
.section-wrap {
  padding: 4.5rem 5rem;
}
@media (max-width: 1024px) {
  .section-wrap {
    padding: 3.75rem 2.5rem;
  }
}
@media (max-width: 640px) {
  body {
    font-size: 16px;
  }
  .section-wrap {
    padding: 3rem 1.25rem;
  }
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
/* Default section header — overridden per-section below */
.section-header {
  text-align: center;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-header h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green-bright);
  margin: 0.6rem auto 0;
}
.section-header p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.85;
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 {
  transition-delay: 0.08s;
}
.reveal-d2 {
  transition-delay: 0.18s;
}
.reveal-d3 {
  transition-delay: 0.28s;
}
.reveal-d4 {
  transition-delay: 0.38s;
}

/* ─── GRAIN ─── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ─── BUTTONS ─── */
.btn-green {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.95rem 2.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s,
    box-shadow 0.2s;
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
}
.btn-green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-200%);
  transition: transform 0.5s ease;
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow:
    0 6px 28px rgba(28, 90, 47, 0.55),
    0 2px 8px rgba(0, 0, 0, 0.6);
}
.btn-green:hover::after {
  transform: translateX(300%);
}
.btn-green-lg {
  padding: 1.15rem 2.8rem;
  font-size: 0.95rem;
}
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(196, 199, 202, 0.3);
  color: var(--brushed);
  padding: 0.95rem 2.4rem;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}
.btn-dark {
  display: inline-block;
  background: #0a0c0c;
  color: var(--white);
  padding: 1.1rem 2.8rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.07em;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.15s;
  cursor: pointer;
  border: none;
}
.btn-dark:hover {
  background: #060808;
  transform: translateY(-2px);
}
.btn-full {
  width: 100%;
  text-align: center;
  display: block;
}
/* Day pass button — silver/ghost, not green */
.btn-day-pass {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--silver);
  border: 1px solid rgba(155, 162, 170, 0.25);
  padding: 0.28rem 0.65rem;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s;
  white-space: nowrap;
}
.btn-day-pass:hover {
  color: var(--white);
  border-color: rgba(196, 199, 202, 0.4);
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  z-index: 300;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ═══════════════════════════════════
   #site-nav ONLY — scoped to avoid
   affecting footer <nav> element
════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem;
  background: rgba(13, 15, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--iron-border);
  transition:
    background 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
#site-nav.scrolled {
  background: rgba(13, 15, 15, 0.99);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-favicon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}
.nav-favicon-fallback {
  display: none;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-favicon-fallback span {
  color: var(--green-bright);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--white);
}
.nav-cta {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: var(--green);
  color: var(--white);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--green-mid);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width: 1100px) {
  #site-nav {
    padding: 0 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (max-width: 640px) {
  #site-nav {
    padding: 0 1.25rem;
  }
}

/* ─── MOBILE NAV ─── */
#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--iron-deep);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.25rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  visibility: hidden;
}
#mobile-nav.open {
  transform: none;
  visibility: visible;
}
.mobile-nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-nav-link:hover {
  color: var(--green-bright);
}
.mobile-nav-cta-wrap {
  margin-top: 0.75rem;
}
.mobile-nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-decoration: none;
  display: inline-block;
}

/* ═══════════════════════════════════
   HERO — centred stack, full-width container
════════════════════════════════════ */
#hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 60% at 50% 40%,
      rgba(28, 90, 47, 0.18) 0%,
      transparent 70%
    ),
    repeating-linear-gradient(
      90deg,
      rgba(28, 90, 47, 0.032) 0,
      rgba(28, 90, 47, 0.032) 1px,
      transparent 1px,
      transparent 72px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(28, 90, 47, 0.032) 0,
      rgba(28, 90, 47, 0.032) 1px,
      transparent 1px,
      transparent 72px
    );
}
/* Matches .section-inner width + .section-wrap padding */
.hero-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 5rem 2rem;
  text-align: center;
}
/* Text block sits narrower so H1 reads cleanly */
.hero-text {
  max-width: 840px;
  width: 100%;
}
.hero-pre {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-bright);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-pre::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--green-bright);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 4.7vw, 4.7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.85;
  margin-bottom: 0;
  max-width: 680px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
/* VSL — slightly narrower than full container */
.hero-vsl {
  width: 100%;
  max-width: 1020px;
  align-self: center;
  position: relative;
  background: var(--iron-mid);
  border: 1px solid var(--green-border);
  overflow: hidden;
  box-shadow: var(--shadow-green);
}
.hero-vsl::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.hero-vsl-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-vsl iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: none;
}
.hero-vsl.playing iframe {
  display: block;
}
.hero-vsl.playing .vsl-ui {
  display: none;
}
.vsl-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.vsl-play-btn {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition:
    background 0.2s,
    transform 0.15s;
}
.vsl-play-btn:hover {
  background: var(--green-mid);
  transform: scale(1.08);
}
.vsl-play-btn svg {
  fill: var(--white);
  margin-left: 5px;
}
.vsl-label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
}
/* Founding scarcity strip — compact pill under CTAs */
.hero-founding {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1.1rem;
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(196, 199, 202, 0.65);
}
.hero-founding strong {
  color: var(--white);
  font-weight: 600;
}
.hero-founding-dot {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  flex-shrink: 0;
  animation: spot-pulse 2.5s ease-in-out infinite;
}
@media (max-width: 1100px) {
  .hero-inner {
    padding: 3rem 2.5rem;
  }
}
@media (max-width: 640px) {
  .hero-inner {
    padding: 2.5rem 1.25rem;
    gap: 1.5rem;
  }
  .hero-h1 {
    margin-bottom: 0.75rem;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas a {
    text-align: center;
  }
}

/* ─── HERO COUNTDOWN ─── */
.hero-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.countdown-label {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver);
}
.countdown-spots {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-top: 0.5rem;
}
.countdown-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
  padding: 0.6rem 0.75rem 0.5rem;
}
.countdown-unit span:first-child {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.cd-lbl {
  font-family: "Inter", sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-top: 0.3rem;
}
.countdown-sep {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ─── STATS BAR ─── */
#stats {
  background: var(--iron-mid);
  border-top: 1px solid var(--iron-border);
  border-bottom: 1px solid var(--iron-border);
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 2.25rem 1rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--iron-border);
}
.stat-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
}
@media (max-width: 1100px) {
  .stats-inner {
    padding: 0 2.5rem;
  }
}
@media (max-width: 640px) {
  .stats-inner {
    padding: 0 1.25rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 2rem 0.75rem;
  }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after {
    display: none;
  }
}

/* ─── WHAT IS NO-GI ─── */
.what-is-section {
  background: var(--iron-darker);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.what-is-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.what-is-heading {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}
.what-is-heading::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green-bright);
  margin: 0.6rem auto 1.5rem;
}
.what-is-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.9;
}

/* ─── WHY FORGED ─── */
#why {
  background: var(--iron);
}
.why-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.why-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0;
}
.why-head h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green-bright);
  margin: 0.6rem auto 0;
}
.h2-green {
  color: var(--green-bright);
}
.why-method {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--iron-border);
  font-size: 1rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.9;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 640px) {
  .why-method {
    margin-bottom: 2rem;
    line-height: 1.7;
  }
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pillar {
  padding: 2rem 1.75rem;
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.pillar:hover {
  border-color: var(--green-border);
  transform: translateY(-4px);
}
.pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pillar-icon svg {
  stroke: var(--green-bright);
}
.pillar h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.pillar p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
}
@media (max-width: 960px) {
  .pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

/* ─── COACHES ─── */
#coaches {
  background: var(--iron-darker);
}
.coaches-hd {
  text-align: center;
  margin-bottom: 2.75rem;
}
.coaches-hd h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
}
.coaches-hd h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--green-bright);
  margin: 0.6rem auto 0;
}
.coaches-wins-accent {
  color: var(--green-bright);
}
.coaches-hd-sub {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--silver);
  font-style: italic;
}
.coaches-roster {
  border-top: 1px solid var(--iron-border);
}
.coach-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--iron-border);
  transition: background 0.2s;
}
.coach-row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.coach-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--green-border);
  flex-shrink: 0;
  display: block;
}
.coach-name {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.coach-meta {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
}
.coach-bio {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(155, 162, 170, 0.6);
  margin-top: 0.2rem;
  font-style: italic;
  display: none;
}
.coach-record {
  text-align: right;
  flex-shrink: 0;
}
.coach-fun {
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(155, 162, 170, 0.55);
  font-style: italic;
  margin-top: 0.2rem;
}
.coach-wins {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  margin-bottom: 0.35rem;
}
.coach-level {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .coach-row {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .coach-record {
    grid-column: 2;
    margin-top: -0.25rem;
  }
}

/* ─── TESTIMONIALS — auto-scroll carousel ─── */
#testimonials {
  background: var(--iron-mid);
  overflow: hidden;
}
#testimonials .section-header {
  max-width: 100%;
  margin-bottom: 2rem;
}
/* Bleed carousel past section padding to full width */
.testi-carousel {
  margin-left: -5rem;
  margin-right: -5rem;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.testi-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 0 1rem;
  animation: testi-scroll 40s linear infinite;
  will-change: transform;
}
.testi-track:hover {
  animation-play-state: paused;
}
@keyframes testi-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testi-track { animation: none; }
}
.testi-card {
  flex-shrink: 0;
  width: 400px;
  display: flex;
  flex-direction: column;
  background: var(--iron-light);
  border: 1px solid var(--iron-border);
  border-top: 2px solid var(--green-bright);
  padding: 1.75rem 2rem;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
}
.testi-card:hover {
  border-color: var(--green-border);
  border-top-color: var(--green-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}
.testi-stars {
  color: var(--green-bright);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.testi-body {
  font-size: 0.93rem;
  font-weight: 300;
  font-style: italic;
  color: var(--brushed);
  line-height: 1.9;
  margin-bottom: 0;
  padding-bottom: 1rem;
  flex: 1;
}
.testi-footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--iron-border);
}
.testi-headshot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testi-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testi-headshot svg {
  stroke: var(--silver);
  opacity: 0.4;
}
.testi-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
}
.testi-role {
  font-size: 0.73rem;
  font-weight: 300;
  color: var(--silver);
  margin-top: 0.15rem;
}
@media (max-width: 1024px) {
  .testi-carousel {
    margin-left: -2.5rem;
    margin-right: -2.5rem;
  }
}
@media (max-width: 640px) {
  .testi-carousel {
    margin-left: -1.25rem;
    margin-right: -1.25rem;
  }
  .testi-card {
    width: 300px;
  }
}

/* ─── SCHEDULE ─── */
#schedule {
  background: var(--iron);
}
#schedule .section-header {
  margin-bottom: 1.5rem;
}

/* Schedule eligibility note */
.sched-intro {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
  text-align: center;
  margin-bottom: 1.25rem;
}

/* Schedule table grid */
.sched-table {
  display: grid;
  grid-template-columns: 80px repeat(5, 1fr);
  gap: 1px;
  background: var(--iron-border);
  border: 1px solid var(--iron-border);
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.sched-th {
  padding: 0.8rem 0.75rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--iron-light);
}
.sched-time-lbl {
  padding: 1rem 0.75rem;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  background: var(--iron-mid);
  display: flex;
  align-items: center;
}
.sched-cell {
  padding: 0.85rem 0.75rem;
  background: var(--iron-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  transition: background 0.2s;
}
.sched-cell:hover {
  background: rgba(28, 90, 47, 0.07);
}
.sched-cell-fri {
  background: var(--iron-mid);
}
.sched-cell-fri:hover {
  background: rgba(28, 90, 47, 0.07);
}
.sched-cell-name.sched-cell-name--community {
  color: var(--green-bright);
}
.sched-cell-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}
.sched-tag {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid;
  padding: 0.18rem 0.48rem;
  align-self: flex-start;
}
.sched-tag.all-levels {
  color: var(--silver);
  border-color: rgba(196, 199, 202, 0.2);
}
.sched-tag.social {
  color: var(--green-bright);
  border-color: rgba(90, 184, 112, 0.35);
  background: rgba(28, 90, 47, 0.15);
}

/* Schedule legend / key */
.sched-legend {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  margin-top: 0.25rem;
}
.sched-legend-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}
.sched-legend-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.sched-legend-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.55;
}

/* Mobile: horizontal scroll for grid */
@media (max-width: 640px) {
  .sched-table {
    grid-template-columns: 70px repeat(5, minmax(100px, 1fr));
    overflow-x: auto;
    display: grid;
  }
  .sched-legend {
    gap: 1rem;
  }
}

/* ─── PRICING — value stack ─── */
#pricing {
  background: var(--iron-darker);
}
.pricing-options-card {
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
}
.pricing-opt-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0.85rem 1.5rem 0;
}
.pricing-opt-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.6;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--iron-border);
}
.pricing-opt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--iron-border);
}
.pricing-opt-row:last-child {
  border-bottom: none;
}
.pricing-opt-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pricing-opt-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.pricing-opt-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--silver);
}
.pricing-opt-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-opt-unit {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--silver);
}
.pricing-col {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.pricing-alt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
}
.pricing-alt-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pricing-alt-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}
.pricing-alt-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--silver);
}
.pricing-alt-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-alt-unit {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--silver);
}
.guarantee-block {
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  border-left: 3px solid var(--green-bright);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  box-shadow: inset 0 0 40px rgba(28, 90, 47, 0.06);
}
.guarantee-num-wrap {
  text-align: center;
}
.guarantee-num {
  font-family: "Manrope", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-bright);
  line-height: 1;
}
.guarantee-lbl {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.guarantee-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.guarantee-body {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.8;
}
/* Value stack card */
.pricing-card {
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
  position: relative;
}
.pricing-card-best {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--green);
  color: var(--white);
  font-family: "Inter", sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.pricing-card-body {
  padding: 2rem;
}
.pricing-card-lbl {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}
/* Standard price struck through for anchoring */
.pricing-was {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--silver);
  margin-bottom: 0.3rem;
}
.pricing-was s {
  color: rgba(155, 162, 170, 0.6);
}
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 0.35rem;
}
.pricing-currency {
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.pricing-amount {
  font-family: "Manrope", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pricing-period {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--silver);
  margin-left: 0.4rem;
}
/* Savings badge */
.pricing-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-tint);
  border: 1px solid var(--green-border);
  color: var(--green-bright);
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  margin-bottom: 1.25rem;
}
.pricing-savings svg {
  stroke: var(--green-bright);
  flex-shrink: 0;
}
.pricing-spots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--brushed);
}
.pricing-spots-dot {
  width: 8px;
  height: 8px;
  background: var(--green-bright);
  border-radius: 50%;
  flex-shrink: 0;
  animation: spot-pulse 2.5s ease-in-out infinite;
}
@keyframes spot-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.pricing-spots strong {
  color: var(--white);
}
/* Price comparison display — founding vs standard */
.pricing-price-display {
  display: flex;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 0.5rem;
}
.pricing-price-founding {
  flex: 1;
}
.pricing-compare-lbl {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.15rem;
}
.pricing-price-note {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--silver);
  margin-top: 0.2rem;
}
.pricing-price-std-block {
  flex-shrink: 0;
  text-align: right;
  padding-left: 2rem;
  border-left: 1px solid var(--iron-border);
  padding-bottom: 0.4rem;
}
.pricing-price-std-block .pricing-compare-lbl {
  text-align: right;
}
.pricing-price-std-block .pricing-price-note {
  text-align: right;
}
.pricing-price-std-amount {
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(155, 162, 170, 0.4);
  line-height: 1.1;
}
.pricing-price-std-amount s {
  text-decoration-color: rgba(155, 162, 170, 0.5);
}
.pricing-price-std-amount span {
  font-size: 0.9rem;
  font-weight: 300;
}
.pricing-spots-combined {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--brushed);
}
.pricing-spots-combined strong {
  color: var(--white);
}
/* Scarcity bar above founding card */
.pricing-scarcity {
  margin-bottom: 0.75rem;
}
.pricing-scarcity-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--brushed);
  margin-bottom: 0.5rem;
}
.pricing-scarcity-label strong {
  color: var(--white);
}
.pricing-scarcity-track {
  height: 4px;
  background: var(--iron-border);
  border-radius: 2px;
  overflow: hidden;
}
.pricing-scarcity-fill {
  height: 100%;
  width: 36.7%; /* 11 of 30 spots taken */
  background: var(--green-bright);
  border-radius: 2px;
}
/* Card top: name+savings left, price right */
.pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pricing-card-top .pricing-card-lbl {
  margin-bottom: 0;
}
.pricing-card-top-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.pricing-price-right {
  text-align: right;
  flex-shrink: 0;
}
.pricing-price-right .pricing-price-row {
  margin-bottom: 0;
  justify-content: flex-end;
  align-items: baseline;
}
.pricing-price-unit {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--silver);
  margin-left: 0.2rem;
}
/* Savings / standard rate line */
.pricing-std-row {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--silver);
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .pricing-price-display {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .pricing-price-std-block {
    border-left: none;
    border-top: 1px solid var(--iron-border);
    padding-left: 0;
    padding-top: 1rem;
    text-align: left;
  }
  .pricing-price-std-block .pricing-compare-lbl,
  .pricing-price-std-block .pricing-price-note {
    text-align: left;
  }
}
.pricing-checklist {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.pricing-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.55;
}
.pricing-check {
  color: var(--green-bright);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.pricing-extras {
  border-top: 1px solid var(--iron-border);
}
.pricing-trial-nudge {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--silver);
  text-align: center;
  margin-top: 1.75rem;
}
.pricing-trial-nudge a {
  color: var(--green-bright);
  text-decoration: underline;
}
.pricing-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--iron-border);
  gap: 1rem;
}
.pricing-extra-row:last-child {
  border-bottom: none;
}
.pricing-extra-name {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.25rem;
}
.pricing-extra-desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(196, 199, 202, 0.55);
}
.pricing-extra-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}
.pricing-extra-price-wrap {
  text-align: right;
}
.pricing-extra-price {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.pricing-extra-note {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--silver);
}
@media (max-width: 900px) {
  .pricing-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 640px) {
  .feat-detail {
    display: none;
  }
  .guarantee-block {
    padding: 1.1rem 1.25rem;
    gap: 1rem;
  }
  .guarantee-num {
    font-size: 2.2rem;
  }
  .guarantee-lbl {
    font-size: 0.6rem;
  }
  .guarantee-title {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .guarantee-body {
    font-size: 0.8rem;
    line-height: 1.6;
  }
  .pricing-menu-toggle {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    text-align: left;
  }
  .pricing-menu-arrow {
    font-size: 1rem;
    color: var(--green-bright);
    transition: transform 0.2s;
    display: inline-block;
  }
  .pricing-menu-toggle[aria-expanded="true"] .pricing-menu-arrow {
    transform: rotate(45deg);
  }
  .pricing-menu-body {
    display: none;
  }
  .pricing-menu-body.visible {
    display: block;
  }
  .pricing-card-body {
    padding: 1.5rem;
  }
}

/* Other options menu */
.pricing-features-toggle {
  display: none;
}
.pricing-menu {
  border-top: 1px solid var(--iron-border);
  padding-top: 0;
}
.pricing-menu-hd {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(155, 162, 170, 0.5);
  padding: 1rem 2rem 0.75rem;
}
.pricing-menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2rem;
  border-top: 1px solid var(--iron-border);
}
.pricing-menu-left {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.pricing-menu-name {
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brushed);
}
.pricing-menu-desc {
  font-size: 0.73rem;
  font-weight: 300;
  color: rgba(155, 162, 170, 0.5);
}
.pricing-menu-price {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.pricing-menu-unit {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--silver);
  margin-left: 0.15rem;
}
.pricing-menu-note {
  padding: 1rem 2rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(155, 162, 170, 0.55);
  font-style: italic;
  border-top: 1px solid var(--iron-border);
}
.pricing-menu-cta-link {
  color: var(--green-bright);
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.pricing-menu-cta-link:hover {
  color: #7dd494;
}

/* ─── FAQ — header matches table width ─── */
#faq {
  background: var(--iron);
}
#faq .section-header {
  max-width: 740px;
}
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  border-top: 1px solid var(--iron-border);
}
.faq-item {
  border-bottom: 1px solid var(--iron-border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1.25rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--green-bright);
}
.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--green-bright);
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.faq-icon::before {
  width: 12px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.9;
}
.faq-a-inner a {
  color: var(--green-bright);
  text-decoration: underline;
}

/* ─── LOCATION ─── */
#location {
  background: var(--iron-darker);
}
.location-split {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.location-info {
  display: flex;
  flex-direction: column;
}
.location-address {
  margin-bottom: 2rem;
}
.location-address p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 2;
}
.location-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.location-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--brushed);
  transition: color 0.2s;
}
.location-contact:hover {
  color: var(--white);
}
.location-contact svg {
  stroke: var(--green-bright);
  flex-shrink: 0;
}
.location-note {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.75;
  padding-top: 1.5rem;
  border-top: 1px solid var(--iron-border);
}
.loc-card {
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.loc-card-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.6rem;
}
.loc-card p {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--brushed);
  line-height: 1.85;
}
.loc-card-info p + p {
  margin-top: 0.6rem;
}
.loc-card .location-contact {
  font-size: 0.88rem;
}
.loc-card .location-contact + .location-contact {
  margin-top: 0.5rem;
}
.map-container {
  background: var(--iron-mid);
  border: 1px solid var(--iron-border);
  overflow: hidden;
  align-self: stretch;
  min-height: 300px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.map-placeholder svg {
  stroke: var(--silver);
  opacity: 0.3;
}
.map-placeholder p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--silver);
  text-align: center;
  max-width: 240px;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .location-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ─── FINAL CTA — wider text box ─── */
#trial {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
#trial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 50%,
    rgba(42, 125, 72, 0.45) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
#trial::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}
.trial-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.trial-lbl {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.trial-lbl::before,
.trial-lbl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}
.trial-h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.97;
  margin-bottom: 1.5rem;
}
.trial-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  margin: 0 auto 2rem;
}
.trial-note {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 1.25rem;
}
.trial-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1.25rem;
  margin-bottom: 0;
}
.trial-proof-dot {
  width: 7px;
  height: 7px;
  background: var(--green-bright);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── FOOTER ─── */
footer {
  background: var(--iron-deep);
  border-top: 1px solid var(--iron-border);
  padding: 2rem 5rem;
}
.footer-main {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.footer-logo span {
  color: var(--green-bright);
}
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--silver);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--iron-border);
  color: var(--silver);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.footer-social a:hover {
  border-color: var(--green-border);
  color: var(--green-bright);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--silver);
  line-height: 1.7;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.footer-legal {
  display: flex;
  gap: 1rem;
}
.footer-legal a {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--silver);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--white);
}
@media (max-width: 900px) {
  footer {
    padding: 2rem 2.5rem;
  }
}
@media (max-width: 640px) {
  footer {
    padding: 2rem 1.25rem;
  }
  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ─── COOKIE ─── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--iron-light);
  border-top: 1px solid var(--iron-border);
  padding: 1.25rem 5rem;
}
#cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
#cookie-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}
#cookie-body {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--silver);
}
#cookie-body a {
  color: var(--green-bright);
}
#cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
#cookie-decline {
  background: none;
  border: 1px solid var(--iron-border);
  color: var(--silver);
  padding: 0.6rem 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}
#cookie-decline:hover {
  border-color: var(--brushed);
  color: var(--white);
}
#cookie-accept {
  background: var(--green);
  border: none;
  color: var(--white);
  padding: 0.6rem 1.2rem;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s;
}
#cookie-accept:hover {
  background: var(--green-mid);
}
@media (max-width: 640px) {
  #cookie-banner {
    padding: 1.25rem;
  }
}

/* ─── MOBILE READABILITY ─── */
@media (max-width: 640px) {
  body {
    font-size: 18px;
  }
  .hero-sub {
    font-size: 1.05rem;
  }
  .why-method {
    font-size: 1rem;
  }
  .pillar p {
    font-size: 0.95rem;
  }
  .coach-meta {
    font-size: 0.88rem;
  }
  .coach-fun {
    font-size: 0.82rem;
  }
  .sched-cell-name {
    font-size: 0.78rem;
  }
  .faq-q {
    font-size: 1rem;
  }
  .faq-a-inner {
    font-size: 0.95rem;
  }
  .testi-body {
    font-size: 0.95rem;
  }
  .location-address p {
    font-size: 1rem;
  }
  .location-note {
    font-size: 0.9rem;
  }
  .pricing-checklist li {
    font-size: 0.95rem;
  }
  .schedule-sub {
    font-size: 0.97rem;
  }
  .trial-sub {
    font-size: 1.05rem;
  }
}
