:root {
  --bg: #060e0e;
  --bg-card: #0a1616;
  --fg: #e8f4f4;
  --fg-muted: #7a9e9e;
  --accent: #d4ff00;
  --accent-dim: rgba(212,255,0,0.12);
  --teal: #0d3d3d;
  --teal-light: #124545;
  --border: rgba(212,255,0,0.15);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}

.topbar-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.topbar-tag {
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 96px 48px 80px;
  max-width: 760px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
}

/* ── PIPELINE ── */
.pipeline-section {
  padding: 64px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(13,61,61,0.2) 100%);
}

.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.pipeline-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 8px;
}

.pipeline-stage {
  flex: 0 0 180px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
}

.stage-agent {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.stage-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.stage-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.stage-desc {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pipeline-arrow {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  padding-top: 24px;
}

.pipeline-footnote {
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── FEATURES ── */
.features-section {
  padding: 80px 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 32px 28px;
}

.feature-icon {
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

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

/* ── OUTCOMES ── */
.outcomes-section {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.outcomes-header {
  margin-bottom: 56px;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-top: 12px;
}

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

.outcome-block {
  background: var(--bg-card);
  padding: 40px 32px;
}

.outcome-stat {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}

.outcome-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing-section {
  padding: 96px 48px 80px;
  text-align: center;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin: 0 auto;
}

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

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .topbar { padding: 16px 24px; }
  .hero { padding: 60px 24px 48px; }
  .pipeline-section { padding: 48px 24px; }
  .features-section { padding: 48px 24px; }
  .outcomes-section { padding: 48px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing-section { padding: 64px 24px 48px; }
  footer { padding: 32px 24px; }
  .pipeline-track { flex-wrap: wrap; gap: 16px; }
  .pipeline-arrow { display: none; }
  .pipeline-stage { flex: 0 0 calc(50% - 8px); }
}

@media (max-width: 480px) {
  .pipeline-stage { flex: 0 0 100%; }
}