:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --bg-card: #141414;
  --fg: #F5F5F0;
  --fg-muted: #888888;
  --accent: #00FF88;
  --accent-dim: rgba(0, 255, 136, 0.12);
  --border: rgba(255,255,255,0.08);
}

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

html { scroll-behavior: smooth; }

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

/* Hero */
.hero {
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat { display: flex; align-items: baseline; gap: 12px; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
}

/* Agent preview */
.agent-preview {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.agent-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-family: 'Syne', sans-serif;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(0,255,136,0.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  70% { box-shadow: 0 0 0 8px rgba(0,255,136,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,136,0); }
}
.agent-log { display: flex; flex-direction: column; gap: 14px; }
.log-entry {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
}
.log-time {
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  min-width: 52px;
  padding-top: 2px;
}
.log-text { color: var(--fg); }
.log-done::before {
  content: '✓';
  color: var(--accent);
  margin-right: 2px;
  font-size: 11px;
}

/* Manifesto */
.manifesto { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 56px;
}
.manifesto-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.col-icon { margin-bottom: 20px; }
.col-icon-new { opacity: 0.7; }
.manifesto-col h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
}
.manifesto-col p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 14px; }
.cost-tag { font-size: 14px; color: var(--fg-muted); }
.cost-tag strong { color: var(--fg); }

/* Features */
.features { padding: 80px 48px; border-bottom: 1px solid var(--border); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

/* Outcomes / Timeline */
.outcomes { padding: 80px 48px; border-bottom: 1px solid var(--border); background: var(--bg-2); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-header { margin-bottom: 56px; }
.outcomes-sub { font-size: 20px; color: var(--fg-muted); margin-top: 8px; }
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-dot {
  display: flex;
  align-items: flex-start;
  padding-top: 6px;
}
.timeline-dot::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}
.timeline-time {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding-top: 4px;
}
.timeline-content h4 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.timeline-content p { font-size: 15px; color: var(--fg-muted); line-height: 1.65; }

/* Closing */
.closing { padding: 96px 48px; }
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
}
.closing-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 32px;
}
.closing-body { font-size: 17px; color: var(--fg-muted); max-width: 600px; line-height: 1.7; }

/* Footer */
.footer { padding: 48px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-top: 4px; }
.footer-note { font-size: 13px; color: var(--fg-muted); }

/* Responsive */
@media (max-width: 768px) {
  .hero, .manifesto, .features, .outcomes, .closing, .footer { padding: 64px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto-columns { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}