/* ============================
   POV GYM â€” style.css
   ============================ */

/* CSS Variables */
:root {
  --bg: #0a0a0a;
  --bg-card: #141414;
  --bg-secondary: #1a1a1a;
  --accent: #00ff87;
  --accent-dark: #00cc6a;
  --text: #ffffff;
  --text-muted: #888888;
  --text-dim: #555555;
  --border: #2a2a2a;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-neon: 0 0 20px rgba(0, 255, 135, 0.35);
  --shadow-neon-sm: 0 0 10px rgba(0, 255, 135, 0.2);
  --transition: 0.25s ease;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.accent { color: var(--accent); }

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-accent-outline:hover {
  background: var(--accent);
  color: #000;
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-login:hover { color: var(--text); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,255,135,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(0,255,135,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #111111 50%, #0a0a0a 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,135,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,135,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,255,135,0.1);
  border: 1px solid rgba(0,255,135,0.25);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1.25rem;
}
.hero-title .line-accent { color: var(--accent); display: block; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
}

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

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-item { text-align: left; }
.hero-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.hero-stat-item .stat-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Visual */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-card-preview {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}
.hero-card-preview:hover { transform: translateY(-4px); }
.hero-card-preview.featured {
  grid-column: span 2;
}
.hero-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.hero-card-preview.featured .hero-card-img { height: 180px; font-size: 4rem; }
.hero-card-info { padding: 0.75rem; }
.hero-card-info h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.hero-card-info p { font-size: 0.75rem; color: var(--text-muted); }

/* ============================
   SECTIONS BASE
   ============================ */
section { padding: 5rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }

/* ============================
   WORKOUT CARDS / TRENDING
   ============================ */
.trending-section { background: var(--bg-secondary); }

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

.workout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.workout-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon-sm);
  transform: translateY(-4px);
}

.card-thumb {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  overflow: hidden;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
}

.badge-ppv {
  background: rgba(0,255,135,0.15);
  color: var(--accent);
  border: 1px solid rgba(0,255,135,0.4);
}

.badge-sub {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
}

.card-views {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-body { padding: 1rem; }

.card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.card-creator {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.creator-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #007744);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
}

/* Gradient thumb backgrounds */
.thumb-1 { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.thumb-2 { background: linear-gradient(135deg, #1a0a0a, #2d1515); }
.thumb-3 { background: linear-gradient(135deg, #0a1a0a, #152d15); }
.thumb-4 { background: linear-gradient(135deg, #0a0a1a, #15152d); }
.thumb-5 { background: linear-gradient(135deg, #1a1a0a, #2d2d15); }
.thumb-6 { background: linear-gradient(135deg, #1a0a1a, #2d152d); }

/* ============================
   HOW IT WORKS
   ============================ */
.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.how-it-works-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(16.666% + 1rem);
  right: calc(16.666% + 1rem);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,255,135,0.2));
  z-index: 0;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition);
}
.step-card:hover { border-color: var(--accent); }

.step-number {
  width: 52px;
  height: 52px;
  background: rgba(0,255,135,0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 auto 1.25rem;
}

.step-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================
   CREATOR PITCH
   ============================ */
.creator-pitch {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #0d1a0d 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.creator-pitch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.pitch-content .pitch-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.pitch-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.pitch-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pitch-feature i { color: var(--accent); width: 18px; }

.pitch-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.pitch-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.pitch-stat-item { text-align: center; }
.pitch-stat-item .psi-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.pitch-stat-item .psi-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}
.pitch-chart-bar {
  background: var(--bg-secondary);
  border-radius: var(--radius-pill);
  height: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.pitch-chart-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #007744);
  border-radius: var(--radius-pill);
  width: 85%;
}
.pitch-chart-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================
   CATEGORIES
   ============================ */
.categories-section { padding: 3rem 0; }

.category-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-scroll::-webkit-scrollbar { display: none; }

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
  user-select: none;
}
.category-pill:hover,
.category-pill.active {
  background: rgba(0,255,135,0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================
   SOCIAL PROOF / TESTIMONIALS
   ============================ */
.social-proof { text-align: center; }

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: left;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--accent); }

.testimonial-stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #000;
  flex-shrink: 0;
}
.av-1 { background: linear-gradient(135deg, #00ff87, #007744); }
.av-2 { background: linear-gradient(135deg, #ff6b35, #cc4400); }
.av-3 { background: linear-gradient(135deg, #7c3aed, #5b21b6); }

.author-name { font-size: 0.9rem; font-weight: 700; }
.author-handle { font-size: 0.75rem; color: var(--text-dim); }

/* Social proof banner */
.proof-banner {
  background: rgba(0,255,135,0.06);
  border: 1px solid rgba(0,255,135,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}
.proof-banner-num {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.proof-banner-text { color: var(--text-muted); font-size: 1rem; }

/* ============================
   PRICING CARDS
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 1rem;
  border-radius: var(--radius-pill);
}

.pricing-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-price span { font-size: 1rem; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.pricing-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-muted); }
.pricing-feature.included i { color: var(--accent); }
.pricing-feature.excluded { opacity: 0.4; }
.pricing-feature.excluded i { color: var(--text-dim); }

/* ============================
   PPV SECTION
   ============================ */
.ppv-section {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.ppv-price-range {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  margin: 1rem 0;
}

/* ============================
   FAQ
   ============================ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-question i {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}
.faq-item.open .faq-question i { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ============================
   CREATORS PAGE
   ============================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 3rem 0;
}

.stats-bar-item {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
}

.stats-bar-item .sb-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stats-bar-item .sb-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: var(--accent); }
.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(0,255,135,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.feature-text h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; }
.feature-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Signup Form */
.signup-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,255,135,0.1);
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================
   ABOUT PAGE
   ============================ */
.mission-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.mission-text {
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: var(--accent); }

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.ta-1 { background: linear-gradient(135deg, #00ff87, #007744); }
.ta-2 { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.ta-3 { background: linear-gradient(135deg, #f59e0b, #b45309); }

.team-name { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-role { font-size: 0.85rem; color: var(--accent); margin-bottom: 0.75rem; font-weight: 600; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.value-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}
.value-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.value-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

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

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

.footer-brand-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 260px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a { font-size: 0.875rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.8rem; color: var(--text-dim); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.8rem; color: var(--text-dim); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-muted); }

/* ============================
   CTA BANNER
   ============================ */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,255,135,0.08) 0%, rgba(0,255,135,0.02) 100%);
  border: 1px solid rgba(0,255,135,0.15);
  border-radius: var(--radius);
  padding: 4rem 3rem;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(0,255,135,0.07) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero p { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ============================
   ANIMATIONS
   ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* Countdown timer */
.countdown-wrap {
  display: inline-flex;
  gap: 1.5rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
}
.countdown-unit { text-align: center; }
.countdown-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.countdown-label { font-size: 0.65rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .workout-grid { grid-template-columns: repeat(2, 1fr); }
  .creator-pitch-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-login { display: none; }
  .hamburger { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .workout-grid { grid-template-columns: 1fr 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; }
  .how-it-works-grid::before { display: none; }
  .creator-pitch-grid { grid-template-columns: 1fr; }
  .pitch-visual { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .ppv-section { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .workout-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pricing-card.featured { margin-top: 1rem; }
}

/* -- Creator Page ------------------------------------- */
.creator-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #0f1a0f 50%, #0a0a0a 100%);
  padding: 120px 0 80px;
}
.creator-hero .hero-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; gap: 0.3rem; }
.stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,255,135,0.1); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; margin-bottom: 0.5rem; }
.step-icon { font-size: 2rem; color: var(--accent); margin-bottom: 1rem; }
.step-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

.feature-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.3s;
}
.feature-item:hover { border-color: var(--accent); }
.feature-item > i { font-size: 1.5rem; margin-top: 3px; flex-shrink: 0; }
.feature-item h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.feature-item p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* Creator Form */
.form-container { max-width: 720px; margin: 0 auto; }
.creator-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select option { background: #1a1a1a; }

/* Mission / About */
.mission-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.mission-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.mission-values { display: flex; flex-direction: column; gap: 1.5rem; }
.value-card { display: flex; gap: 1rem; align-items: flex-start; }
.value-card > i { font-size: 1.5rem; margin-top: 3px; flex-shrink: 0; }
.value-card h4 { margin-bottom: 0.25rem; }
.value-card p { color: var(--text-muted); font-size: 0.875rem; margin: 0; }

/* Team */
.team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.team-card:hover { border-color: var(--accent); box-shadow: 0 0 20px rgba(0,255,135,0.1); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #00cc6a);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; color: #000;
  margin: 0 auto 1rem;
}
.team-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 0.8rem; }
.team-card p { color: var(--text-muted); font-size: 0.875rem; }

/* CTA Section */
.cta-section { text-align: center; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.text-center { text-align: center; }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .mission-container { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
