/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0A0A0A;
  color: #B8BEC8;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.bg-watermark {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.bg-watermark img {
  width: 600px; height: 600px; object-fit: contain; opacity: 0.12;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: #F8FAFC; line-height: 1.15; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
nav, section, footer { position: relative; z-index: 1; }
.text-accent { color: #84CC16; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: 0.95rem;
  border: 2px solid transparent; border-radius: 12px;
  cursor: pointer; transition: all 0.25s ease;
  text-decoration: none;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; padding: 14px 24px; }
.btn-primary {
  background: #84CC16; color: #0A0A0A; border-color: #84CC16;
}
.btn-primary:hover { background: #9AE62B; border-color: #9AE62B; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(132,204,22,0.3); }
.btn-outline {
  background: transparent; color: #F8FAFC; border-color: rgba(248,250,252,0.2);
}
.btn-outline:hover { border-color: rgba(248,250,252,0.5); background: rgba(248,250,252,0.05); }
.btn-accent {
  background: linear-gradient(135deg, #84CC16, #65A30D); color: #0A0A0A; border-color: transparent;
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(132,204,22,0.4); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,10,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(248,250,252,0.06);
  padding: 14px 0; transition: all 0.3s ease;
}
.navbar.scrolled { background: rgba(10,10,10,0.95); padding: 10px 0; }
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 900; font-size: 1.6rem; color: #F8FAFC; letter-spacing: -0.01em; line-height: 1; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: #8A8F98; transition: color 0.2s; }
.nav-links a:hover { color: #F8FAFC; }
.nav-cta { }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #F8FAFC; border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative; padding: 140px 0 80px; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-glow {
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(132,204,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-watermark {
  display: none;
}
/* Word cloud */
.word-cloud {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none;
}
.word-cloud span {
  position: absolute; white-space: nowrap; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  opacity: 0; animation: wordDrift linear infinite;
  color: rgba(132,204,22,0.18);
}
.word-cloud span:nth-child(3n) { color: rgba(248,250,252,0.12); }
.word-cloud span:nth-child(5n) { color: rgba(59,130,246,0.15); }
@keyframes wordDrift {
  0% { opacity: 0; transform: translateY(20px); }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { opacity: 0; transform: translateY(-40px); }
}

.hero-container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
/* Hero large logo */
.hero-logo-large {
  display: flex; align-items: center; gap: 20px; margin-bottom: 28px;
}
.hero-logo-large img {
  border-radius: 0;
  background: none;
}
.hero-logo-text {
  font-size: 4.5rem; font-weight: 900; color: #F8FAFC;
  letter-spacing: -0.02em; line-height: 1;
}

.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase;
  background: rgba(132,204,22,0.1); color: #84CC16; border: 1px solid rgba(132,204,22,0.2);
  margin-bottom: 24px;
}
.hero h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.15rem; color: #8A8F98; max-width: 500px; margin-bottom: 32px; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat-value { display: block; font-size: 1.5rem; font-weight: 800; color: #F8FAFC; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1.5px; color: #8A8F98; }
.stat-divider { width: 1px; height: 36px; background: rgba(248,250,252,0.1); }

/* Phone mockup */
.hero-mockup { display: flex; justify-content: center; }
.phone-frame {
  width: 280px; border-radius: 36px; padding: 12px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 2px solid rgba(248,250,252,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(248,250,252,0.03);
}
.phone-screen {
  border-radius: 26px; background: #111; overflow: hidden;
  aspect-ratio: 9/16; display: flex; flex-direction: column;
}
.mockup-header {
  display: flex; align-items: center; gap: 8px; padding: 16px 16px 12px;
  font-weight: 700; font-size: 0.85rem; color: #F8FAFC;
}
.mockup-header img { border-radius: 4px; }
.mockup-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px 12px;
}
.metric {
  padding: 12px; border-radius: 12px; text-align: center;
  background: rgba(248,250,252,0.03); border: 1px solid rgba(248,250,252,0.06);
}
.metric-label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; color: #8A8F98; margin-bottom: 4px; }
.metric-value { display: block; font-size: 1.3rem; font-weight: 800; }
.metric.green .metric-value { color: #22C55E; }
.metric.amber .metric-value { color: #F59E0B; }
.metric.red .metric-value { color: #EF4444; }
.mockup-coaching { flex: 1; padding: 0 12px 12px; }
.coaching-bubble {
  display: flex; gap: 10px; padding: 12px; border-radius: 12px;
  background: rgba(132,204,22,0.06); border: 1px solid rgba(132,204,22,0.12);
}
.coaching-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: #84CC16; color: #0A0A0A; font-size: 0.65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.coaching-bubble p { font-size: 0.7rem; line-height: 1.5; color: #B8BEC8; }
.mockup-nav { display: flex; justify-content: center; gap: 6px; padding: 12px; }
.nav-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(248,250,252,0.15); }
.nav-dot.active { background: #84CC16; width: 18px; border-radius: 3px; }

/* ===== REALISTIC HERO MOCKUP ===== */
.mock-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 16px 4px; font-size: 0.6rem; font-weight: 600; color: #F8FAFC;
}
.mock-statusbar-right { display: flex; gap: 6px; }
.mock-signal, .mock-battery {
  width: 14px; height: 8px; border-radius: 2px; background: rgba(248,250,252,0.4);
}
.mock-battery { width: 18px; background: #4ADE80; }

/* Clips strip */
.mock-clips-strip {
  display: flex; gap: 6px; padding: 8px 12px; overflow: hidden;
}
.mock-clip {
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
  background: rgba(248,250,252,0.06); border: 1px solid rgba(248,250,252,0.08);
  position: relative;
}
.mock-clip.active { border-color: #84CC16; }
.mock-clip-badge {
  position: absolute; bottom: -2px; right: -2px;
  width: 14px; height: 14px; border-radius: 50%; font-size: 0.45rem;
  font-weight: 800; display: flex; align-items: center; justify-content: center;
  color: #0A0A0A;
}
.mock-clip-badge.green { background: #4ADE80; }
.mock-clip-badge.red { background: #EF4444; }
.mock-clip-badge.amber { background: #F59E0B; }

/* Session card */
.mock-session-card {
  margin: 6px 10px; padding: 10px; border-radius: 10px;
  background: rgba(248,250,252,0.03); border: 1px solid rgba(248,250,252,0.06);
}
.mock-session-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 2px;
}
.mock-athlete-name { font-size: 0.7rem; font-weight: 700; color: #F8FAFC; }
.mock-session-time { font-size: 0.55rem; color: #8A8F98; }
.mock-session-jumps {
  font-size: 0.55rem; color: #84CC16; font-weight: 600; margin-bottom: 8px;
}

/* RAG dots row */
.mock-rag-row {
  display: flex; justify-content: space-between; gap: 4px; margin-bottom: 8px;
}
.mock-rag-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.mock-rag-item span { font-size: 0.45rem; color: #8A8F98; text-transform: uppercase; letter-spacing: 0.5px; }
.mock-rag-dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.mock-rag-dot.green { background: #4ADE80; box-shadow: 0 0 6px rgba(74,222,128,0.4); }
.mock-rag-dot.amber { background: #F59E0B; box-shadow: 0 0 6px rgba(245,158,11,0.4); }
.mock-rag-dot.red { background: #EF4444; box-shadow: 0 0 6px rgba(239,68,68,0.4); }
.mock-rag-arrow { font-size: 0.5rem; font-weight: 700; }
.mock-rag-arrow.up { color: #4ADE80; }
.mock-rag-arrow.flat { color: #F59E0B; }
.mock-rag-arrow.down { color: #EF4444; }

/* AI summary in mockup */
.mock-ai-summary {
  padding: 8px; border-radius: 8px; margin-bottom: 8px;
  background: rgba(132,204,22,0.05); border: 1px solid rgba(132,204,22,0.1);
}
.mock-ai-label {
  font-size: 0.5rem; font-weight: 700; color: #84CC16;
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px;
  display: flex; align-items: center; gap: 4px;
}
.mock-mic-icon { font-size: 0.55rem; }
.mock-ai-summary p { font-size: 0.55rem; line-height: 1.5; color: #B8BEC8; }

/* Sparklines */
.mock-sparklines { display: flex; gap: 6px; }
.mock-spark {
  flex: 1; text-align: center; padding: 4px; border-radius: 6px;
  background: rgba(248,250,252,0.02);
}
.mock-spark svg { width: 100%; height: 16px; }
.mock-spark span { font-size: 0.4rem; color: #8A8F98; text-transform: uppercase; letter-spacing: 0.5px; }

/* Bottom nav */
.mock-bottom-nav {
  display: flex; justify-content: space-around; align-items: center;
  padding: 8px 8px 12px; margin-top: auto;
  border-top: 1px solid rgba(248,250,252,0.06);
  background: rgba(10,10,10,0.8);
}
.mock-nav-item {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 0.45rem; color: #8A8F98;
}
.mock-nav-item.active { color: #84CC16; }
.mock-nav-item.record { position: relative; }
.mock-rec-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 3px solid rgba(248,250,252,0.3);
  background: transparent; position: relative;
}
.mock-rec-btn::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%;
  background: rgba(248,250,252,0.15);
}

/* ===== STEP 3 RESULTS MOCKUP ===== */
.mock-results-header {
  font-size: 0.7rem; font-weight: 700; color: #F8FAFC;
  margin-bottom: 8px; display: flex; align-items: center; gap: 8px;
}
.mock-cleared-pill {
  font-size: 0.5rem; padding: 2px 8px; border-radius: 8px;
  background: rgba(74,222,128,0.15); color: #4ADE80; font-weight: 600;
}
.mock-rag-row-sm {
  display: flex; justify-content: center; gap: 8px; margin-bottom: 10px;
}
.mock-rag-sm {
  width: 10px; height: 10px; border-radius: 50%;
}
.mock-rag-sm.green { background: #4ADE80; box-shadow: 0 0 5px rgba(74,222,128,0.4); }
.mock-rag-sm.amber { background: #F59E0B; box-shadow: 0 0 5px rgba(245,158,11,0.4); }
.mock-rag-sm.red { background: #EF4444; box-shadow: 0 0 5px rgba(239,68,68,0.4); }
.mock-coaching-mini {
  display: flex; gap: 6px; padding: 8px; border-radius: 8px; font-size: 0.6rem;
  background: rgba(132,204,22,0.06); border: 1px solid rgba(132,204,22,0.12);
  color: #B8BEC8; line-height: 1.5; margin-bottom: 10px;
}
.mock-coaching-mini strong { color: #84CC16; display: block; margin-bottom: 2px; font-size: 0.55rem; }
.mock-mic-sm { font-size: 0.7rem; color: #84CC16; flex-shrink: 0; }
.mock-save-clip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 12px; border-radius: 8px;
  background: rgba(132,204,22,0.1); border: 1px solid rgba(132,204,22,0.2);
}
.mock-save-clip span:first-child {
  font-size: 0.6rem; font-weight: 700; color: #84CC16; letter-spacing: 1px;
}
.mock-clip-count { font-size: 0.5rem; color: #8A8F98; }

/* ===== STEP 4 PROGRESS V2 MOCKUP ===== */
.mock-progress-v2 { width: 100%; }
.mock-stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; margin-bottom: 10px;
}
.mock-stat-tile {
  text-align: center; padding: 6px 2px; border-radius: 6px;
  background: rgba(248,250,252,0.03); border: 1px solid rgba(248,250,252,0.06);
}
.mock-stat-num { display: block; font-size: 0.75rem; font-weight: 800; color: #F8FAFC; }
.mock-stat-lbl { font-size: 0.4rem; color: #8A8F98; text-transform: uppercase; letter-spacing: 0.5px; }
.mock-metric-chart { margin-bottom: 10px; }
.mock-chart-label-v2 {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.55rem; font-weight: 600; color: #B8BEC8; margin-bottom: 4px;
}
.mock-rag-dot-sm { width: 8px; height: 8px; border-radius: 50%; }
.mock-rag-dot-sm.green { background: #4ADE80; box-shadow: 0 0 4px rgba(74,222,128,0.4); }
.mock-trend-arrow { font-size: 0.55rem; font-weight: 700; }
.mock-trend-arrow.green { color: #4ADE80; }
.mock-zone-chart {
  position: relative; height: 40px; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(248,250,252,0.06);
}
.mock-zone {
  position: absolute; left: 0; right: 0; height: 33.33%;
}
.green-zone { top: 0; background: rgba(74,222,128,0.06); }
.amber-zone { top: 33.33%; background: rgba(245,158,11,0.04); }
.red-zone { top: 66.66%; background: rgba(239,68,68,0.04); }
.mock-line-chart {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.mock-donut-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-radius: 8px;
  background: rgba(248,250,252,0.03); border: 1px solid rgba(248,250,252,0.06);
}
.mock-donut { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.mock-donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.mock-donut-pct {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 800; color: #4ADE80;
}
.mock-donut-info { display: flex; flex-direction: column; gap: 2px; }
.mock-donut-info span { font-size: 0.5rem; color: #8A8F98; }

/* ===== SPORTS BANNER ===== */
.sports-banner { padding: 32px 0; border-top: 1px solid rgba(248,250,252,0.04); border-bottom: 1px solid rgba(248,250,252,0.04); }
.sports-scroll { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.sport-chip {
  padding: 8px 20px; border-radius: 20px; font-size: 0.85rem; font-weight: 500;
  background: rgba(248,250,252,0.04); border: 1px solid rgba(248,250,252,0.08);
  color: #8A8F98; transition: all 0.2s;
}
.sport-chip:hover { color: #84CC16; border-color: rgba(132,204,22,0.3); background: rgba(132,204,22,0.05); }

/* ===== SECTIONS COMMON ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; padding: 5px 14px; border-radius: 16px; font-size: 0.75rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  color: #84CC16; background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.15);
  margin-bottom: 16px;
}
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-header p { color: #8A8F98; font-size: 1.05rem; }

/* ===== FEATURES ===== */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  padding: 32px 28px; border-radius: 20px;
  background: rgba(248,250,252,0.02); border: 1px solid rgba(248,250,252,0.06);
  transition: all 0.3s ease;
}
.feature-card:hover { border-color: rgba(132,204,22,0.2); transform: translateY(-4px); background: rgba(248,250,252,0.03); }
.feature-highlight {
  grid-column: span 3; display: grid; grid-template-columns: auto 1fr auto;
  gap: 20px; align-items: center; padding: 36px 32px;
  background: linear-gradient(135deg, rgba(132,204,22,0.04), rgba(59,130,246,0.03));
  border-color: rgba(132,204,22,0.12);
}
.feature-highlight h3 { grid-column: 1 / -1; }
.feature-highlight p { grid-column: 1 / -1; }
.feature-highlight .feature-tag { grid-column: 1 / -1; }
.feature-icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 20px;
}
.icon-ai { background: rgba(132,204,22,0.1); color: #84CC16; }
.icon-pose { background: rgba(59,130,246,0.1); color: #3B82F6; }
.icon-metrics { background: rgba(34,197,94,0.1); color: #22C55E; }
.icon-watch { background: rgba(168,85,247,0.1); color: #A855F7; }
.icon-voice { background: rgba(245,158,11,0.1); color: #F59E0B; }
.icon-share { background: rgba(236,72,153,0.1); color: #EC4899; }
.icon-lock { background: rgba(99,102,241,0.1); color: #6366F1; }
.icon-meet { background: rgba(14,165,233,0.1); color: #0EA5E9; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 0.9rem; color: #8A8F98; line-height: 1.6; }
.feature-tag {
  display: inline-block; margin-top: 16px; padding: 4px 12px; border-radius: 8px;
  font-size: 0.75rem; font-weight: 600; color: #84CC16;
  background: rgba(132,204,22,0.08); border: 1px solid rgba(132,204,22,0.15);
}

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: rgba(248,250,252,0.01); }
.steps { display: flex; flex-direction: column; gap: 80px; }
.step { display: grid; grid-template-columns: 1fr 250px 1fr; gap: 40px; align-items: center; }
.step-reverse .step-phone { order: 0; }
.step-reverse .step-content { order: -1; text-align: right; }
.step-number {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; border-radius: 50%; background: #84CC16; color: #0A0A0A;
  font-weight: 800; font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.step-phone { position: relative; display: flex; justify-content: center; }
.phone-frame-sm {
  width: 220px; border-radius: 30px; padding: 10px;
  background: linear-gradient(145deg, #1a1a1a, #111);
  border: 2px solid rgba(248,250,252,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.phone-screen-sm { border-radius: 22px; background: #111; overflow: hidden; aspect-ratio: 9/16; }
.step-content h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.step-content p { font-size: 0.95rem; color: #8A8F98; }

/* Mock screens */
.mock-step-screen { height: 100%; display: flex; align-items: center; justify-content: center; padding: 20px; }
.mock-camera-view {
  width: 100%; height: 100%; border-radius: 12px; position: relative;
  background: linear-gradient(135deg, #1a2a1a, #0a150a);
  display: flex; align-items: center; justify-content: center;
}
.mock-rec-dot {
  position: absolute; top: 16px; left: 16px; width: 8px; height: 8px;
  border-radius: 50%; background: #EF4444;
  animation: pulse-rec 1.5s infinite;
}
@keyframes pulse-rec { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.mock-rec-text { position: absolute; top: 14px; left: 30px; font-size: 0.65rem; font-weight: 700; color: #EF4444; letter-spacing: 1px; }
.mock-crosshair { width: 40px; height: 40px; border: 2px solid rgba(132,204,22,0.5); border-radius: 50%; }
.mock-sport-label {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  padding: 4px 12px; border-radius: 8px; font-size: 0.65rem; font-weight: 600;
  background: rgba(132,204,22,0.15); color: #84CC16;
}
.mock-analyzing { text-align: center; position: relative; width: 100%; }
.mock-spinner {
  width: 40px; height: 40px; border: 3px solid rgba(132,204,22,0.15);
  border-top-color: #84CC16; border-radius: 50%; margin: 0 auto 12px;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.mock-analyzing span { font-size: 0.75rem; color: #84CC16; font-weight: 600; display: block; margin-bottom: 12px; }
.mock-progress-bar { width: 100%; height: 4px; border-radius: 2px; background: rgba(248,250,252,0.06); overflow: hidden; }
.mock-progress-fill { width: 65%; height: 100%; background: #84CC16; border-radius: 2px; animation: progress 2s ease-in-out infinite; }
@keyframes progress { 0% { width: 20%; } 50% { width: 80%; } 100% { width: 20%; } }
.mock-pose-dots { position: absolute; inset: 0; }
.pose-dot {
  position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: #84CC16; box-shadow: 0 0 6px rgba(132,204,22,0.5);
}
.mock-results { width: 100%; }
.mock-metric-row {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  border-radius: 8px; margin-bottom: 6px; font-size: 0.75rem; font-weight: 500;
  background: rgba(248,250,252,0.03);
}
.mock-dot { width: 8px; height: 8px; border-radius: 50%; }
.mock-dot.green { background: #22C55E; }
.mock-dot.amber { background: #F59E0B; }
.mock-dot.red { background: #EF4444; }
.mock-score { margin-left: auto; font-weight: 700; color: #F8FAFC; }
.mock-coaching-mini {
  margin-top: 12px; padding: 10px; border-radius: 8px; font-size: 0.65rem;
  background: rgba(132,204,22,0.06); border: 1px solid rgba(132,204,22,0.12);
  color: #B8BEC8; line-height: 1.5;
}
.mock-coaching-mini strong { color: #84CC16; display: block; margin-bottom: 4px; font-size: 0.6rem; }
.mock-progress { width: 100%; text-align: center; }
.mock-chart { display: flex; align-items: flex-end; justify-content: center; gap: 8px; height: 100px; margin-bottom: 12px; }
.chart-bar { width: 24px; border-radius: 4px 4px 0 0; background: rgba(132,204,22,0.2); transition: all 0.3s; }
.chart-bar.accent { background: #84CC16; }
.mock-chart-label { font-size: 0.7rem; color: #8A8F98; }
.mock-trend { margin-top: 8px; font-size: 0.75rem; font-weight: 700; color: #22C55E; }

/* ===== PRICING ===== */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  position: relative; padding: 36px 28px; border-radius: 20px;
  background: rgba(248,250,252,0.02); border: 1px solid rgba(248,250,252,0.06);
  transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.price-features { margin-bottom: 28px; flex: 1; }
.price-card .btn-block { margin-top: auto; }
.price-card:hover { transform: translateY(-4px); }
.price-card-popular {
  border-color: rgba(132,204,22,0.3);
  background: linear-gradient(135deg, rgba(132,204,22,0.04), rgba(132,204,22,0.01));
}
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 4px 16px; border-radius: 12px; font-size: 0.75rem; font-weight: 700;
  background: #84CC16; color: #0A0A0A; white-space: nowrap;
}
.price-card-unlimited {
  border-color: rgba(59,130,246,0.2);
  background: linear-gradient(135deg, rgba(59,130,246,0.04), rgba(132,204,22,0.02));
  overflow: visible;
}
.unlimited-glow {
  position: absolute; top: -100px; right: -100px; width: 250px; height: 250px;
  border-radius: 50%; background: radial-gradient(circle, rgba(59,130,246,0.08), transparent);
  pointer-events: none;
}
.price-tier { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #8A8F98; margin-bottom: 8px; }
.price-amount { font-size: 2.2rem; font-weight: 800; color: #F8FAFC; margin-bottom: 8px; }
.price-amount span { font-size: 0.9rem; font-weight: 500; color: #8A8F98; }
.price-desc { font-size: 0.9rem; color: #8A8F98; margin-bottom: 24px; }
.price-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(248,250,252,0.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features .check { color: #22C55E; font-weight: 700; }
.price-features .check.accent { color: #84CC16; }
.price-features .x { color: #555; }
.price-features .muted { color: #555; }

/* ===== REFERRAL SECTION ===== */
.referral-section { padding: 80px 0; }
.referral-card {
  padding: 48px 40px; border-radius: 24px;
  background: linear-gradient(135deg, rgba(132,204,22,0.04), rgba(59,130,246,0.03));
  border: 1px solid rgba(132,204,22,0.12);
}
.referral-content { max-width: 800px; margin: 0 auto; text-align: center; }
.referral-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 16px; }
.referral-content > p { font-size: 1.05rem; color: #8A8F98; line-height: 1.7; margin-bottom: 36px; }
.referral-content > p strong { color: #84CC16; }
.referral-steps { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.ref-step {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 16px 20px; border-radius: 14px;
  background: rgba(248,250,252,0.03); border: 1px solid rgba(248,250,252,0.06);
  min-width: 140px;
}
.ref-step-icon { color: #84CC16; }
.ref-step span { font-size: 0.8rem; font-weight: 500; color: #B8BEC8; text-align: center; }
.ref-arrow { color: #84CC16; font-size: 1.2rem; font-weight: 700; }

/* ===== PRICING TOGGLE ===== */
.pricing-toggle {
  display: flex; gap: 4px; padding: 3px; border-radius: 10px;
  background: rgba(248,250,252,0.04); border: 1px solid rgba(248,250,252,0.08);
  margin-bottom: 12px; width: fit-content;
}
.toggle-btn {
  padding: 6px 14px; border-radius: 8px; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.8rem; font-weight: 600;
  background: transparent; color: #8A8F98; transition: all 0.2s;
  display: flex; align-items: center; gap: 6px;
}
.toggle-btn.active { background: #84CC16; color: #0A0A0A; }
.toggle-btn:hover:not(.active) { color: #F8FAFC; }
.save-badge {
  font-size: 0.65rem; padding: 2px 6px; border-radius: 4px;
  background: rgba(132,204,22,0.15); color: #84CC16;
}
.toggle-btn.active .save-badge { background: rgba(0,0,0,0.15); color: #0A0A0A; }
.price-yearly-note {
  font-size: 0.8rem; color: #84CC16; font-weight: 500; margin-bottom: 4px;
  line-height: 1.2;
}
.pricing-toggle-spacer {
  height: 37px; margin-bottom: 12px;
}
.price-yearly-note-spacer {
  font-size: 0.8rem; line-height: 1.2; margin-bottom: 4px;
  visibility: hidden;
}
.price-yearly-note-spacer::after { content: '\00a0'; }

/* ===== WHY APEXTRACK ===== */
.why-apex { padding: 100px 0; background: rgba(248,250,252,0.01); }
.pros-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-card {
  padding: 32px 28px; border-radius: 20px;
  background: rgba(248,250,252,0.02); border: 1px solid rgba(248,250,252,0.06);
  transition: all 0.3s ease;
}
.pro-card:hover { border-color: rgba(132,204,22,0.2); transform: translateY(-4px); }
.pro-number {
  font-size: 2rem; font-weight: 900; color: rgba(132,204,22,0.15);
  margin-bottom: 12px; font-variant-numeric: tabular-nums;
}
.pro-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.pro-card p { font-size: 0.9rem; color: #8A8F98; line-height: 1.6; }

/* ===== DOWNLOAD CTA ===== */
.download-cta { padding: 100px 0; }
.cta-content {
  text-align: center; padding: 60px 40px; border-radius: 28px;
  background: #131613;
  border: 1px solid rgba(132,204,22,0.15);
  position: relative;
}
.cta-logo { margin: 0 auto 24px; border-radius: 16px; }
.cta-content h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 12px; }
.cta-content p { font-size: 1.05rem; color: #8A8F98; max-width: 480px; margin: 0 auto 32px; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.store-badge {
  padding: 12px 24px; border-radius: 14px;
  transition: background 0.25s ease, border-color 0.25s ease;
  background: rgba(248,250,252,0.06); border: 1px solid rgba(248,250,252,0.1);
}
.store-badge:hover { background: rgba(248,250,252,0.1); border-color: rgba(248,250,252,0.2); }
.store-badge-content { display: flex; align-items: center; gap: 12px; color: #F8FAFC; }
.store-badge-content small { display: block; font-size: 0.65rem; color: #8A8F98; text-align: left; }
.store-badge-content strong { display: block; font-size: 1rem; text-align: left; }

/* ===== FOOTER ===== */
.footer { padding: 40px 0; border-top: 1px solid rgba(248,250,252,0.06); }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: #F8FAFC; }
.footer-brand img { border-radius: 6px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.85rem; color: #8A8F98; transition: color 0.2s; }
.footer-links a:hover { color: #F8FAFC; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(248,250,252,0.04); }
.footer-bottom p { font-size: 0.8rem; color: #555; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: #555; transition: color 0.2s; }
.footer-legal a:hover { color: #8A8F98; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.8rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-highlight { grid-column: span 2; }
  .step { grid-template-columns: 1fr 200px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .word-cloud span { font-size: 9px !important; opacity: 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(10,10,10,0.98);
    padding: 20px 24px; gap: 16px; border-bottom: 1px solid rgba(248,250,252,0.06);
  }

  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-logo-large { justify-content: center; }
  .hero-logo-large img { width: 80px; height: 80px; }
  .hero-logo-text { font-size: 2.5rem; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }

  .section-header h2 { font-size: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-highlight { grid-column: span 1; }

  .step { grid-template-columns: 1fr; gap: 24px; }
  .step-phone { order: -1 !important; }
  .step-content { text-align: center !important; }
  .step-number { position: relative; top: auto; left: auto; transform: none; margin: 0 auto 12px; }

  .referral-steps { flex-direction: column; }
  .ref-arrow { transform: rotate(90deg); }
  .referral-card { padding: 32px 20px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pros-grid { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
