:root {
  --bg: #0d0f14;
  --bg-alt: #131720;
  --bg-card: #161b26;
  --fg: #e8edf5;
  --fg-muted: #8896aa;
  --accent: #00c9a7;
  --accent-dim: #00c9a715;
  --border: #1e2533;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* HERO */
.hero {
  padding: 160px 48px 80px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
}
.location-network {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  min-height: 420px;
}
.ln-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.ln-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ln-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ln-tl { top: 40px; left: 40px; }
.ln-tr { top: 40px; right: 40px; }
.ln-bl { bottom: 80px; left: 40px; }
.ln-br { bottom: 80px; right: 40px; }
.ln-core {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #0d0f14;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
}
.ln-pulse {
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.ln-pulse::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 14px; height: 14px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  animation: ring 2s ease-out infinite;
}
@keyframes ring {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}
.ln-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ln-stat {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}
.ln-activity {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ln-event {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.ev-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ev-green { background: #00e676; }
.ev-teal { background: var(--accent); }
.ev-time {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.5;
}

/* HERO METRICS */
.hero-metrics {
  max-width: 1200px;
  margin: 80px auto 0;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.hm-item { text-align: center; flex: 1; }
.hm-value {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}
.hm-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 4px;
}
.hm-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 48px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 360px;
  flex-shrink: 0;
}
.proof-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pp-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

/* FEATURES */
.features {
  padding: 120px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.section-sub {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--fg-muted);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--accent); }
.fc-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fc-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.fc-desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.fc-detail {
  font-size: 0.75rem;
  color: var(--accent);
  background: var(--accent-dim);
  border-left: 2px solid var(--accent);
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  font-family: 'DM Mono', 'Courier New', monospace;
}

/* AGENT SECTION */
.agent {
  padding: 120px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.agent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.agent-window {
  background: #0a0d12;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.aw-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.aw-dots {
  display: flex;
  gap: 6px;
}
.aw-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.aw-dots span:first-child { background: #ff5f57; }
.aw-dots span:nth-child(2) { background: #febc2e; }
.aw-dots span:last-child { background: #28c840; }
.aw-title {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
}
.aw-body { padding: 16px; }
.aw-log {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.log-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.log-time { color: var(--fg-muted); opacity: 0.5; }
.log-done { color: var(--accent); }
.log-active { color: var(--fg); }
.log-cursor {
  display: inline-block;
  width: 6px; height: 12px;
  background: var(--accent);
  border-radius: 1px;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.agent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.ab-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.agent-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.agent-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.agent-stats {
  display: flex;
  gap: 40px;
}
.as-value {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--fg);
}
.as-label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* PRICING */
.pricing {
  padding: 120px 48px;
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pricing-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.pc-featured {
  border-color: var(--accent);
}
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0d0f14;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: var(--font-head);
  white-space: nowrap;
}
.pc-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.pc-price {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}
.pc-per {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pc-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.pc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* CLOSING */
.closing {
  padding: 120px 48px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 30px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .agent-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .hero-metrics { flex-direction: column; gap: 24px; }
  .hm-divider { width: 40px; height: 1px; }
  .proof-inner { flex-direction: column; }
  .agent-stats { flex-wrap: wrap; gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .nav { padding: 0 24px; }
  .hero { padding: 120px 24px 60px; }
  .proof, .features, .agent, .pricing, .closing { padding: 80px 24px; }
  .location-network { padding: 24px; }
  .ln-tl { left: 20px; top: 20px; }
  .ln-tr { right: 20px; top: 20px; }
  .ln-bl { left: 20px; bottom: 60px; }
  .ln-br { right: 20px; bottom: 60px; }
}
