:root {
  --bg: #0f0f12;
  --bg-2: #16161b;
  --bg-3: #1e1e24;
  --fg: #f0f0f5;
  --fg-2: #9090a0;
  --fg-3: #606070;
  --accent: #b8ff00;
  --accent-2: #8bcc00;
  --border: #2a2a35;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--fg-2);
  font-family: 'DM Sans', sans-serif;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero */
.hero {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-2);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 48px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.72rem;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Agent Display */
.agent-display {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-2);
  font-family: 'DM Sans', sans-serif;
}
.agent-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.agent-feed {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feed-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.5;
}
.feed-line:last-child { border-bottom: none; }
.feed-time {
  color: var(--fg-3);
  font-size: 0.7rem;
  min-width: 48px;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  padding-top: 1px;
}
.feed-text {
  color: var(--fg-2);
  font-family: 'DM Sans', sans-serif;
}
.feed-line:last-child .feed-text {
  color: var(--accent);
}

/* What section */
.what {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.what-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.what-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
}
.what-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1.15;
  margin-bottom: 24px;
}
.what-body {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.what-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
}
.comparison-item {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  max-width: 280px;
  text-align: left;
}
.comparison-label {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
  margin-bottom: 8px;
}
.comparison-text {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.5;
}
.comparison-arrow {
  color: var(--accent);
  flex-shrink: 0;
}

/* Features */
.features {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.features-header {
  margin-bottom: 56px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 540px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-2);
  padding: 40px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-body {
  font-size: 0.88rem;
  color: var(--fg-2);
  line-height: 1.7;
}

/* Outcomes */
.outcomes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.outcomes-header {
  margin-bottom: 56px;
}
.outcomes-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--fg);
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.outcome-card {
  background: var(--bg-2);
  padding: 48px 40px;
}
.outcome-number {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-label {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 12px;
}
.outcome-desc {
  font-size: 0.82rem;
  color: var(--fg-3);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 0;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 1rem;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-left { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .what-comparison {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .nav-inner, .footer-inner { padding: 0 20px; }
  .features-inner, .outcomes-inner, .what-inner { padding: 0 20px; }
  .closing-inner { padding: 0 20px; }
  .feature-card { padding: 28px; }
  .outcome-card { padding: 32px 28px; }
}