/* ---------- Pipelane tokens ---------- */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Geist:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #F6F5F1;
  --bg-2: #EFEDE6;
  --ink: #0A0B0A;
  --ink-2: #1A1C1A;
  --mute: #6B6F6B;
  --mute-2: #9CA39C;
  --line: #E2DFD6;
  --line-dark: #1F221F;
  --accent: #7CFF6B;
  --accent-deep: #4ADB36;
  --warn: #FFB347;
  --hot: #FF5F4D;
  --radius: 14px;
  --radius-sm: 8px;
  --maxw: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.mono { font-family: 'JetBrains Mono', ui-monospace, monospace; font-feature-settings: 'ss01', 'cv01'; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .15s ease, color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { transform: translateY(-1px); background: #000; }
.btn-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 8px 24px -8px rgba(124,255,107,0.6);
}
.btn-accent:hover { transform: translateY(-1px); background: #8aff7a; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--bg-2); }
.btn-dark-ghost {
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-dark-ghost:hover { background: rgba(255,255,255,0.06); }

.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(124,255,107,0.18);
}

/* ---------- Headlines ---------- */
.h-display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.h-section {
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h-card {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.lede {
  font-size: 19px;
  color: var(--mute);
  line-height: 1.5;
  max-width: 60ch;
  font-weight: 400;
}

/* ---------- Section base ---------- */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }
.dark { background: var(--ink); color: var(--bg); }
.dark .lede, .dark .mute { color: var(--mute-2); }
.dark .eyebrow { color: var(--mute-2); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 10px 14px 10px 22px;
  background: rgba(246,245,241,0.8);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 999px;
  box-shadow: 0 4px 20px -8px rgba(0,0,0,0.08);
}
.nav-inner.dark-nav {
  background: rgba(10,11,10,0.7);
  border-color: rgba(255,255,255,0.1);
  color: var(--bg);
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--ink); }
.nav-inner.dark-nav .nav-links { color: var(--bg); }
.nav-links a { opacity: 0.8; transition: opacity .15s; }
.nav-links a:hover { opacity: 1; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 600; letter-spacing: -0.02em; font-size: 17px; }
.logo-mark {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--ink);
  position: relative;
  display: grid; place-items: center;
}
.nav-inner.dark-nav .logo-mark { background: var(--accent); }
.logo-mark::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px var(--ink);
}
.nav-inner.dark-nav .logo-mark::before { background: var(--ink); box-shadow: none; }

/* ---------- Hero pipeline data viz ---------- */
.hero {
  padding-top: 140px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-cta-row { display: flex; gap: 12px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.hero-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 6px 12px 6px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--mute);
}
.hero-callout strong { color: var(--ink); font-weight: 500; }
.hero-callout .pill {
  background: var(--accent);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.hero-stat-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-size: 13px;
  color: var(--mute);
  margin-top: 4px;
}

/* Hero abstract gradient blob */
.hero-bg {
  position: absolute;
  pointer-events: none;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content:'';
  position:absolute;
  top: -10%; right: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle at 50% 50%, rgba(124,255,107,0.35), transparent 60%);
  filter: blur(40px);
}
.hero-bg::after {
  content:'';
  position:absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle at 50% 50%, rgba(255,179,71,0.18), transparent 60%);
  filter: blur(40px);
}

/* ---------- Pipeline viz ---------- */
.pipeline {
  position: relative;
  height: 560px;
  background: var(--ink);
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 30px 80px -30px rgba(0,0,0,0.45),
    0 6px 24px -8px rgba(0,0,0,0.18);
  color: var(--bg);
}
.pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line-dark);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pipeline-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent);
}
.pipeline-head .live::before {
  content:''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124,255,107,0.6); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(124,255,107,0); }
}
.pipeline-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: calc(100% - 44px);
}
.pcol {
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.pcol:last-child { border-right: none; }
.pcol-head {
  padding: 12px 14px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--mute-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pcol-head .count {
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 10px;
  color: var(--bg);
}
.pcol-body {
  padding: 4px 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  flex: 1;
}

.lead-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  animation: cardIn 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
  transform-origin: top;
}
.lead-card.scoring { border-color: rgba(124,255,107,0.35); background: rgba(124,255,107,0.04); }
.lead-card.qualified { border-color: rgba(124,255,107,0.5); background: rgba(124,255,107,0.07); }
@keyframes cardIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.lead-row1 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lead-name { font-size: 13px; font-weight: 500; letter-spacing: -0.01em; color: var(--bg); }
.lead-domain { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--mute-2); }
.lead-row2 { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lead-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--mute-2); }
.score {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--mute-2);
  min-width: 38px;
  text-align: center;
}
.score.high { background: var(--accent); color: var(--ink); }
.score.med  { background: rgba(255,179,71,0.18); color: var(--warn); }
.score.low  { background: rgba(255,255,255,0.06); color: var(--mute-2); }

