/* ============================================================
   MUSCLE LAB FITNESS CLUB — style.css
   Colors: Lime Green #CFF502 | Purple #A66CFF | Black/White
   Fonts:  Barlow Condensed (headlines) | DM Sans Light (body)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --bg:            #0a0a0a;
  --bg-secondary:  #111111;
  --bg-card:       #161616;
  --bg-card-hover: #1c1c1c;

  --accent-green:  #CFF502;   /* primary — CTAs, key words */
  --accent-purple: #A66CFF;   /* secondary — use sparingly */
  --accent-green-dim: rgba(207, 245, 2, 0.15);
  --accent-purple-dim: rgba(166, 108, 255, 0.15);

  --text-primary:   #ffffff;
  --text-secondary: #a0a0a0;
  --text-muted:     #5a5a5a;
  --border:         rgba(255, 255, 255, 0.08);

  --font-headline: 'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
.text-green  { color: var(--accent-green); }
.text-purple { color: var(--accent-purple); }
.text-center { text-align: center; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1rem;
  display: block;
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 3rem;
}

.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

/* Green filled — primary CTA */
.btn-primary {
  background: var(--accent-green);
  color: #0a0a0a;
  border-color: var(--accent-green);
}
.btn-primary:hover {
  background: #b8dc02;
  border-color: #b8dc02;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(207, 245, 2, 0.3);
}

/* Ghost — white border */
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  transform: translateY(-2px);
}

/* Outline — dark bg with green border */
.btn-outline {
  background: transparent;
  color: var(--accent-green);
  border-color: var(--accent-green);
}
.btn-outline:hover {
  background: var(--accent-green);
  color: #0a0a0a;
  transform: translateY(-2px);
}

/* Dark — for use on green CTA section */
.btn-dark {
  background: #0a0a0a;
  color: var(--accent-green);
  border-color: #0a0a0a;
}
.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.btn-dark-outline {
  background: transparent;
  color: #0a0a0a;
  border-color: #0a0a0a;
}
.btn-dark-outline:hover {
  background: rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Fade-in-up (hero staggered) */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== IMAGE PLACEHOLDER ===== */
/* Remove these styles once real photos are added */
.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

/* Darker bg once user scrolls */
.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Logo */
.nav-logo {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo span {
  color: var(--accent-green);
}
.nav-logo-img {
  height: 56px;
  width: auto;
  display: block;
}
.nav-logo-name {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--white);
  white-space: nowrap;
  margin-left: 0.6rem;
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-secondary);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--text-primary);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
/* X state */
.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); }

/* Mobile menu */
.nav-mobile {
  display: none;
  background: rgba(10, 10, 10, 0.98);
  padding: 1.5rem 2rem 2rem;
}
.nav-mobile.open {
  display: block;
}
.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.nav-mobile-link {
  font-size: 1.1rem;
  color: var(--text-secondary);
  display: block;
}
.nav-mobile-link:hover {
  color: var(--accent-green);
}
/* CTA button inside mobile menu — keep button colors, center it */
.nav-mobile .btn {
  color: #0a0a0a;
  text-align: center;
  width: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;          /* fallback for older browsers */
  min-height: 100svh;         /* fix iOS Safari address-bar shifting viewport */
  display: flex;
  align-items: center;
  /* Background image — will show through overlay */
  background-image: url('images/IMG_0091.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Dark overlay on hero image */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.9) 100%
  );
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 80px; /* offset for fixed nav */
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 1.2rem;
}

.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88); /* brighter than --text-secondary (#a0a0a0) for hero readability */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6); /* keeps it legible over any photo area */
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   REVIEWS TICKER
   ============================================================ */
.reviews-ticker {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  /* Infinite scroll animation */
  animation: ticker 40s linear infinite;
  width: max-content;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* moves exactly half (the duplicate set) */
}

.ticker-item {
  flex-shrink: 0;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
}

.ticker-item .stars {
  color: var(--accent-green);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.ticker-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0.6rem;
  font-style: italic;
}

