/* ── RESET & ROOT ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0a0a0a;
  --bg-2:      #0e0e0e;
  --bg-3:      #161616;
  --bg-card:   #111111;
  --red:       #ff0a22;
  --red-light: #ff3a50;
  --red-glow:  rgba(255, 10, 34, 0.12);
  --white:     #f0ede8;
  --muted:     #606060;
  --border:    #1e1e1e;
  --font-d:    'Bebas Neue', sans-serif;
  --font-h:    'Oswald', sans-serif;
  --font-b:    'Inter', sans-serif;
}

html { font-size: 16px; }

/* ── GLOBAL SCROLLBAR ────────────────────────── */
::-webkit-scrollbar { width: 2px; height: 2px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }
* { scrollbar-width: thin; scrollbar-color: var(--red) transparent; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  overflow-x: hidden;
  line-height: 1.6;
}

img, video { display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* ── LOADER ─────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-mark { width: 52px; height: auto; }

.loader-progress-wrap {
  width: 220px;
  height: 2px;
  background: #1e1e1e;
  position: relative;
  overflow: hidden;
}

#loader-bar {
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 0%;
  background: var(--red);
  transition: width 0.15s linear;
}

#loader-percent {
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}


/* ── HEADER ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}

.site-nav {
  display: flex;
  align-items: center;
  width: 100%;
}

.nav-logo { flex-shrink: 0; }
.nav-logo-img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.6);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 9px 22px;
  border: 1px solid var(--red);
  margin-left: 32px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: transparent; color: var(--red); }

.nav-tour {
  font-family: var(--font-h);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(240,237,232,0.7);
  padding: 9px 22px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-left: 16px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-tour:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }


/* ── HERO (text-only) ────────────────────────────── */
.hero-standalone {
  position: relative;
  height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

/* Grain texture */
.hero-standalone::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
  z-index: 0;
}

/* Red radial accent */
.hero-standalone::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,10,34,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative diagonal lines */
.hero-deco-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.deco-line {
  position: absolute;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent, rgba(255,10,34,0.2), transparent);
  transform-origin: top center;
}

.deco-line--1 {
  right: 12%;
  top: -20%;
  transform: rotate(15deg);
  opacity: 0.7;
}

.deco-line--2 {
  right: 19%;
  top: -20%;
  transform: rotate(15deg);
  opacity: 0.35;
}

.deco-line--3 {
  right: 26%;
  top: -20%;
  transform: rotate(15deg);
  opacity: 0.18;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 5vw 10vh;
  max-width: 1000px;
}

.hero-eyebrow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  opacity: 0;
}

.hero-heading {
  font-family: var(--font-d);
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.87;
  color: var(--white);
  letter-spacing: 0.01em;
  overflow: hidden;
}

.hero-word { display: inline-block; will-change: transform; }

.hero-tagline {
  font-family: var(--font-b);
  font-size: clamp(0.875rem, 1.2vw, 1.1rem);
  font-weight: 300;
  color: rgba(240, 237, 232, 0.5);
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
}

.hero-ctas {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.cta-button--ghost:hover {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  gap: 16px;
}

.hero-scroll-hint {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.scroll-label {
  font-family: var(--font-h);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

.hero-bottom-strip {
  position: absolute;
  z-index: 1;
  bottom: 40px;
  left: 5vw;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-h);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  opacity: 0;
}
.strip-dot { color: var(--red); }


/* ══════════════════════════════════════════════════ */
/*  SPLIT SECTIONS                                   */
/* ══════════════════════════════════════════════════ */

.split-section {
  display: grid;
  grid-template-columns: 45% 55%;
  position: relative;
}

/* Red corner accent on sections */
.split-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 3px;
  background: linear-gradient(to right, var(--red), transparent);
  z-index: 5;
  pointer-events: none;
}

.split-section--reverse {
  grid-template-columns: 55% 45%;
}

/* Dark triangle fills the angled gap between text bg and video edge */
.split-section:not(.split-section--reverse)::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: calc(45% - 1px);
  width: 65px;
  background: var(--bg);
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  z-index: 3;
  pointer-events: none;
}

.split-section--reverse::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: calc(45% - 1px);
  width: 65px;
  background: var(--bg);
  clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  z-index: 3;
  pointer-events: none;
}

/* Reverse: video goes left, text goes right */
.split-section--reverse .split-left { order: 2; }
.split-section--reverse .split-right { order: 1; }

/* Red corner accent on reversed sections (right side) */
.split-section--reverse::before {
  left: auto; right: 0;
  background: linear-gradient(to left, var(--red), transparent);
}

