:root {
  --bg: #080c10;
  --surface: #0f1419;
  --surface-2: #161d24;
  --fg: #e8f0fb;
  --fg-muted: #7a8999;
  --accent: #00e5a0;
  --accent-dim: rgba(0,229,160,0.12);
  --amber: #f5a623;
  --amber-dim: rgba(245,166,35,0.12);
  --border: rgba(255,255,255,0.06);
  --terminal-bg: #050709;
  --terminal-green: #00e5a0;
  --terminal-cyan: #00b8d4;
  --terminal-muted: #3d4f5e;
  --terminal-yellow: #f5c842;
  --terminal-red: #ff5f57;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--bg);
  background: var(--accent);
  padding: 4px 8px;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.3px;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  font-family: 'DM Sans', sans-serif;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 64px 100px;
  max-width: 1300px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,229,160,0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.0;
  letter-spacing: -2px;
  color: var(--fg);
}

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

/* Terminal */
.hero-terminal {
  background: var(--terminal-bg);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,229,160,0.08);
}

.terminal-bar {
  background: var(--surface);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.t-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.t-red { background: #ff5f57; }
.t-yellow { background: #f5c842; }
.t-green { background: #00e676; }

.t-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--fg-muted);
  margin-left: 8px;
}

.terminal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'DM Sans', monospace;
  font-size: 13px;
  min-height: 300px;
}

.t-line { color: var(--terminal-muted); }
.t-time { color: var(--fg-muted); }
.t-success { color: var(--terminal-green); }
.t-cyan { color: var(--terminal-cyan); }
.t-muted { color: var(--terminal-muted); font-style: italic; }

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  animation: blink 1.2s step-end infinite;
  margin-top: 4px;
  border-radius: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Stats */
.stats {
  padding: 0 64px 100px;
  max-width: 1300px;
  margin: 0 auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stat {
  background: var(--surface);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 48px;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
}

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

/* How */
.how {
  padding: 100px 64px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--fg);
  max-width: 640px;
  margin-bottom: 72px;
}

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

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 52px;
  color: var(--accent-dim);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
}

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

/* Features */
.features {
  padding: 100px 64px;
  background: var(--surface);
}

.features .section-title {
  max-width: 700px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}

.feature {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: var(--accent);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: 10px;
}

.feature h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--fg);
}

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

/* Manifesto */
.manifesto {
  padding: 120px 64px;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 32px;
  max-width: 900px;
}

.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  padding-left: 35px;
  max-width: 700px;
}

/* Closing */
.closing {
  padding: 120px 64px;
  background: var(--surface);
  text-align: center;
}

.closing-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.closing-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--fg);
}

.closing-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
}

.closing-vision {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent);
  line-height: 1.4;
}

/* Footer */
.footer {
  padding: 60px 64px 40px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--fg-muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 40px 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 60px; }
  .stats { padding: 0 24px 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .how { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}