:root {
  --bg: #0d0d0d;
  --bg-surface: #161618;
  --bg-card: #1c1c1f;
  --accent: #f7b731;
  --accent-dim: rgba(247, 183, 49, 0.12);
  --text-primary: #f5f0e8;
  --text-secondary: #8a8a8a;
  --text-muted: #555555;
  --border: #2a2a2e;
  --green: #34d399;
  --amber: #f59e0b;
  --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-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.nav-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-tagline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-family: var(--font-display);
}

/* Hero */
.hero {
  padding: 80px 48px 64px;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
}

.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 32px;
}

/* Agent Window */
.hero-agent {
  position: relative;
}

.agent-window {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.agent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.agent-status {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  font-family: var(--font-display);
  flex: 1;
}

.agent-time {
  font-size: 11px;
  color: var(--text-muted);
}

.agent-feed {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feed-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--bg-card);
}

.feed-item.done { border-left: 2px solid var(--green); }
.feed-item.active { border-left: 2px solid var(--accent); background: var(--accent-dim); }
.feed-item.queued { border-left: 2px solid var(--border); opacity: 0.7; }

.feed-icon {
  font-size: 14px;
  width: 20px;
  flex-shrink: 0;
  padding-top: 2px;
}

.feed-item.done .feed-icon { color: var(--green); }
.feed-item.active .feed-icon { color: var(--accent); }
.feed-item.queued .feed-icon { color: var(--text-muted); }

.pulse { animation: pulse 1.5s infinite; }

.feed-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.feed-meta {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* How it works */
.how-it-works {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

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

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 56px;
  max-width: 600px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
}

.step {
  display: flex;
  gap: 20px;
}

.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Features */
.features {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.feature-card {
  padding: 32px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-child(n+4) { border-bottom: none; }

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

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

.feature-card p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Outcomes */
.outcomes {
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
}

.outcomes-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.outcomes-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.outcome-stat {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.outcome-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  min-width: 100px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Closing */
.closing {
  padding: 100px 48px;
  text-align: center;
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing-icon {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 24px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

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

/* Mobile */
@media (max-width: 768px) {
  .navbar { padding: 16px 24px; }
  .hero { padding: 56px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 38px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-divider { display: none; }
  .how-it-works { padding: 56px 24px; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 56px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { border-right: none; }
  .outcomes { padding: 56px 24px; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .outcomes-right { gap: 16px; }
  .outcome-num { font-size: 36px; }
  .closing { padding: 72px 24px; }
  .closing-headline { font-size: 32px; }
  .footer { flex-direction: column; gap: 8px; text-align: center; padding: 24px; }
}