:root {
  --bg: #0D0D0F;
  --surface: #161619;
  --surface-2: #1E1E22;
  --border: #2A2A30;
  --amber: #F5A623;
  --amber-dim: #7A5212;
  --text: #EDECEA;
  --text-dim: #7A7875;
  --green: #4ADE80;
  --red: #F87171;
  --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(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--amber);
}
.nav-tagline {
  font-size: 14px;
  color: var(--text-dim);
}

/* ── Section label ── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 24px;
}

/* ── Hero ── */
.hero {
  padding: 80px 48px 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.hero-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  color: var(--text);
  letter-spacing: -2px;
}
.hero-right { padding-top: 8px; }
.hero-lede {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
}
.stat-label { font-size: 13px; color: var(--text-dim); }

/* ── Terminal ── */
.hero-terminal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 560px;
}
.terminal-bar {
  background: var(--surface-2);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.dot:nth-child(1) { background: #F87171; }
.dot:nth-child(2) { background: #FACC15; }
.dot:nth-child(3) { background: #4ADE80; }
.terminal-body { padding: 16px 20px; font-size: 13px; line-height: 1.8; }
.terminal-line { display: flex; gap: 8px; }
.prompt { color: var(--amber); font-weight: 500; }
.indent { padding-left: 20px; color: var(--text-dim); }
.green { color: var(--green); }
.mt { margin-top: 6px; }
.cursor { display: inline-block; width: 8px; height: 15px; background: var(--amber); vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Pipeline ── */
.pipeline { padding: 80px 48px; border-top: 1px solid var(--border); }
.pipeline-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.pipeline-text h2, .ops-text h2, .delivery-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.pipeline-text p, .ops-text p, .delivery-text p {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
}
.funnel { display: flex; flex-direction: column; gap: 2px; }
.funnel-stage {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.funnel-stage.highlight { border-color: var(--amber-dim); }
.stage-label { font-weight: 500; font-size: 14px; }
.stage-desc { font-size: 12px; color: var(--text-dim); }

/* ── Ops ── */
.ops { padding: 80px 48px; border-top: 1px solid var(--border); }
.ops-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.client-grid { display: flex; flex-direction: column; gap: 8px; }
.client-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.client-name { font-size: 13px; font-weight: 500; margin-bottom: 2px; }
.client-meta { font-size: 11px; color: var(--text-dim); margin-bottom: 10px; }
.client-bar { height: 3px; background: var(--surface-2); border-radius: 2px; margin-bottom: 6px; }
.bar-fill { height: 100%; background: var(--amber); border-radius: 2px; }
.client-metric { font-size: 11px; color: var(--text-dim); }

/* ── Delivery ── */
.delivery { padding: 80px 48px; border-top: 1px solid var(--border); }
.delivery-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.deploy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.deploy-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.deploy-name { font-size: 14px; font-weight: 500; font-family: monospace; }
.deploy-badge { font-size: 11px; background: var(--amber-dim); color: var(--amber); padding: 2px 8px; border-radius: 4px; }
.deploy-status { font-size: 13px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.deploy-dot { width: 8px; height: 8px; border-radius: 50%; }
.deploy-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.deploy-metrics { display: flex; gap: 20px; }
.metric-item { display: flex; flex-direction: column; gap: 2px; }
.metric-val { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--text); }
.metric-lbl { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Manifesto ── */
.manifesto {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
}
.manifesto-inner { max-width: 640px; }
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 32px;
  font-style: italic;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── Footer ── */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 640px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--amber);
  margin-bottom: 8px;
}
.footer-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 32px; }
.footer-bottom { font-size: 12px; color: var(--text-dim); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero, .pipeline, .ops, .delivery, .manifesto, .footer { padding: 48px 24px; }
  .hero-grid, .pipeline-layout, .ops-layout, .delivery-layout { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .nav { padding: 16px 24px; }
  .funnel-stage { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 44px; letter-spacing: -1px; }
  .hero-stats { flex-direction: column; gap: 16px; }
}