/* Base */
:root {
  --bg: #080808;
  --surface: #111111;
  --border: #1e1e1e;
  --lime: #AAFF00;
  --lime-dim: rgba(170, 255, 0, 0.12);
  --text: #e8e8e8;
  --muted: #666;
  --red: #ff5f57;
  --yellow: #febc2e;
  --green: #28c840;
}

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

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

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.08em;
  color: var(--lime);
}
.nav-tag {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 96px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--lime-dim);
  color: var(--lime);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(170,255,0,0.2);
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: #999;
  max-width: 440px;
  line-height: 1.65;
}

/* Terminal */
.terminal {
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(170,255,0,0.06);
}
.terminal-bar {
  background: #161616;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dot.red { background: var(--red); }
.terminal-dot.yellow { background: var(--yellow); }
.terminal-dot.green { background: var(--green); }
.terminal-title {
  font-size: 12px;
  color: var(--muted);
  margin-left: 8px;
  font-family: 'Barlow', monospace;
}
.terminal-body {
  padding: 24px;
  font-family: 'Barlow', monospace;
  font-size: 13.5px;
  line-height: 1.7;
}
.t-line { display: flex; gap: 12px; }
.t-prompt { color: var(--lime); font-weight: 600; }
.t-cmd { color: var(--text); }
.t-out { color: #888; padding-left: 24px; }
.t-time { color: #444; font-size: 12px; min-width: 48px; }
.t-status { color: #888; }
.t-done { color: var(--lime); font-weight: 600; }
.t-muted { color: #555; padding-left: 24px; }
.t-spacer { height: 16px; }

/* Features */
.features {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.features-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 560px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feat {
  padding: 40px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
}
.feat-icon {
  color: var(--lime);
  margin-bottom: 20px;
}
.feat-title {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.feat-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

/* How It Works */
.howitworks {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.hiw-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}
.hiw-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--text);
  max-width: 480px;
  margin-bottom: 64px;
}
.hiw-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.step {
  flex: 1;
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.step-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--lime);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}
.step-arrow {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 24px;
  opacity: 0.4;
}
.hiw-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.outcome-stat { text-align: center; }
.outcome-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 96px;
  color: var(--lime);
  line-height: 1;
  display: block;
}
.outcome-label {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
}

/* Manifesto */
.manifesto {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.manifesto-text {
  font-size: clamp(20px, 2.5vw, 28px);
  color: #999;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.footer-links {
  font-size: 12px;
  color: #444;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
.footer-sep { color: #222; }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 48px 24px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .outcomes-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
}