:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --fg-primary: #e8e8ed;
  --fg-secondary: #8b8b9e;
  --fg-muted: #5a5a6e;
  --accent: #00d4aa;
  --accent-glow: rgba(0, 212, 170, 0.15);
  --accent-dim: #00a884;
  --border: #222230;
  --radius: 12px;
  --container: 1080px;
}

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

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

.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 32px;
  background: var(--accent-glow);
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
  color: #fff;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-secondary);
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.stat-dot.live {
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* ===== METRICS ===== */
.metrics {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.metrics h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 56px;
  color: #fff;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color 0.3s;
}

.metric-card:hover {
  border-color: var(--accent-dim);
}

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

.metric-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.metric-card p {
  font-size: 14px;
  color: var(--fg-secondary);
  line-height: 1.7;
}

/* ===== CAPABILITIES ===== */
.capabilities {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.capabilities h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 64px;
  color: #fff;
  max-width: 700px;
}

.cap-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cap-row {
  display: flex;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}

.cap-row:last-child {
  border-bottom: 1px solid var(--border);
}

.cap-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  min-width: 40px;
  padding-top: 4px;
}

.cap-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.cap-content p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 640px;
}

/* ===== INTELLIGENCE ===== */
.intelligence {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.intel-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: start;
}

.intel-left h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 20px;
}

.intel-left p {
  font-size: 15px;
  color: var(--fg-secondary);
  line-height: 1.8;
}

.intel-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
}

.intel-stat {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.intel-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.intel-desc {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.closing-content {
  max-width: 680px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.15;
}

.closing-text {
  font-size: 17px;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 100px 20px 72px; }
  .hero h1 { letter-spacing: -1px; }
  .metrics-grid { grid-template-columns: 1fr; }
  .cap-row { flex-direction: column; gap: 12px; }
  .intel-split { grid-template-columns: 1fr; gap: 48px; }
  .intel-right { padding-top: 0; }
  .footer-content { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 8px; }
  .stat-pill { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 16px 60px; }
  .metric-card { padding: 28px 24px; }
  .capabilities, .metrics, .intelligence { padding: 72px 0; }
  .closing { padding: 80px 0; }
}