:root {
  --bg: #0D0D0D;
  --bg2: #111111;
  --bg3: #1A1A1A;
  --fg: #FFFFFF;
  --fg2: #A0A0A0;
  --fg3: #606060;
  --accent: #00FF94;
  --accent2: #00CC77;
  --accent-dim: rgba(0, 255, 148, 0.12);
  --accent-border: rgba(0, 255, 148, 0.25);
  --red: #FF4757;
  --yellow: #FFB800;
  --blue: #3B82F6;
  --purple: #8B5CF6;
  --border: rgba(255, 255, 255, 0.07);
  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::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: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg2);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 100px 32px 120px;
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 148, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 148, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 100%);
  animation: gridPulse 4s ease-in-out infinite;
}
@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font-body);
  color: var(--accent);
  background: var(--accent-dim);
  margin-bottom: 28px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
  color: var(--fg);
}
.hero-title br { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--fg2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
  padding: 24px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: fit-content;
}
.stat { text-align: center; }
.stat-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.stat-unit { font-size: 18px; }
.stat-label {
  font-size: 11px;
  color: var(--fg3);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero Visual — Pipeline + Activity */
.hero-visual {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  align-items: start;
}
.pipeline-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pipeline-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg2);
}
.pipeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg3);
}
.pipeline-dot.live {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: blink 1.5s infinite;
}
.pipeline-rows { padding: 8px 0; }
.p-row {
  display: grid;
  grid-template-columns: 36px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.p-row:last-child { border-bottom: none; }
.p-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #10B981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-head);
  color: white;
}
.p-name { font-size: 13px; font-weight: 500; }
.p-co { font-size: 11px; color: var(--fg3); margin-top: 1px; }
.p-score {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg2);
  width: 30px;
  text-align: center;
}
.p-score.green { color: #10B981; }
.p-score.yellow { color: #FFB800; }
.p-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(0,255,148,0.1);
  color: var(--accent);
}
.pipeline-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 11px;
  color: var(--fg3);
  border-top: 1px solid var(--border);
}
.pulse {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 0.8s infinite;
}

.activity-panel {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.activity-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--fg2);
}
.activity-items { padding: 8px 0; }
.a-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 12px;
  color: var(--fg2);
}
.a-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.a-dot.scraped { background: var(--accent); }
.a-dot.qualified { background: var(--blue); }
.a-dot.emailed { background: var(--yellow); }
.a-dot.converting { background: var(--purple); }

/* ─── SHARED SECTIONS ─── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--fg2);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step {
  padding: 32px 28px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.step-num {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.step-icon { margin-bottom: 16px; }
.step h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.step p { font-size: 13px; color: var(--fg2); line-height: 1.6; }
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-border), var(--accent));
  margin-top: 60px;
  flex-shrink: 0;
}

/* ─── SCRAPING ─── */
.scraping-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.scraping-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.web-grid {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.web-node {
  position: absolute;
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  animation: float 3s ease-in-out infinite;
}
.node-label { font-family: var(--font-head); font-size: 13px; font-weight: 600; }
.node-sub { font-size: 11px; color: var(--fg3); margin-top: 3px; }
.node-1 { top: 10%; left: 5%; animation-delay: 0s; }
.node-2 { top: 5%; right: 10%; animation-delay: 0.5s; }
.node-3 { top: 40%; right: 0; animation-delay: 1s; }
.node-4 { bottom: 30%; right: 5%; animation-delay: 1.5s; }
.node-5 { bottom: 5%; left: 15%; animation-delay: 0.3s; }
.node-6 { top: 25%; left: 0; animation-delay: 0.8s; }
.web-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: spin 8s linear infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.scraping-text h2 { margin-bottom: 20px; }
.scraping-text p { font-size: 16px; color: var(--fg2); line-height: 1.7; margin-bottom: 36px; }
.scraping-stats { display: flex; gap: 40px; }
.scr-stat {}
.scr-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.scr-label { font-size: 12px; color: var(--fg3); margin-top: 6px; }

/* ─── PIPELINE ─── */
.pipeline-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.pipeline-section .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.channel-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.channel {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--fg2);
  padding: 12px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.funnel-visual {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.funnel-stage { display: flex; align-items: center; gap: 16px; }
.funnel-bar {
  height: 44px;
  width: var(--w);
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 100%);
  border-radius: 0 6px 6px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 14px;
  position: relative;
  overflow: hidden;
  transition: width 1s ease;
}
.funnel-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 20px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15));
}
.funnel-count {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  position: relative;
  z-index: 1;
}
.funnel-meta { display: flex; flex-direction: column; }
.funnel-label { font-size: 11px; color: var(--fg3); }

/* ─── CLOSING ─── */
.closing {
  padding: 120px 32px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing-inner { position: relative; max-width: 700px; margin: 0 auto; }
.closing-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0,255,148,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.closing p {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-statement {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 32px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: left;
}
.cs-line {
  width: 3px;
  min-height: 40px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 2px;
}
.closing-statement p { font-size: 14px; color: var(--fg2); margin-bottom: 0; line-height: 1.7; }

/* ─── FOOTER ─── */
.footer {
  padding: 48px 32px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
}
.footer-tagline { font-size: 13px; color: var(--fg3); }
.footer-copy { font-size: 12px; color: var(--fg3); margin-left: auto; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-div { width: 40px; height: 1px; }
  .hero-visual { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 12px; }
  .step-connector { display: none; }
  .scraping-section .section-inner,
  .pipeline-section .section-inner { grid-template-columns: 1fr; gap: 48px; }
  .scraping-stats { flex-direction: column; gap: 20px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 20px 80px; }
  .hero-stats { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .section-inner { padding: 0 20px; }
  .closing { padding: 80px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-copy { margin-left: 0; }
}