/* ── Left column ─────────────────────────────────── */
.split-left {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

/* Red radial glow behind text */
.split-left::after {
  content: '';
  position: absolute;
  left: -20%;
  top: 30%;
  width: 70%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(255,10,34,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Reversed sections: gradient bleeds from right→left so red originates at
   the far edge of the text panel and fades toward the video divider.
   272deg = opposite of 92deg, equal-color lines stay parallel to the clip-path cut */
.split-section--reverse .split-left::after {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    272deg,
    rgba(255,10,34,0.18) 0%,
    rgba(255,10,34,0.07) 35%,
    transparent 65%
  );
}

.split-box {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 52px 80px 5vw;
  border-bottom: 1px solid var(--border);
  position: relative;
  gap: 20px;
  z-index: 1;
}

/* Diagonal red slash in background */
.split-box::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 10%, rgba(255,10,34,0.08) 50%, transparent 90%);
  pointer-events: none;
}

/* Red accent line */
.split-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 72px;
  background: var(--red);
  transition: height 0.4s ease;
  z-index: 2;
}

.split-section--reverse .split-box::before {
  left: auto;
  right: 0;
}

.split-box:hover::before { height: 100px; }

/* Section number tag */
.box-label {
  font-family: var(--font-h);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
}

/* Main heading */
.box-heading {
  font-family: var(--font-d);
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.01em;
}

/* Body copy */
.box-body {
  font-family: var(--font-b);
  font-size: clamp(0.875rem, 1.05vw, 0.975rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 237, 232, 0.6);
  max-width: 380px;
}

/* Stats box */
.split-box--stats { gap: 24px; }

.box-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 8px;
  border: 1px solid var(--border);
}

.box-stat {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.box-stat:nth-child(2n) { border-right: none; }
.box-stat:nth-child(3),
.box-stat:nth-child(4) { border-bottom: none; }

.box-stat-val {
  display: flex;
  align-items: baseline;
  gap: 3px;
  line-height: 1;
}

.stat-number {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 4rem);
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-d);
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  color: var(--red);
}

.stat-label {
  font-family: var(--font-h);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* 1-on-1 training feature list */
.training-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-top: 4px;
}

.training-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(240,237,232,0.65);
  line-height: 1.5;
}

.training-features li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ff0a22' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
}

/* CTA box */
.split-box--cta { gap: 24px; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 13px 26px;
  border: 1px solid var(--red);
  margin-top: 4px;
  width: fit-content;
  transition: background 0.22s ease, color 0.22s ease, gap 0.22s ease;
}

.cta-button:hover { background: transparent; color: var(--red); gap: 16px; }
.cta-arrow { transition: transform 0.22s ease; }
.cta-button:hover .cta-arrow { transform: translateX(4px); }

/* ── Right column (sticky canvas) ───────────────── */
.split-right {
  position: sticky;
  top: 0;
  height: 100vh;
  align-self: start;   /* CRITICAL: prevents grid from stretching */
  overflow: hidden;
  background: #080808;
}

/* Angled cut on the left edge (default: video right, text left) */
.split-section:not(.split-section--reverse) .split-right {
  clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
}

/* Angled cut on the right edge (reversed: video left, text right) */
.split-section--reverse .split-right {
  clip-path: polygon(0% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.split-canvas {
  width: 100%;
  height: 100%;
  display: block;
}


/* ══════════════════════════════════════════════════ */
/*  BELT DIVIDER SECTION                             */
/* ══════════════════════════════════════════════════ */

.belt-section {
  position: relative;
  height: 75vh;
  background: #000;
  overflow: hidden;
}

.belt-sticky {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.belt-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Dark gradient overlay for readability */
.belt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
  display: flex;
  align-items: center;
  padding: 0 7vw;
  z-index: 1;
}

/* Red top/bottom bars that frame the belt strip */
.belt-sticky::before,
.belt-sticky::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--red) 0%, rgba(255,10,34,0.3) 60%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.belt-sticky::before { top: 0; }
.belt-sticky::after  { bottom: 0; }

.belt-text {
  position: relative;
  z-index: 2;
}

.belt-eyebrow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.belt-heading {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 7vw, 8rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.01em;
}

.belt-rule {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--red) 40%, var(--red) 60%, transparent);
  opacity: 0.6;
}


/* ══════════════════════════════════════════════════ */
/*  MEET YOUR TRAINERS                               */
/* ══════════════════════════════════════════════════ */
.trainers-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.trainers-inner {
  display: grid;
  grid-template-columns: 500px 1fr;
  min-height: 720px;
}

/* Left content panel */
.trainers-content {
  padding: 100px 60px 100px 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 2;
}