.ticker-item .reviewer {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT / MISSION
   ============================================================ */
.about {
  padding: 8rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text {
  /* Left column */
}

.stats-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-primary);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-image {
  /* Right column */
}

.about-image .image-placeholder {
  min-height: 500px;
  border-radius: var(--radius-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

/* ============================================================
   MEET THE COACH
   ============================================================ */
.coach {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.coach-grid {
  display: grid;
  grid-template-columns: 2fr 3fr; /* image narrower, text wider */
  gap: 5rem;
  align-items: center;
}

.coach-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
}

.coach-text {
  /* Right column */
}

.coach-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.coach-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.4rem 0.9rem;
}

/* ============================================================
   CLASSES
   ============================================================ */
.classes {
  padding: 8rem 0;
  background: var(--bg-secondary);
}

.classes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.class-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: var(--transition);
}

.class-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-green);
  box-shadow: 0 16px 40px rgba(207, 245, 2, 0.1);
}


.class-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-green-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-green);
}

/* Purple variant for personal training */
.class-icon--purple {
  background: var(--accent-purple-dim);
  color: var(--accent-purple);
}

.class-icon svg {
  width: 22px;
  height: 22px;
}

/* Top-right badge on each card indicating the offering type */
.class-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-green);
  color: #0a0a0a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.class-badge--purple {
  background: #a78bfa;
  color: #0a0a0a;
}

.class-title {
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.class-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.class-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.class-bullets li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
}
.class-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

/* ============================================================
   WHY MUSCLE LAB
   ============================================================ */
.why {
  padding: 8rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 108, 255, 0.5);
  box-shadow: 0 12px 30px rgba(166, 108, 255, 0.1);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-purple-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  margin-bottom: 1.2rem;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-card h3 {
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================================
   COMMUNITY / GALLERY
   ============================================================ */
.community {
  padding: 8rem 0 4rem;
}

/* Auto-scrolling carousel */
.gallery-carousel {
  overflow: hidden; /* clip the track as it scrolls */
  margin: 3rem 0;
}

.gallery-track {
  display: flex;
  gap: 0.5rem;
  width: max-content;
  /* scroll the full width of one set (12 items × (280px + 0.5rem gap)) */
  animation: gallery-scroll 40s linear infinite;
}


@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* -50% = exactly one set, loops perfectly */
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  height: 340px;
  width: 280px;
  flex-shrink: 0;
}

.gallery-item .image-placeholder {
  min-height: 100%;
  border-radius: 0;
  border: none;
  transition: var(--transition);
}

.gallery-item:hover .image-placeholder {
  background: var(--bg-card-hover);
}

/* Real photos when added */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.community-quote {
  font-family: var(--font-headline);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-secondary);
  padding: 2rem 0 4rem;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  position: relative;
  min-height: 78vh;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

.pricing-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.72) 48%, rgba(5, 5, 5, 0.38) 100%),
    url('images/IMG_0100.jpeg') center / cover;
  opacity: 0.9;
}

.pricing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 4rem;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 5rem;
}

.pricing-hero-copy h1 {
  font-family: var(--font-headline);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  max-width: 780px;
}

.pricing-hero-copy p:not(.section-label) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
}

.founding-offer {
  background: var(--accent-green);
  color: #0a0a0a;
  border-radius: 50%;
  width: 300px;
  aspect-ratio: 1;
  padding: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 0 10px rgba(207, 245, 2, 0.14), 0 24px 80px rgba(0, 0, 0, 0.45);
}

.founding-offer span,
.founding-offer small {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.founding-offer strong {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-top: 0.4rem;
}

.founding-offer p {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 0.75rem;
  text-transform: uppercase;
}

.pricing-section {
  padding: 7rem 0;
  background: var(--bg);
}

.section-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card,
.pricing-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 430px;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(207, 245, 2, 0.55);
  box-shadow: 0 16px 44px rgba(207, 245, 2, 0.1);
}

