:root {
  --bg: #0A0A0F;
  --bg-2: #0F0F18;
  --bg-card: #12121C;
  --bg-card-2: #181824;
  --fg: #F2F2F0;
  --fg-2: #9A9AAD;
  --fg-3: #5A5A70;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.15);
  --accent-glow: rgba(255, 77, 0, 0.4);
  --border: rgba(255,255,255,0.07);
  --green: #22C55E;
  --orange: #FF4D00;
}

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

html { scroll-behavior: smooth; }

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

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 32px; height: 32px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.logo-rings { position: absolute; inset: 0; }
.ring {
  position: absolute;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 100%; height: 100%; opacity: 0.9; }
.ring-2 { width: 65%; height: 65%; opacity: 0.6; }
.ring-3 { width: 35%; height: 35%; opacity: 0.3; }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  position: relative; z-index: 1;
}
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
  color: var(--fg);
}
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-2);
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,0,0.2);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,77,0,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 30%, transparent 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}
.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-2);
  background: rgba(255,77,0,0.08);
  border: 1px solid rgba(255,77,0,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 500;
}
.badge-pulse {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.headline-accent {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 28px;
  color: var(--fg);
  letter-spacing: -1px;
}
.stat-label { font-size: 11px; color: var(--fg-3); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ============ DASHBOARD WINDOW ============ */
.hero-visual { position: relative; }
.dashboard-window {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,77,0,0.05), 0 40px 80px rgba(0,0,0,0.6), 0 0 80px rgba(255,77,0,0.05);
}
.dw-titlebar {
  background: var(--bg-card-2);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.dw-dots { display: flex; gap: 6px; }
.dw-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #28C840; }
.dw-title { flex: 1; font-size: 12px; color: var(--fg-2); text-align: center; font-weight: 500; }
.dw-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--green); }
.status-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
.dw-body { padding: 20px; }
.dw-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.dw-metric {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px;
}
.dw-m-val { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 22px; color: var(--fg); letter-spacing: -0.5px; }
.dw-m-val.orange { color: var(--orange); }
.dw-m-val.green { color: var(--green); }
.dw-m-lbl { font-size: 10px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.5px; margin: 4px 0 6px; }
.dw-m-bar { height: 3px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.dw-m-fill { height: 100%; background: var(--fg-3); border-radius: 2px; }
.dw-m-fill.orange { background: var(--orange); }
.dw-m-fill.green { background: var(--green); }
.dw-section-label { font-size: 10px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.dw-pipeline { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pl-item { display: flex; align-items: center; gap: 10px; }
.pl-name { font-size: 12px; color: var(--fg-2); width: 80px; flex-shrink: 0; }
.pl-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.pl-fill { height: 100%; background: rgba(255,255,255,0.2); border-radius: 3px; }
.pl-fill.orange { background: var(--orange); }
.pl-count { font-size: 11px; color: var(--fg-3); width: 50px; text-align: right; flex-shrink: 0; }
.dw-sequence { display: flex; flex-direction: column; gap: 0; }
.seq-step { display: flex; align-items: center; gap: 12px; padding: 8px 0; }
.seq-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--fg-3); flex-shrink: 0; }
.seq-dot.done { background: var(--green); }
.seq-dot.active { background: var(--orange); box-shadow: 0 0 8px rgba(255,77,0,0.5); }
.seq-info { flex: 1; }
.seq-name { font-size: 12px; color: var(--fg-2); font-weight: 500; display: block; }
.seq-status { font-size: 10px; color: var(--fg-3); }
.seq-badge { font-size: 9px; font-weight: 600; padding: 3px 8px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.seq-badge.done { background: rgba(34,197,94,0.15); color: var(--green); }
.seq-badge.active { background: var(--accent-dim); color: var(--orange); }
.seq-connector { width: 1px; height: 12px; background: var(--border); margin-left: 4px; }

/* Floating nodes */
.float-node { position: absolute; display: flex; align-items: center; gap: 8px; }
.fn-1 { top: 20px; left: -40px; }
.fn-2 { top: 120px; right: -40px; }
.fn-3 { bottom: 40px; left: -40px; }
.fn-circle { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.fn-circle.orange { background: var(--orange); }
.fn-label { font-size: 11px; color: var(--fg-3); white-space: nowrap; }

/* ============ SPIDER SECTION ============ */
.spider {
  padding: 120px 40px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 80px; }
.section-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -1.5px;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-desc { font-size: 17px; color: var(--fg-2); line-height: 1.7; }

.radar-container {
  width: 500px;
  height: 500px;
  margin: 0 auto 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-grid {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rg-ring {
  position: absolute;
  border: 1px solid rgba(255,77,0,0.15);
  border-radius: 50%;
}
.rg-1 { width: 25%; height: 25%; }
.rg-2 { width: 50%; height: 50%; }
.rg-3 { width: 75%; height: 75%; }
.rg-4 { width: 100%; height: 100%; }
.rg-cross-h, .rg-cross-v {
  position: absolute;
  background: rgba(255,77,0,0.06);
}
.rg-cross-h { width: 100%; height: 1px; }
.rg-cross-v { width: 1px; height: 100%; }
.rg-sweep {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0; left: 50%;
  transform-origin: 0% 50%;
  background: linear-gradient(90deg, rgba(255,77,0,0.25), transparent);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  animation: sweep 4s linear infinite;
}
@keyframes sweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.radar-center {
  position: relative; z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.radar-logo { width: 48px; height: 48px; position: relative; display: flex; align-items: center; justify-content: center; }
.logo-rings-sm { position: absolute; inset: 0; }
.ring-sm {
  position: absolute;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-sm:nth-child(1) { width: 100%; height: 100%; opacity: 0.8; }
.ring-sm:nth-child(2) { width: 60%; height: 60%; opacity: 0.5; }
.logo-dot-sm { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 16px var(--accent-glow); position: relative; z-index: 1; }
.radar-label { font-size: 11px; color: var(--fg-3); font-weight: 500; }

.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.on-dot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; box-shadow: 0 0 12px var(--accent-glow); }
.on-1 { top: 10px; left: 50%; transform: translateX(-50%); }
.on-2 { top: 25%; right: 10px; }
.on-3 { bottom: 25%; right: 10px; }
.on-4 { bottom: 10px; left: 50%; transform: translateX(-50%); }
.on-5 { bottom: 25%; left: 10px; }
.on-6 { top: 25%; left: 10px; }
.on-platform { font-size: 10px; color: var(--fg-2); font-weight: 600; white-space: nowrap; }
.on-data { font-size: 10px; color: var(--accent); font-family: 'Syne', sans-serif; font-weight: 700; }

.spider-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; }
.spider-feat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.spider-feat:hover { border-color: rgba(255,77,0,0.3); }
.sf-icon { width: 40px; height: 40px; background: var(--accent-dim); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.sf-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; color: var(--fg); }
.sf-desc { font-size: 14px; color: var(--fg-2); line-height: 1.6; }

/* ============ DEMO LEADS SECTION ============ */
.demo-leads {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  position: relative;
}
.demo-leads::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.demo-inner { max-width: 1200px; margin: 0 auto; }
.demo-leads-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.demo-lead-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.demo-lead-card:hover { border-color: rgba(255,77,0,0.3); }
.dlc-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card-2);
}
.dlc-avatar {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.dlc-meta { flex: 1; }
.dlc-name { font-size: 13px; font-weight: 600; color: var(--fg); display: block; }
.dlc-role { font-size: 10px; color: var(--fg-3); }
.dlc-source {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 10px;
  border-radius: 10px;
  flex-shrink: 0;
}
.dlc-data { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.dlc-row { display: flex; align-items: flex-start; gap: 8px; }
.dlc-label {
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--fg-3); width: 52px; flex-shrink: 0; padding-top: 2px;
}
.dlc-val { font-size: 12px; color: var(--fg-2); line-height: 1.4; }
.dlc-score { display: flex; align-items: center; gap: 8px; flex: 1; }
.score-bar { flex: 1; height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.score-fill { height: 100%; background: var(--fg-3); border-radius: 2px; }
.score-fill.green { background: var(--green); }
.score-num { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 13px; color: var(--fg-2); flex-shrink: 0; }
.score-num.green { color: var(--green); }

/* AI Email Block */
.demo-email-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,77,0,0.05), 0 20px 60px rgba(0,0,0,0.4);
}
.deb-label {
  padding: 24px 32px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}
.deb-badge {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(255,77,0,0.2);
  padding: 6px 14px;
  border-radius: 14px;
  flex-shrink: 0;
}
.deb-sub { font-size: 13px; color: var(--fg-3); }
.deb-email { padding: 32px; }
.deb-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.deb-from { display: flex; align-items: center; gap: 12px; }
.deb-avatar {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.deb-from-name { font-size: 14px; font-weight: 600; color: var(--fg); display: block; }
.deb-from-sub { font-size: 11px; color: var(--fg-3); }
.deb-time { font-size: 11px; color: var(--fg-3); }
.deb-subject { display: flex; gap: 10px; margin-bottom: 20px; }
.deb-subj-label { font-size: 13px; color: var(--fg-3); flex-shrink: 0; }
.deb-subj-text { font-size: 15px; font-weight: 600; color: var(--fg); }
.deb-body {
  font-size: 14px; color: var(--fg-2); line-height: 1.8;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: var(--bg-card-2);
  margin-bottom: 20px;
}
.deb-body p { margin-bottom: 12px; }
.deb-body p:last-child { margin-bottom: 0; }
.deb-footer { display: flex; flex-direction: column; gap: 8px; }
.deb-stat { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-3); }
.deb-s-icon { color: var(--green); font-weight: 700; font-size: 13px; width: 16px; }

/* ============ OUTREACH SECTION ============ */
.outreach {
  padding: 120px 40px;
  background: var(--bg);
  position: relative;
}
.outreach::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.outreach-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.outreach-checklist { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.oc-item { display: flex; align-items: flex-start; gap: 14px; }
.oc-check { width: 24px; height: 24px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.oc-item span { font-size: 15px; color: var(--fg-2); line-height: 1.5; }

.email-viz {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.ev-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ev-title { font-size: 13px; font-weight: 600; color: var(--fg-2); }
.ev-count { font-size: 11px; color: var(--accent); background: var(--accent-dim); padding: 4px 10px; border-radius: 12px; font-weight: 600; }
.ev-emails { display: flex; flex-direction: column; }
.ev-email {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 16px;
}
.ev-email:last-child { border-bottom: none; }
.ee-num {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--fg-3);
  width: 32px;
  flex-shrink: 0;
  line-height: 1;
}
.ee-content { flex: 1; }
.ee-from { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.ee-avatar { width: 24px; height: 24px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: white; }
.ee-from span { font-size: 12px; color: var(--fg-2); }
.ee-subject { font-size: 14px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.ee-preview { font-size: 12px; color: var(--fg-3); line-height: 1.5; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ee-meta { display: flex; justify-content: space-between; align-items: center; }
.ee-sent { font-size: 11px; color: var(--fg-3); }
.ee-stats { display: flex; gap: 8px; }
.ee-stat { font-size: 10px; color: var(--fg-3); background: rgba(255,255,255,0.04); padding: 2px 8px; border-radius: 10px; }
.ee-stat.orange { color: var(--accent); background: var(--accent-dim); }

/* ============ DASHBOARD SECTION ============ */
.dash-section {
  padding: 120px 40px;
  background: var(--bg-2);
}
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 1200px; margin: 0 auto; }
.dash-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.dp-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dp-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #2a2a3a, #1a1a28);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg-2);
  flex-shrink: 0;
}
.dp-avatar.master { background: var(--accent-dim); color: var(--accent); }
.dp-meta { flex: 1; }
.dp-name { font-size: 13px; font-weight: 600; color: var(--fg); display: block; }
.dp-plan { font-size: 11px; color: var(--fg-3); }
.dp-badge { font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 12px; background: rgba(34,197,94,0.12); color: var(--green); }
.dp-badge.master { background: var(--accent-dim); color: var(--accent); }
.dp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); margin: 0; }
.dp-kpi { background: var(--bg-card); padding: 20px; text-align: center; }
.kpi-value { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 24px; color: var(--fg); letter-spacing: -0.5px; }
.kpi-label { font-size: 10px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }
.dp-activity { padding: 20px; }
.act-header { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.act-items { display: flex; flex-direction: column; gap: 10px; }
.act-item { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--fg-2); }
.act-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.act-dot.act-green { background: var(--green); }
.act-dot.act-orange { background: var(--orange); }
.act-dot.act-gray { background: var(--fg-3); }
.act-item span:first-of-type { flex: 1; }
.act-time { font-size: 10px; color: var(--fg-3); flex-shrink: 0; }

/* Sub list */
.sub-list { padding: 20px; }
.sub-header { font-size: 11px; color: var(--fg-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.sub-items { display: flex; flex-direction: column; gap: 8px; }
.sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-card-2);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.si-avatar {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  color: var(--fg-2);
  flex-shrink: 0;
}
.si-info { flex: 1; }
.si-name { font-size: 13px; font-weight: 600; color: var(--fg); display: block; }
.si-store { font-size: 10px; color: var(--fg-3); }
.si-status { font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 10px; }
.si-green { background: rgba(34,197,94,0.12); color: var(--green); }
.si-orange { background: var(--accent-dim); color: var(--orange); }
.si-btn { font-size: 11px; color: var(--fg-3); cursor: pointer; padding: 4px 12px; border: 1px solid var(--border); border-radius: 8px; transition: all 0.2s; }
.si-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ============ CLOSING ============ */
.closing {
  padding: 140px 40px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,77,0,0.3), transparent);
}
.closing-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--fg-2); background: rgba(255,77,0,0.06); border: 1px solid rgba(255,77,0,0.12); padding: 8px 20px; border-radius: 20px; margin-bottom: 40px; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -2px;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-accent { color: var(--accent); }
.closing-sub { font-size: 18px; color: var(--fg-2); max-width: 560px; margin: 0 auto 56px; line-height: 1.7; }
.closing-features { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 800px; margin: 0 auto; }
.cf-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg-2); background: var(--bg-card); border: 1px solid var(--border); padding: 12px 20px; border-radius: 12px; }