.trainers-title {
  font-family: var(--font-d);
  font-size: clamp(52px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 20px;
}

.trainers-intro {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(240,237,232,0.5);
  max-width: 380px;
  margin-bottom: 44px;
}

/* Individual trainer cards */
.trainer-profiles {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 44px;
}

.trainer-profile {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.trainer-profile-bar {
  flex-shrink: 0;
  width: 3px;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(to bottom, var(--red), transparent);
  border-radius: 2px;
  margin-top: 4px;
}

.trainer-profile-body {
  flex: 1;
}

.trainer-profile-name {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.trainer-profile-cred {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.trainer-profile-bio {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240,237,232,0.55);
  margin-bottom: 12px;
}

.trainer-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.trainer-profile-tags span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--muted);
}

/* Right photo panel */
.trainers-photo-wrap {
  position: relative;
  overflow: hidden;
}

.trainers-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Blend left edge into dark background */
.trainers-photo-blend {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    rgba(10,10,10,0.5) 25%,
    transparent 55%
  );
  pointer-events: none;
}

/* Name labels bottom of photo */
.trainers-photo-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.photo-label {
  position: absolute;
  bottom: 36px;
  transform: translateX(-50%);
  font-family: var(--font-d);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: rgba(240,237,232,0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.photo-label--hayley { left: 28%; }
.photo-label--john   { left: 68%; }

/* ══════════════════════════════════════════════════ */
/*  FEATURES                                         */
/* ══════════════════════════════════════════════════ */
.features-section {
  background: var(--bg-2);
  padding: 120px 5vw;
  position: relative;
  z-index: 10;
}

.features-header { margin-bottom: 64px; }

.section-eyebrow {
  display: block;
  font-family: var(--font-h);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.features-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.01em;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 44px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.feature-card:hover { border-color: rgba(255,10,34,0.25); background: #141414; }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon { width: 36px; height: 36px; color: var(--red); }
.feature-icon svg { width: 100%; height: 100%; }

.feature-name {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}

.feature-desc {
  font-family: var(--font-b);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}


/* ══════════════════════════════════════════════════ */
/*  MEMBERSHIP                                       */
/* ══════════════════════════════════════════════════ */
.membership-section {
  background: var(--bg);
  padding: 120px 5vw;
  position: relative;
  z-index: 10;
}

.membership-header {
  text-align: center;
  margin-bottom: 72px;
}

.membership-title {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5.5vw, 6rem);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}

.membership-intro {
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 40px;
}

/* ── Billing toggle ──────────────────────────────── */
.billing-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 5px;
  gap: 4px;
  margin-top: 8px;
  width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.toggle-opt {
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 13px 0 11px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.toggle-opt:hover { color: var(--white); }

.toggle-opt--active {
  background: #1a1a1a;
  color: var(--white);
  box-shadow: 0 1px 6px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.05);
}

.toggle-opt--active[data-period="yearly"] {
  border-bottom: 2px solid var(--red);
}

.toggle-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.toggle-opt--active .toggle-badge {
  opacity: 1;
}

/* ── Cards ───────────────────────────────────────── */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  max-width: 860px;
  margin: 0 auto;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transition: border-color 0.3s ease;
}

.tier-card:hover { border-color: rgba(255,10,34,0.25); }

.tier-card--featured {
  border-color: var(--red);
  background: #0f0003;
}

.tier-card--featured:hover { border-color: var(--red-light); }

.tier-badge {
  position: absolute;
  top: -1px; left: 44px;
  font-family: var(--font-h);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 5px 12px;
}

.tier-top { display: flex; flex-direction: column; gap: 8px; }

.tier-name {
  font-family: var(--font-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}

.price-dollar {
  font-family: var(--font-d);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: var(--white);
  align-self: flex-start;
  margin-top: 6px;
}

.price-amount {
  font-family: var(--font-d);
  font-size: clamp(3rem, 4.5vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  transition: opacity 0.15s ease;
}

.price-period {
  font-family: var(--font-b);
  font-size: 0.85rem;
  color: var(--muted);
  margin-left: 2px;
}

.price-billed {
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--muted);
  display: none;
}

/* shown when yearly is active */
.billing-yearly .price-billed--yearly { display: block; }

.tier-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}

.tier-features li {
  font-family: var(--font-b);
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(240,237,232,0.65);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Minimal stroke checkmark */
.tier-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 8.5L6 12L13.5 4' stroke='%23ff0a22' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

.tier-btn {
  display: block;
  font-family: var(--font-h);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 24px;
  border: 1px solid var(--border);
  color: var(--white);
  transition: border-color 0.22s ease, color 0.22s ease;
}

.tier-btn:hover { border-color: var(--red); color: var(--red); }

.tier-btn--featured {
  background: var(--red);
  border-color: var(--red);
}

.tier-btn--featured:hover { background: transparent; color: var(--red); }


/* ══════════════════════════════════════════════════ */
/*  FOOTER                                           */
/* ══════════════════════════════════════════════════ */
.site-footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 80px 5vw 40px;
  position: relative;
  z-index: 10;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.footer-logo { height: 32px; width: auto; margin-bottom: 18px; }

.footer-tagline {
  font-family: var(--font-h);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.social-link:hover { color: var(--red); border-color: var(--red); }
.social-link svg { width: 14px; height: 14px; }

.footer-col-title {
  font-family: var(--font-h);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-family: var(--font-b);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-hours {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-b);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
}

.footer-phone {
  font-family: var(--font-h);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: var(--red);
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--red-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(96,96,96,0.5);
}

.footer-bottom-right { display: flex; align-items: center; gap: 12px; }
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--muted); }


/* ══════════════════════════════════════════════════ */
/*  BUTTON SHIMMER EFFECT                            */
/* ══════════════════════════════════════════════════ */

.cta-button,
.tier-btn,
.nav-cta {
  position: relative;
  overflow: hidden;
  /* lift + scale */
  transition:
    background  0.22s ease,
    color       0.22s ease,
    border-color 0.22s ease,
    transform   0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow  0.25s ease,
    gap         0.22s ease;
}

/* Sweeping shimmer pseudo-element */
.cta-button::after,
.tier-btn::after,
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.10) 50%,
    transparent 65%
  );
  transform: translateX(-150%);
  transition: transform 0.75s ease-out;
  pointer-events: none;
}

