:root {
  --bg: #0A0A0F;
  --surface: #111118;
  --surface-2: #1a1a24;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #00E676;
  --accent-dim: #00E67622;
  --accent-glow: #00E67633;
  --border: #ffffff0f;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* NAV */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 80px);
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.hero-stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: -1px;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* TERMINAL */
.terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 60px var(--accent-glow);
  font-family: 'Courier New', monospace;
  font-size: 13px;
}
.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.terminal-title {
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
}
.terminal-body {
  padding: 20px 24px;
}
.t-line {
  color: var(--fg-muted);
  line-height: 1.8;
}
.t-dim { color: #555570; }
.t-bright { color: var(--fg); }
.t-green { color: var(--accent); }


/* PROOF */
.proof {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 48px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.proof-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--fg);
  margin-bottom: 48px;
  text-align: center;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.proof-card {
  background: var(--surface);
  padding: 32px 28px;
}
.proof-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -1.5px;
  margin-bottom: 8px;
}
.proof-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.proof-pitch {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--fg);
  font-weight: 500;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* SECTION SHARED */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 48px;
}

/* FEATURES */
.features {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 36px 32px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PLAYBOOK */
.playbook {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 48px;
}
.playbook-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.playbook .section-headline {
  margin-bottom: 64px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--accent);
  opacity: 0.2;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
  max-width: 680px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 640px;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 4px;
}
.footer-desc {
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 360px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 48px;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof, .features, .playbook, .manifesto {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-stats {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .proof-grid, .steps {
    grid-template-columns: 1fr;
  }
  .nav {
    padding: 16px 24px;
  }
}