:root {
  --bg: #0C0C0E;
  --surface: #161618;
  --surface2: #1E1E21;
  --accent: #F59E0B;
  --accent-dim: #B47600;
  --text: #FAFAF9;
  --text-muted: #A1A1AA;
  --text-dim: #71717A;
  --border: #27272A;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .nav-logo, .hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

/* NAV */
nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: var(--text);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-offer {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.phone-mockup {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 16px;
  width: 280px;
}
.phone-screen {
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
}
.video-placeholder {
  flex: 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.play-icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #000;
  padding-left: 4px;
}
.video-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.metrics-overlay {
  background: var(--surface);
  padding: 16px;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--border);
}
.metric { display: flex; flex-direction: column; align-items: center; }
.metric-val { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--accent); }
.metric-key { font-size: 10px; color: var(--text-dim); margin-top: 2px; }

/* STATS */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 48px;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.stat { text-align: center; flex: 1; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}
.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  display: block;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* WHAT */
.what {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.what-header {
  margin-bottom: 48px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.what h2, .how h2, .pricing h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.what-card {
  background: var(--bg);
  padding: 32px;
}
.what-card-primary {
  background: var(--surface);
}
.what-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}
.what-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}
.what-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* HOW */
.how {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 24px;
}
.how-header { margin-bottom: 48px; }
.step-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.step-arrow {
  font-size: 24px;
  color: var(--accent);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step { padding: 0 16px; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Syne', sans-serif;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }

/* PRICING */
.pricing {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-header { margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-tier {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.price-tier-featured {
  border-color: var(--accent);
  background: var(--surface);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  display: block;
  margin-bottom: 24px;
}
.tier-period { font-size: 16px; font-weight: 400; color: var(--text-muted); }
.tier-features { list-style: none; }
.tier-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.tier-features li:last-child { border-bottom: none; }

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.manifesto-sub { font-size: 17px; color: var(--text-muted); max-width: 520px; }

/* FOOTER */
footer {
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
}
.footer-copy { font-size: 13px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 48px; gap: 40px; }
  .hero-visual { justify-content: flex-start; }
  .stats-inner { flex-direction: column; gap: 24px; }
  .stat-divider { display: none; }
  .what-grid { grid-template-columns: 1fr 1fr; }
  .step-row { grid-template-columns: 1fr; gap: 24px; }
  .step-arrow { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  nav { padding: 20px 24px; }
}
@media (max-width: 600px) {
  .what-grid { grid-template-columns: 1fr; }
  .hero-headline { letter-spacing: -1px; }
}