.price-card-featured {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 1px rgba(166, 108, 255, 0.3);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  transform: translateY(-50%);
  background: var(--accent-purple);
  color: #0a0a0a;
  border-radius: 999px;
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.price-card-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-card h3,
.pricing-panel h2 {
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.price {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  margin-top: 1.4rem;
}

.price span {
  font-size: 2.4rem;
  vertical-align: top;
}

.price small {
  color: var(--accent-green);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-features,
.offer-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-features {
  flex: 1;
  margin-bottom: 2rem;
}

.price-features li,
.offer-list li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  padding-left: 1.7rem;
  position: relative;
}

.price-features li::before,
.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--accent-green);
  border-radius: 50%;
}

.price-features li::after,
.offer-list li::after {
  content: '';
  position: absolute;
  left: 0.28rem;
  top: 0.58rem;
  width: 0.32rem;
  height: 0.18rem;
  border-left: 2px solid var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
  transform: rotate(-45deg);
}

.pricing-details-section {
  padding: 0 0 7rem;
  background: var(--bg);
}

.pricing-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-panel {
  min-height: 360px;
}

.pricing-panel {
  display: flex;
  flex-direction: column;
}

.pricing-panel .section-label {
  margin-bottom: 0.75rem;
}

.training-rate {
  margin: 2rem 0;
}

