:root {
  --bg: #0f0f1a;
  --bg-alt: #13131f;
  --fg: #f0ede8;
  --fg-muted: #8a8a9a;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --border: rgba(240, 237, 232, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* 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: 12px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* HERO */
.hero {
  padding: 80px 48px 60px;
}
.hero-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 420px;
}

/* FUNNEL VIZ */
.funnel-viz {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.fv-stage {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  align-items: center;
  gap: 12px;
}
.fv-label {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--fg-muted);
  font-weight: 500;
}
.fv-bar {
  height: 12px;
  border-radius: 6px;
  background: var(--accent-dim);
  position: relative;
  overflow: hidden;
}
.fv-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 6px;
  background: var(--accent);
}
.fv-awareness .fv-bar::after { width: 100%; }
.fv-interest .fv-bar::after { width: 55%; }
.fv-decision .fv-bar::after { width: 25%; }
.fv-action .fv-bar::after { width: 10%; }
.fv-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: right;
}
.fv-count-accent { color: var(--accent); }
.fv-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.fv-lines svg {
  width: 100%;
  height: 100%;
}
.fv-cvr {
  position: absolute;
  bottom: 28px;
  right: 32px;
  text-align: right;
}
.cvr-label {
  display: block;
  font-size: 10px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.cvr-value {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 24px;
}
.manifesto-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 48px;
}
.manifesto-stats {
  display: flex;
  gap: 64px;
}
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.stat-desc {
  font-size: 14px;
  color: var(--fg-muted);
}

/* FEATURES */
.features { padding: 80px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 56px;
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-alt);
  padding: 40px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #1a1a28; }
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROCESS */
.process {
  background: var(--bg-alt);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-step { padding: 0 16px; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.step-connector {
  width: 48px;
  height: 1px;
  background: var(--border);
  margin-top: 28px;
}

/* NICHES */
.niches { padding: 80px 48px; }
.niches-inner { max-width: 1200px; margin: 0 auto; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.niche-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}
.niche-card:hover { border-color: var(--accent); }
.niche-icon { color: var(--accent); margin-bottom: 20px; }
.niche-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 12px;
}
.niche-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 16px;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--accent);
  margin-right: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links span { font-size: 13px; color: var(--fg-muted); cursor: pointer; }
.footer-links span:hover { color: var(--fg); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .manifesto-stats { flex-direction: column; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-connector { display: none; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero, .manifesto, .features, .process, .niches, .closing, .footer, .nav { padding-left: 24px; padding-right: 24px; }
  .niches-grid { grid-template-columns: 1fr; }
}