.score-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}
.score-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
  transition: width 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.score-bar.med > span { background: linear-gradient(90deg, #ff9500, var(--warn)); }
.score-bar.low > span { background: rgba(255,255,255,0.18); }

/* Connector beam between cols (optional decor) */
.beam {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  pointer-events: none;
}

/* ---------- Logo bar ---------- */
.logobar {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
}
.logobar-label {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  opacity: 0.75;
}
.logos > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 18px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity .2s;
}
.logos > div:hover { opacity: 1; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.step {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--line);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.1em;
}
.step h3 { font-size: 28px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.1; }
.step p { color: var(--mute); font-size: 15px; max-width: 38ch; }

.step-visual {
  margin-top: auto;
  height: 180px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* Step 1: search/scan visual */
.viz-scan { display:flex; flex-direction:column; padding: 14px; gap: 7px; }
.viz-scan .row {
  height: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: flex; align-items: center; padding: 0 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mute);
  position: relative;
  overflow: hidden;
}
.viz-scan .row::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124,255,107,0.4), transparent);
  transform: translateX(-100%);
  animation: scanline 2.4s ease-in-out infinite;
}
.viz-scan .row:nth-child(2)::after { animation-delay: 0.4s; }
.viz-scan .row:nth-child(3)::after { animation-delay: 0.8s; }
.viz-scan .row:nth-child(4)::after { animation-delay: 1.2s; }
.viz-scan .row:nth-child(5)::after { animation-delay: 1.6s; }
@keyframes scanline {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

/* Step 2: signal radar */
.viz-radar { display: grid; place-items: center; height: 100%; position: relative; }
.viz-radar .ring {
  position: absolute; border: 1px solid rgba(10,11,10,0.12); border-radius: 50%;
}
.viz-radar .r1 { width: 80px; height: 80px; }
.viz-radar .r2 { width: 130px; height: 130px; }
.viz-radar .r3 { width: 180px; height: 180px; }
.viz-radar .blip {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(124,255,107,0.28);
  animation: blipPulse 1.8s ease-in-out infinite;
}
.viz-radar .blip.b1 { top: 36%; left: 60%; animation-delay: 0s; }
.viz-radar .blip.b2 { top: 24%; left: 38%; animation-delay: 0.6s; }
.viz-radar .blip.b3 { top: 65%; left: 44%; animation-delay: 1.0s; background: var(--warn); box-shadow: 0 0 0 4px rgba(255,179,71,0.28); }
.viz-radar .blip.b4 { top: 50%; left: 70%; animation-delay: 1.4s; }
@keyframes blipPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
.viz-radar .center {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  z-index: 1;
}

/* Step 3: outreach pipeline */
.viz-flow { display: flex; align-items: center; justify-content: space-between; padding: 24px; height: 100%; gap: 8px; }
.viz-flow .node {
  flex: 1;
  height: 70px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mute);
  gap: 4px;
}
.viz-flow .node .ico {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--bg-2);
  display: grid; place-items: center;
}
.viz-flow .arrow {
  flex: 0 0 auto;
  width: 18px;
  height: 1px;
  background: var(--ink);
  position: relative;
}
.viz-flow .arrow::after {
  content:''; position: absolute; right: 0; top: -3px;
  border: 3px solid transparent; border-left-color: var(--ink);
}
.viz-flow .node.active {
  border-color: var(--accent);
  background: rgba(124,255,107,0.1);
}

/* ---------- Demo dashboard section ---------- */
.demo {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.demo-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(124,255,107,0.18), transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(124,255,107,0.06), transparent 60%);
  pointer-events: none;
}
.demo-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 56px;
  position: relative;
}
.demo-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
}
.demo-tab {
  padding: 8px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--mute-2);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: all .15s;
}
.demo-tab.active { background: var(--accent); color: var(--ink); font-weight: 600; }
.demo-tab:hover:not(.active) { color: var(--bg); }

