:root {
  --bg: #0d1117;
  --surface: #161b22;
  --border: #21262d;
  --text: #e6edf3;
  --text-dim: #8b949e;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.15);
  --success: #3fb950;
  --terminal-bg: #0a0e14;
}

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

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

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Nav */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
}

/* Hero */
.hero {
  padding: 80px 0 100px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-dim);
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {}
.stat-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--text-dim);
}

/* Terminal */
.terminal {
  background: var(--terminal-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.terminal-header {
  display: flex;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }
.terminal-body {
  padding: 20px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 13px;
  line-height: 1.7;
}
.t-line { color: #e6edf3; }
.t-dim { color: #484f58; }
.t-success { color: var(--success); }
.t-highlight { color: var(--accent); }

/* Section shared */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 48px;
}

/* Work */
.work {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 4px;
  min-width: 40px;
}
.step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 480px;
}

/* Benefits */
.benefits {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.benefit {}
.benefit-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.benefit h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.benefit p {
  color: var(--text-dim);
  font-size: 15px;
}

/* Close */
.close {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.close-statement {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.4;
}
.close-sub {
  color: var(--text-dim);
  font-size: 16px;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-copy {
  color: var(--text-dim);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { gap: 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .step { gap: 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 70px; }
  .hero-stats { flex-direction: column; gap: 16px; }
}
