/* Dispatch — Warm editorial AI aesthetic */

:root {
  --bg: #FAF8F5;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #F59E0B;
  --accent-light: rgba(245, 158, 11, 0.12);
  --border: rgba(26, 26, 26, 0.08);
  --surface: #FFFFFF;
  --dash-bg: #111111;
  --dash-fg: #E8E4DC;
  --dash-muted: #666;
  --dash-accent: #F59E0B;
  --radius: 12px;
  --radius-sm: 6px;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Nav */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mark {
  font-size: 20px;
  color: var(--accent);
}
.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.hero-sub-sub {
  font-size: 15px;
  color: var(--fg-muted);
  font-weight: 500;
  font-style: italic;
}

/* Dashboard */
.hero-dashboard {
  background: var(--dash-bg);
  border-radius: 16px;
  padding: 28px;
  font-family: 'Manrope', monospace;
  border: 1px solid rgba(255,255,255,0.06);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.dash-label {
  font-size: 13px;
  color: var(--dash-muted);
}
.dash-agents {
  margin-bottom: 24px;
}
.agent-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.agent-row:last-child { border-bottom: none; }
.agent-icon {
  color: var(--dash-accent);
  font-size: 14px;
  width: 16px;
  text-align: center;
}
.agent-name {
  font-size: 13px;
  color: var(--dash-fg);
  flex: 1;
}
.agent-status {
  font-size: 11px;
  color: var(--dash-muted);
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
}
.agent-status.on {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.1);
}
.dash-log { display: flex; flex-direction: column; gap: 0; }
.log-entry {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  line-height: 1.5;
}
.log-time {
  color: var(--dash-muted);
  flex-shrink: 0;
  width: 48px;
}
.log-text { color: var(--dash-fg); }

/* Hero stats */
.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Manifesto */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.manifesto-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 36px;
  color: var(--bg);
}
.manifesto-body {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(250, 248, 245, 0.7);
  margin-bottom: 24px;
}

/* Features */
.features { padding: 100px 48px; }
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.feature {
  background: var(--bg);
  padding: 48px;
}
.feature-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.feature-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Loop */
.loop {
  background: var(--surface);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.loop-inner { max-width: 1200px; margin: 0 auto; }
.loop-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.loop-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 64px;
  max-width: 480px;
}
.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { }
.step-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 120px 48px;
  background: var(--bg);
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-mark {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 32px;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 32px;
}
.closing-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
}

/* Footer */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-mark { font-size: 18px; color: var(--accent); }
.footer-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.footer-tagline { font-size: 14px; color: var(--fg-muted); }
.footer-powered { font-size: 12px; color: rgba(26,26,26,0.35); }

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-bottom { grid-template-columns: 1fr; gap: 24px; text-align: left; }
  .stat-num { font-size: 40px; }
  .features { padding: 48px 24px; }
  .features-inner { grid-template-columns: 1fr; }
  .manifesto { padding: 64px 24px; }
  .loop { padding: 64px 24px; }
  .loop-steps { grid-template-columns: 1fr; gap: 32px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}