.dashboard {
  background: #0E110E;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.5);
}
.dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.12); }
.dash-dot:nth-child(1) { background: #FF5F4D; }
.dash-dot:nth-child(2) { background: #FFB347; }
.dash-dot:nth-child(3) { background: var(--accent-deep); }
.dash-url {
  margin-left: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute-2);
  background: rgba(255,255,255,0.04);
  padding: 4px 10px;
  border-radius: 6px;
}

.dash-body { display: grid; grid-template-columns: 220px 1fr; min-height: 560px; }
.dash-side {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-side .section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mute-2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 12px 6px;
}
.dash-side a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--mute-2);
  cursor: pointer;
  transition: all .12s;
}
.dash-side a:hover { background: rgba(255,255,255,0.04); color: var(--bg); }
.dash-side a.active { background: rgba(124,255,107,0.1); color: var(--bg); }
.dash-side a.active .ico { color: var(--accent); }
.dash-side .ico { width: 16px; height: 16px; opacity: 0.8; }

.dash-main { padding: 24px 28px; min-width: 0; }
.dash-main-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.dash-main-head h4 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; }
.dash-filters { display: flex; gap: 6px; align-items: center; }
.dash-chip {
  padding: 5px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  color: var(--mute-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dash-chip.active { background: var(--accent); color: var(--ink); border-color: var(--accent); font-weight: 600; }

.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.dash-table thead th {
  text-align: left;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute-2);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 500;
}
.dash-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background .12s;
  cursor: pointer;
}
.dash-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.dash-table tbody tr.selected { background: rgba(124,255,107,0.06); }
.dash-table td { padding: 12px; vertical-align: middle; }
.dash-table .name { font-weight: 500; }
.dash-table .domain { color: var(--mute-2); font-family: 'JetBrains Mono', monospace; font-size: 11px; }
.dash-table .signals { display: flex; gap: 4px; }
.signal-pill {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  padding: 2px 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  color: var(--mute-2);
}
.signal-pill.hot { background: rgba(255,95,77,0.16); color: var(--hot); }
.signal-pill.warm { background: rgba(255,179,71,0.16); color: var(--warn); }
.signal-pill.go { background: rgba(124,255,107,0.16); color: var(--accent); }

.dash-score {
  display: flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}
.dash-score .ring-mini {
  width: 28px; height: 28px;
  position: relative;
  display: grid; place-items: center;
}

.dash-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 20px;
}
.dash-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
}
.dash-card .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--mute-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dash-card .val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.dash-card .delta { font-size: 11px; color: var(--accent); margin-top: 2px; font-family: 'JetBrains Mono', monospace; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.1); }
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.35);
}
.price-card.featured .mute { color: var(--mute-2); }
.price-card .tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}
.price-card.featured .tier { color: var(--accent); }
.price-card.featured .featured-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.price-amount { display: flex; align-items: baseline; gap: 6px; }
.price-amount .amt {
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  font-family: 'Geist', sans-serif;
}
.price-amount .per { font-family: 'JetBrains Mono', monospace; color: var(--mute); font-size: 13px; }
.price-card.featured .per { color: var(--mute-2); }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.price-feats .check {
  flex: 0 0 16px;
  margin-top: 3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--ink);
}
.price-card.featured .price-feats .check { background: var(--accent); color: var(--ink); }
.price-card .btn-tier { width: 100%; justify-content: center; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
}
.faq-q .plus {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--mute);
  transition: all .2s;
}
.faq-item.open .plus { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--mute);
  font-size: 16px;
  line-height: 1.6;
  max-width: 70ch;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 0 24px; }

/* ---------- CTA Footer ---------- */
.cta {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
  padding: 140px 0 0;
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(124,255,107,0.35), transparent 50%);
  pointer-events: none;
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent, black 20%, black 60%, transparent);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 80px;
}
.cta h2 { font-size: clamp(48px, 7vw, 96px); font-weight: 500; letter-spacing: -0.035em; line-height: 1; max-width: 18ch; }
.cta p { color: var(--mute-2); font-size: 18px; max-width: 50ch; }
.cta-buttons { display: flex; gap: 12px; }

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 32px 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mute-2);
}
.footer .logo { color: var(--bg); }
.footer-links { display: flex; gap: 28px; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .pipeline { height: 480px; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .logos { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .demo-head { grid-template-columns: 1fr; }
}