.training-rate span {
  display: block;
  color: var(--accent-purple);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.training-rate strong {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 900;
  line-height: 0.9;
  color: var(--accent-purple);
}

.training-rate small {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.package-list,
.dropin-list {
  display: flex;
  flex-direction: column;
}

.package-row,
.dropin-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding: 0.9rem 0;
}

.package-row span,
.dropin-row span {
  color: var(--text-primary);
  font-weight: 700;
  text-transform: uppercase;
}

.package-row strong,
.dropin-row strong {
  color: var(--accent-green);
  font-family: var(--font-headline);
  font-size: 1.8rem;
  line-height: 1;
}

.dropin-row small {
  display: block;
  color: var(--accent-purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 0.15rem;
  text-transform: uppercase;
}

.panel-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 1.5rem;
}

.panel-cta {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.offer-panel {
  border-color: rgba(166, 108, 255, 0.35);
}

.offer-list {
  margin-top: 2rem;
}

/* Pricing page refresh: scoped overrides for a cleaner, non-overlapping layout. */
.pricing-page {
  background:
    radial-gradient(circle at 82% 12%, rgba(166, 108, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 18% 20%, rgba(207, 245, 2, 0.1), transparent 24rem),
    #070707;
}

.pricing-page .nav {
  background: rgba(7, 7, 7, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.85rem 0;
}

.pricing-page main {
  padding-top: 90px;
}

.pricing-page .pricing-hero {
  min-height: auto;
  padding: 5.5rem 0 4rem;
  background: transparent;
}

.pricing-page .pricing-hero-bg {
  display: none;
}

.pricing-page .pricing-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 3rem;
  align-items: end;
  padding-top: 0;
  padding-bottom: 0;
}

.pricing-page .pricing-hero-copy h1 {
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  max-width: 760px;
  margin-bottom: 1.25rem;
}

.pricing-page .pricing-hero-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.12rem;
  max-width: 620px;
}

.pricing-page .pricing-hero-actions {
  margin-top: 2rem;
}

.pricing-page .founding-offer {
  width: auto;
  aspect-ratio: auto;
  border-radius: var(--radius-lg);
  align-items: flex-start;
  padding: 2rem;
  text-align: left;
  background: linear-gradient(135deg, var(--accent-green), #e8ff66);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.pricing-page .founding-offer div {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin: 1rem 0 0.75rem;
}

.pricing-page .founding-offer strong {
  font-size: 5.5rem;
  margin: 0;
}

.pricing-page .founding-offer small {
  margin-bottom: 0.7rem;
}

.pricing-page .founding-offer p {
  max-width: 260px;
  margin: 0;
}

.pricing-page .pricing-section {
  padding: 4rem 0 2rem;
  background: transparent;
}

.pricing-page .section-intro {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-page .section-headline {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  margin-bottom: 0;
}

.pricing-page .pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.pricing-page .price-card,
.pricing-page .pricing-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.pricing-page .price-card {
  min-height: 460px;
  padding: 2rem;
}

.pricing-page .price-card-featured {
  border-color: rgba(166, 108, 255, 0.82);
  transform: translateY(-0.75rem);
  box-shadow: 0 24px 80px rgba(166, 108, 255, 0.16), 0 0 0 1px rgba(166, 108, 255, 0.22) inset;
}

.pricing-page .price-card-featured:hover {
  transform: translateY(-1.1rem);
}

.pricing-page .popular-badge {
  left: 1.5rem;
  right: auto;
  top: 1.4rem;
  transform: none;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
}

.pricing-page .price-card-featured .price-card-head {
  padding-top: 2.1rem;
}

.pricing-page .price-card h3,
.pricing-page .pricing-panel h2 {
  font-size: 2.15rem;
}

.pricing-page .price {
  font-size: clamp(4.4rem, 6vw, 5.4rem);
}

.pricing-page .price small {
  display: inline-block;
  margin-left: 0.2rem;
}

.pricing-page .price-card .btn {
  text-align: center;
  width: 100%;
}

.pricing-page .pricing-details-section {
  padding: 2rem 0 6rem;
  background: transparent;
}

.pricing-page .pricing-details-grid {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
}

.pricing-page .pricing-panel {
  min-height: 390px;
  padding: 2rem;
}

.pricing-page .cta-section {
  margin-top: 0;
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.cta-section {
  background: var(--accent-green);
  padding: 7rem 0;
  text-align: center;
}

.cta-headline {
  font-family: var(--font-headline);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 1rem;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(10, 10, 10, 0.7);
  margin-bottom: 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #000000;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 1rem;
  line-height: 1.7;
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent-green);
}

.footer-contact p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE — 1024px (tablets/small desktop)
   ============================================================ */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .pricing-hero-inner,
  .pricing-grid,
  .pricing-details-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero-inner {
    gap: 3rem;
  }

  .founding-offer {
    justify-self: start;
  }

  .price-card {
    min-height: auto;
  }

  .footer-brand {
    grid-column: span 2;
  }

  /* Parallax is janky on tablets too — disable early */
  .hero {
    background-attachment: scroll;
  }
}

/* ============================================================
   RESPONSIVE — 768px (mobile)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav: hide desktop links, show hamburger */
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-logo-img {
    height: 32px; /* slightly smaller on mobile */
  }
  .nav-logo-name {
    font-size: 0.65rem; /* shrink text to fit mobile nav */
    letter-spacing: 0.04em;
    margin-left: 0.4rem;
  }

  /* Reduce section padding on mobile */
  .about,
  .coach,
  .classes,
  .why,
  .pricing-section {
    padding: 5rem 0;
  }
  .pricing-details-section {
    padding: 0 0 5rem;
  }
  .community {
    padding: 5rem 0 2rem;
  }

  /* Hero */
  .hero-headline {
    font-size: clamp(2.8rem, 12vw, 5rem);
  }
  .hero {
    min-height: 90vh;
    min-height: 90svh;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image img {
    height: 300px; /* override the 500px fixed height */
  }
  .about-image .image-placeholder {
    min-height: 300px;
  }
  .stats-row {
    gap: 1.2rem;
  }

  /* Coach */
  .coach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .coach-image img {
    height: 260px;
  }

  /* Classes */
  .classes-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 1rem auto 0;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 3rem auto 0;
  }

  /* Pricing */
  .pricing-hero {
    min-height: auto;
  }
  .pricing-hero-bg {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.74) 58%, rgba(5, 5, 5, 0.95) 100%),
      url('images/IMG_0100.jpeg') center / cover;
  }
  .pricing-hero-inner {
    padding-top: 110px;
  }
  .pricing-hero-copy h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .founding-offer {
    width: min(280px, 100%);
    justify-self: center;
  }
  .price-card,
  .pricing-panel {
    padding: 1.5rem;
  }
  .price,
  .training-rate strong {
    font-size: 4rem;
  }

  /* Gallery — smaller cards on tablet */
  .gallery-item {
    height: 260px;
    width: 210px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: span 1;
  }

  /* CTA section — reduce vertical padding on mobile */
  .cta-section {
    padding: 4rem 0;
  }

  /* Touch targets — nav links need 44px min height per Apple/Google guidelines */
  .nav-mobile-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Community quote — tighten bottom spacing */
  .community-quote {
    padding: 1.5rem 0 2rem;
  }
}

