/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080B12;
  --bg-alt: #0D1420;
  --fg: #F0F4FF;
  --fg-muted: #8892A4;
  --accent: #00E896;
  --accent-dim: rgba(0, 232, 150, 0.12);
  --accent-glow: rgba(0, 232, 150, 0.06);
  --border: rgba(240, 244, 255, 0.06);
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
}

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

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

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 40px 80px;
  gap: 80px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,244,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,244,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 30%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,232,150,0.08) 0%, transparent 60%);
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,232,150,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  font-family: var(--font-head);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 24px;
}

.headline-accent {
  background: linear-gradient(135deg, #00E896 0%, #00C4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* === HERO VISUAL === */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prospect-orbs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.orb {
  background: rgba(0, 232, 150, 0.04);
  border: 1px solid rgba(0, 232, 150, 0.15);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.orb:hover {
  background: rgba(0, 232, 150, 0.08);
  border-color: rgba(0, 232, 150, 0.3);
  transform: translateX(4px);
}

.orb-1 { border-left: 3px solid rgba(0,232,150,0.3); }
.orb-2 { border-left: 3px solid rgba(0,232,150,0.5); }
.orb-3 { border-left: 3px solid rgba(0,232,150,0.7); }
.orb-4 { border-left: 3px solid #00E896; }

.orb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
}

.orb-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg);
  min-width: 90px;
}

.orb-role {
  font-size: 0.8rem;
  color: var(--fg-muted);
  flex: 1;
}

.orb-status {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px 10px;
  border-radius: 100px;
}

.meeting-booked {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,232,150,0.06);
  border: 1px solid rgba(0,232,150,0.2);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === PROOF === */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 40px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(0,232,150,0.15);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
  transition: all 0.3s;
}

.step:hover {
  border-color: rgba(0,232,150,0.2);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.step-connector {
  display: none;
}

/* === FEATURES === */
.features {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}

.feature-card:hover {
  border-color: rgba(0,232,150,0.2);
  transform: translateY(-3px);
}

.feature-icon {
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* === COMPARISON === */
.comparison {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.compare-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}

.compare-col {
  display: grid;
  grid-template-columns: 160px repeat(5, 1fr);
  align-items: center;
}

.compare-header-col {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

.compare-col:not(.compare-header-col):not(.compare-human) {
  padding: 20px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.compare-col:not(.compare-header-col):not(.compare-human) {
  background: rgba(0,232,150,0.02);
}

.compare-human {
  padding: 20px 20px;
  background: var(--bg-alt);
  border-bottom: none;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.compare-cell { padding: 0 12px; }
.compare-heading { display: none; }

.compare-label { padding-left: 0; }

.agent-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.human-badge {
  display: inline-block;
  background: rgba(240,244,255,0.06);
  color: var(--fg-muted);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.compare-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
}

.compare-human .compare-value {
  color: #FF6B2C;
}

.compare-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.closing-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
}

.footer-tagline {
  flex: 1;
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--fg); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 48px; }
  .hero-visual { display: none; }
  .steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .compare-col { grid-template-columns: 120px repeat(3, 1fr); }
  .compare-col .compare-cell:nth-child(n+5) { display: none; }
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .compare-col { grid-template-columns: 1fr 1fr; }
  .compare-header-col { display: none; }
  .how, .features, .comparison, .closing { padding: 64px 24px; }
  .hero-stats { gap: 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { flex-wrap: wrap; gap: 12px; }
  .proof { padding: 24px; }
}