/* === BASE === */
:root {
  --bg: #0D0D0D;
  --surface: #141414;
  --surface2: #1E1E1E;
  --border: #2A2A2A;
  --text: #F5F0E8;
  --text-muted: #8A8A8A;
  --accent: #FF5722;
  --accent-dim: rgba(255, 87, 34, 0.12);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--text);
}
.tagline {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === HERO === */
.hero {
  padding: 140px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  background: var(--accent-dim);
  border: 1px solid rgba(255, 87, 34, 0.25);
  color: var(--accent);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* === VIDEO FRAME === */
.video-frame {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.frame-header {
  background: var(--surface2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FEBC2E; }
.dot.green { background: #28C840; }
.frame-title { font-size: 12px; color: var(--text-muted); margin-left: 8px; font-family: var(--font-body); }
.frame-body {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
}
.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.wave-bar {
  flex: 1;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.7;
  height: 100%;
}
.wave-bar:nth-child(1) { height: 30%; }
.wave-bar:nth-child(2) { height: 70%; }
.wave-bar:nth-child(3) { height: 50%; }
.wave-bar:nth-child(4) { height: 90%; }
.wave-bar:nth-child(5) { height: 60%; }
.wave-bar:nth-child(6) { height: 80%; }
.wave-bar:nth-child(7) { height: 40%; }
.wave-bar:nth-child(8) { height: 65%; }
.wave-bar:nth-child(9) { height: 85%; }
.wave-bar:nth-child(10) { height: 45%; }
.wave-bar:nth-child(11) { height: 55%; }
.wave-bar:nth-child(12) { height: 35%; }
.video-meta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vm-title { font-size: 12px; color: var(--text); font-weight: 500; }
.vm-tag { font-size: 11px; color: var(--accent); }

/* === SHARED SECTIONS === */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 56px;
}

/* === HOW IT WORKS === */
.howitworks { padding: 80px 0; border-top: 1px solid var(--border); }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; color: var(--text); }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 48px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
}

/* === FEATURES === */
.features { padding: 80px 0; border-top: 1px solid var(--border); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* === OUTCOMES === */
.outcomes { padding: 80px 0; border-top: 1px solid var(--border); }
.outcomes-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.outcome { padding: 0 48px; text-align: center; }
.outcome-divider { width: 1px; height: 80px; background: var(--border); }
.outcome-stat {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-label { font-size: 14px; color: var(--text-muted); max-width: 200px; line-height: 1.5; }

/* === CLOSING === */
.closing { padding: 100px 0; border-top: 1px solid var(--border); }
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 24px;
  text-align: center;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* === FOOTER === */
.footer { border-top: 1px solid var(--border); padding: 40px 0; }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo { font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; }
.footer-desc { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.footer-copy { font-size: 12px; color: var(--text-muted); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .steps { flex-direction: column; gap: 16px; }
  .step-connector { width: 2px; height: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes-grid { flex-direction: column; gap: 32px; }
  .outcome-divider { width: 80px; height: 1px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .navbar-inner { padding: 12px 20px; }
  .hero { padding: 120px 20px 60px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 48px; }
  .section-title { font-size: 36px; }
  .outcome-stat { font-size: 56px; }
}