/* ============================================================
   RESPONSIVE — 600px (small tablets / large phones)
   Classes and Why cards use 2 columns here — better than
   single-col-with-max-width on mid-size screens.
   ============================================================ */
@media (min-width: 480px) and (max-width: 768px) {
  .classes-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
    margin: 3rem 0 0;
  }
}

/* ============================================================
   RESPONSIVE — 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 1.2rem;
  }

  /* Further reduce section padding on small phones */
  .about,
  .classes,
  .why,
  .pricing-section {
    padding: 4rem 0;
  }
  .pricing-details-section {
    padding: 0 0 4rem;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    text-align: center;
    width: 100%; /* full-width buttons on small screens */
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .pricing-hero-actions {
    flex-direction: column;
  }
  .pricing-hero-actions .btn,
  .price-card .btn {
    width: 100%;
    text-align: center;
  }
  .founding-offer {
    border-radius: var(--radius-lg);
    aspect-ratio: auto;
    min-height: 220px;
    width: 100%;
  }
  .founding-offer strong {
    font-size: 4.4rem;
  }
  .package-row,
  .dropin-row {
    align-items: flex-start;
  }

  .stats-row {
    flex-direction: column;
    gap: 1rem;
  }

  /* Gallery: single column on small phones */
  /* Gallery — smaller cards on mobile */
  .gallery-item {
    height: 220px;
    width: 180px;
  }

  /* Ticker cards — shrink from 320px so they don't crowd small screens */
  .ticker-item {
    width: 270px;
  }

  /* CTA section — tighten further on small phones */
  .cta-section {
    padding: 3rem 0;
  }
}

/* ============================================================
   LANDSCAPE PHONES
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding: 100px 0 4rem;
  }
  .hero-headline {
    font-size: 2.5rem;
  }
}

/* Pricing page scoped responsive rules must come last to beat desktop overrides. */
@media (max-width: 1100px) {
  .pricing-page .pricing-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-page .founding-offer {
    max-width: 420px;
  }

  .pricing-page .pricing-grid,
  .pricing-page .pricing-details-grid {
    grid-template-columns: 1fr;
  }

  .pricing-page .price-card,
  .pricing-page .pricing-panel {
    min-height: auto;
  }

  .pricing-page .price-card-featured,
  .pricing-page .price-card-featured:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .pricing-page main {
    padding-top: 68px;
  }

  .pricing-page .pricing-hero {
    padding: 4rem 0 3rem;
  }

  .pricing-page .pricing-hero-copy h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .pricing-page .pricing-hero-actions {
    flex-direction: column;
  }

  .pricing-page .pricing-hero-actions .btn,
  .pricing-page .price-card .btn {
    width: 100%;
    text-align: center;
  }

  .pricing-page .founding-offer {
    width: 100%;
    max-width: none;
  }

  .pricing-page .pricing-section {
    padding: 3rem 0 1.25rem;
  }

  .pricing-page .pricing-details-section {
    padding: 1.25rem 0 4rem;
  }
}

@media (max-width: 480px) {
  .pricing-page .pricing-hero {
    padding: 3rem 0 2rem;
  }

  .pricing-page .price-card,
  .pricing-page .pricing-panel,
  .pricing-page .founding-offer {
    padding: 1.35rem;
  }

  .pricing-page .founding-offer strong {
    font-size: 4.2rem;
  }

  .pricing-page .price,
  .pricing-page .training-rate strong {
    font-size: 3.8rem;
  }

  .pricing-page .package-row,
  .pricing-page .dropin-row {
    align-items: flex-start;
  }
}
