:root {
  --bg: #0a0a0f;
  --surface: #111118;
  --border: #1e1e28;
  --text: #e8e8ed;
  --text-muted: #7a7a8c;
  --accent: #00d4aa;
  --accent-glow: rgba(0, 212, 170, 0.15);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 24px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.nav-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}
.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 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 100px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.badge {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.metric-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
}
.metric-label {
  color: var(--text-muted);
  font-size: 14px;
}

/* Agent Display */
.agent-display {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.agent-display::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}
.agent-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.agent-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #00a080);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--bg);
}
.agent-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.agent-name {
  font-weight: 600;
  font-size: 15px;
}
.agent-status {
  font-size: 13px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: pulse 2s infinite;
}
.agent-tasks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.task-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-glow);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.agent-time {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Divider */
.section-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-icon {
  color: var(--accent);
  font-size: 16px;
  opacity: 0.5;
}

/* Capabilities */
.capabilities {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1px;
  max-width: 600px;
  margin-bottom: 48px;
}
.cap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cap-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.cap-card:hover {
  border-color: var(--accent);
}
.cap-icon {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--accent);
}
.cap-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.cap-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Pricing */
.pricing {
  padding: 60px 40px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.price-tag {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  display: block;
}
.price-period {
  font-size: 24px;
  color: var(--text-muted);
  font-weight: 400;
}
.price-context {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}
.comparison-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.comparison-item.highlight {
  background: var(--accent-glow);
  margin: 0 -20px;
  padding: 14px 20px;
  border-radius: 8px;
  border-bottom: none;
}
.comp-label { color: var(--text-muted); }
.comp-value { font-weight: 600; }
.comp-value.accent { color: var(--accent); }
.pricing-note {
  color: var(--text-muted);
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

/* Closing */
.closing {
  padding: 80px 40px 100px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.closing-body {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* Footer */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 50px;
    gap: 40px;
  }
  .hero-headline { font-size: 36px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; }
  .cap-grid { grid-template-columns: 1fr; }
  .pricing-box { grid-template-columns: 1fr; gap: 32px; }
  .nav { padding: 20px 24px; }
  .capabilities, .pricing, .closing { padding-left: 24px; padding-right: 24px; }
  .section-divider { padding: 0 24px; }
}