:root {
  --bg: #0B1120;
  --bg-surface: #0f1929;
  --fg: #e8eaf0;
  --fg-muted: #8892a4;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --ok: #22c55e;
  --warn: #f59e0b;
  --border: rgba(136, 146, 164, 0.15);
  --terminal-bg: #060c17;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mono-text { font-family: 'IBM Plex Mono', monospace; }

/* HERO */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--ok);
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
}

.lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

.lede em { color: var(--fg); font-style: normal; font-weight: 500; }

/* TERMINAL */
.hero-terminal {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

.terminal-header {
  background: var(--bg-surface);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  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; }

.terminal-title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 20px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
}

.terminal-line { color: var(--fg); }
.terminal-line.dim { color: var(--fg-muted); }
.prompt { color: var(--accent); font-weight: 500; }
.ok { color: var(--ok); }
.warn { color: var(--warn); }

.terminal-spacer { height: 12px; }

.warn-line {
  color: var(--warn);
  background: var(--accent-dim);
  padding: 6px 10px;
  border-radius: 4px;
  border-left: 3px solid var(--warn);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.how-it-works h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 60px;
  max-width: 400px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-number {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* WHY IT MATTERS */
.why-matters {
  background: var(--bg-surface);
  padding: 100px 40px;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 16px;
}

cite {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 28px;
  font-style: normal;
}

.point {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  align-items: flex-start;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.point strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.point p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 40px 120px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.closing-inner { max-width: 680px; }

.closing h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.closing-vision {
  font-size: 18px !important;
  color: var(--fg) !important;
  font-weight: 500;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-links {
  font-size: 14px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-terminal { order: -1; }
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .how-it-works, .closing { padding: 70px 24px; }
  .why-matters { padding: 70px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}