/* ============ FOOTER ============ */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-tagline { font-size: 14px; color: var(--fg-3); }
.footer-copy { font-size: 12px; color: var(--fg-3); }

/* ============ HERO CTA ============ */
.hero-cta-wrap { margin-top: 32px; }
.hero-cta-form { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.cta-input {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px; color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.cta-input:focus { border-color: rgba(255,77,0,0.5); }
.cta-input::placeholder { color: var(--fg-3); }
.cta-btn {
  background: var(--accent); color: white;
  padding: 12px 20px; border-radius: 10px;
  font-size: 14px; font-weight: 600; border: none;
  cursor: pointer; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 16px rgba(255,77,0,0.3);
  transition: all 0.2s;
}
.cta-btn:hover { background: #E64400; box-shadow: 0 6px 20px rgba(255,77,0,0.4); }
.cta-privacy { font-size: 11px; color: var(--fg-3); margin-top: 8px; }

/* Mid-page hero CTA section */
.hero-cta-section {
  padding: 80px 40px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero-cta-inner { max-width: 600px; margin: 0 auto; }
.hc-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.5px; color: var(--fg);
  line-height: 1.2; margin-bottom: 28px;
}
.hc-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* Exit-intent modal */
.capture-modal {
  position: fixed; inset: 0; z-index: 999;
  display: flex; align-items: center; justify-content: center;
}
.cm-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(8px);
}
.cm-box {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(255,77,0,0.25);
  border-radius: 20px;
  padding: 48px;
  max-width: 480px; width: 90%;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(255,77,0,0.08), 0 40px 80px rgba(0,0,0,0.6);
  animation: cmIn 0.25s ease-out;
}
@keyframes cmIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cm-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; color: var(--fg-3);
  font-size: 24px; cursor: pointer; line-height: 1;
  padding: 4px; border-radius: 6px; transition: color 0.2s;
}
.cm-close:hover { color: var(--fg); }
.cm-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--accent); background: var(--accent-dim);
  border: 1px solid rgba(255,77,0,0.2);
  padding: 5px 12px; border-radius: 14px;
  margin-bottom: 20px;
}
.cm-headline {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.5px; color: var(--fg);
  margin-bottom: 12px;
}
.cm-sub { font-size: 15px; color: var(--fg-2); line-height: 1.6; margin-bottom: 28px; }
.cm-form { display: flex; flex-direction: column; gap: 10px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .outreach-inner { grid-template-columns: 1fr; }
  .spider-features { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .demo-leads-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .radar-container { width: 300px; height: 300px; }
  .dw-metrics { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 100px 20px 60px; }
  .spider, .outreach, .dash-section, .closing, .demo-leads { padding: 80px 20px; }
  .nav { padding: 0 20px; }
  .hero-stats { flex-wrap: wrap; }
  .closing-features { gap: 10px; }
  .cf-item { font-size: 12px; padding: 10px 14px; }
}