:root {
  --bg: #0d0d0d;
  --surface: #181818;
  --surface-2: #242424;
  --text: #f0ede8;
  --text-dim: #8a8784;
  --accent: #f5a623;
  --accent-2: #10b981;
  --red: #ef4444;
  --amber: #f59e0b;
  --green: #10b981;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Figtree', 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;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid #222;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid #222;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-dim);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ticker {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  width: fit-content;
}
.ticker-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ticker-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.ticker-label {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ticker-divider {
  width: 1px;
  height: 36px;
  background: #333;
}

/* Agent Window */
.agent-window {
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #222;
  border-bottom: 1px solid #2a2a2a;
}
.agent-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.agent-dot.green { background: var(--green); }
.agent-dot.amber { background: var(--amber); }
.agent-dot.red { background: var(--red); }
.agent-title {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 8px;
  font-family: 'Figtree', sans-serif;
}
.agent-body {
  padding: 20px;
  min-height: 280px;
}
.agent-log {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.log-entry {
  font-size: 13px;
  font-family: 'Figtree', sans-serif;
  color: var(--text-dim);
  display: flex;
  gap: 10px;
  padding: 10px 12px;
  background: #1e1e1e;
  border-radius: 6px;
  border-left: 2px solid #333;
}
.log-entry.success {
  color: var(--text);
  border-left-color: var(--accent-2);
}
.log-entry.processing {
  color: var(--accent);
  border-left-color: var(--accent);
}
.log-time {
  color: var(--text-dim);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}

/* Process */
.process {
  padding: 80px 48px;
  border-bottom: 1px solid #222;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-family: 'Syne', sans-serif;
  margin-bottom: 16px;
}
.section-headline {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--text);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.process-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.step {
  flex: 1;
  padding: 28px;
  background: var(--surface);
  border: 1px solid #242424;
  border-radius: 10px;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.step-connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #333, transparent);
}

/* Outcomes */
.outcomes {
  padding: 64px 48px;
  border-bottom: 1px solid #222;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
}
.outcome-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid #242424;
  border-radius: 12px;
}
.outcome-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.outcome-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Niches */
.niches {
  padding: 64px 48px;
  border-bottom: 1px solid #222;
}
.niches-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1000px;
}
.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid #1e1e1e;
  border-radius: 10px;
}
.niche-icon {
  width: 40px;
  height: 40px;
  background: #1e1e1e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.niche-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.niche-item p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* Manifesto */
.manifesto {
  padding: 80px 48px;
  border-bottom: 1px solid #222;
}
.manifesto-block {
  max-width: 800px;
}
.manifesto-headline {
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.manifesto-headline em {
  font-style: normal;
  color: var(--accent);
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 680px;
}
.manifesto-body:last-child {
  margin-bottom: 0;
}

/* Closing */
.closing {
  padding: 100px 48px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1.05;
}
.closing-sub {
  font-size: 18px;
  color: var(--text-dim);
  font-family: 'Figtree', sans-serif;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right {
    order: -1;
  }
  .process-steps {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector { display: none; }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .niches-list {
    grid-template-columns: 1fr;
  }
  .nav {
    padding: 20px 24px;
  }
  .hero {
    padding: 48px 24px 40px;
  }
  .process, .outcomes, .niches, .manifesto, .closing {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .hero-ticker {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .ticker-divider { display: none; }
}