.cta-button:hover::after,
.tier-btn:hover::after,
.nav-cta:hover::after {
  transform: translateX(250%);
}

/* Lift + glow on hover */
.cta-button:hover,
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 10, 34, 0.25);
}

.tier-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 8px 24px rgba(255, 10, 34, 0.18);
}

/* Press down on active */
.cta-button:active,
.tier-btn:active,
.nav-cta:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

/* ══════════════════════════════════════════════════ */
/*  HAMBURGER + MOBILE NAV                           */
/* ══════════════════════════════════════════════════ */

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 16px;
  flex-shrink: 0;
}

.hamburger-line {
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}

.nav-hamburger.open .hamburger-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  z-index: 195;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}
.mobile-nav-close:hover { color: var(--white); }

.mobile-nav-link {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-align: center;
}
.mobile-nav-link:hover { color: var(--red); }

.mobile-nav-cta {
  margin-top: 12px;
  font-size: 0.85rem;
}


/* ══════════════════════════════════════════════════ */
/*  MOBILE                                           */
/* ══════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Nav */
  .site-header { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { margin-right: auto; }

  /* Hero */
  .hero-content { padding: 0 24px 14vh; }
  .hero-scroll-hint { display: none; }
  .hero-bottom-strip { left: 24px; font-size: 0.52rem; gap: 8px; bottom: 28px; }

  /* Split sections */
  .split-section { grid-template-columns: 1fr; }
  .split-section--reverse { grid-template-columns: 1fr; }
  .split-section--reverse .split-left { order: unset; }
  .split-section--reverse .split-right { order: unset; }

  /* Remove decorative clip-paths — they look wrong when stacked */
  .split-section:not(.split-section--reverse) .split-right { clip-path: none; }
  .split-section--reverse .split-right { clip-path: none; }
  .split-section::after,
  .split-section--reverse::after { display: none; }

  .split-right {
    position: relative;
    height: 60vw;
    align-self: auto;
  }

  .split-box {
    min-height: auto;
    padding: 52px 24px 52px 28px;
  }

  .split-box::before { height: 48px; }

  .box-heading { font-size: clamp(2.2rem, 8vw, 4rem); }

  /* Belt */
  .belt-heading { font-size: clamp(2.2rem, 8vw, 4.5rem); }
  .belt-overlay { padding: 0 24px; }

  /* Trainers */
  .trainers-inner { grid-template-columns: 1fr; min-height: auto; }
  .trainers-content { padding: 64px 24px 48px; }
  .trainers-photo-wrap { height: 70vw; }
  .trainers-photo-blend {
    background: linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
  }

  /* Features */
  .features-section { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card { padding: 32px 24px; }

  /* Membership */
  .membership-section { padding: 80px 24px; }
  .membership-grid { grid-template-columns: 1fr; max-width: 480px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .site-footer { padding: 60px 24px 32px; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero-bottom-strip { display: none; }
  .hero-heading { font-size: clamp(3rem, 13vw, 5rem); }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }
  .features-section { padding: 60px 20px; }

  /* Membership */
  .membership-section { padding: 60px 20px; }
  .tier-card { padding: 36px 28px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Stats */
  .box-stats-grid { grid-template-columns: 1fr 1fr; }
}
