/* ============================================================
   LEADSTORE — Design System v2 (Tech / Emerald / Grid)
   Clean white surfaces, emerald accent, Inter sans, sharp corners.
   ============================================================ */

:root{
  /* Surfaces — cool, technical, near-white */
  --bg:           #FFFFFF;
  --bg-2:         #F6F8F7;
  --surface:      #F0F4F2;
  --card:         #FFFFFF;
  --card-2:       #FBFCFB;

  /* Ink */
  --ink:          #0A0E0C;
  --ink-2:        #1F2724;
  --ink-3:        #404844;
  --muted:        #6B7570;
  --muted-2:      #98A19B;
  --line:         #E5EAE7;
  --line-2:       #EEF1EF;
  --line-3:       #F4F6F4;

  /* Emerald accent */
  --accent:       #059669;
  --accent-2:     #047857;
  --accent-3:     #10B981;
  --accent-tint:  #D1FAE5;
  --accent-glow:  rgba(5,150,105,.12);

  /* Status */
  --good:         #059669;
  --warn:         #C2410C;
  --info:         #1E40AF;

  /* Dark surfaces (for inverted sections) */
  --dark:         #0A0E0C;
  --dark-2:       #131815;
  --dark-3:       #1F2724;

  /* Radii — sharp, not pillowy */
  --r-xs: 4px;
  --r-sm: 6px;
  --r:    8px;
  --r-lg: 12px;
  --r-xl: 16px;

  /* Spacing — 4pt grid */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 32px; --s-8: 48px;
  --s-9: 64px; --s-10: 96px;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 48px);

  /* Type — Inter + JetBrains Mono only, no serif */
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Motion */
  --ease: cubic-bezier(.2, .6, .2, 1);
  --t-fast: .15s;
  --t-base: .22s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  text-wrap: pretty;
  overflow-x: hidden;
  font-feature-settings: "cv11" 1, "ss01" 1;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: white; }

/* ---------- Container + sections ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(72px, 8vw, 112px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }
.section--alt { background: var(--bg-2); }
.section--dark { background: var(--dark); color: #F0F4F2; }
.section--dark .muted { color: rgba(240,244,242,.5); }

/* ============ TYPE ============ */
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }

.display {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.0;
  text-wrap: balance;
}
.display strong { color: var(--accent); font-weight: 600; }

.h1 { font-size: clamp(32px, 4.8vw, 60px); font-weight: 600; letter-spacing: -0.034em; line-height: 1.04; }
.h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; }
.h2 strong { color: var(--accent); font-weight: 600; }
.h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 600; letter-spacing: -0.018em; line-height: 1.2; }
.h4 { font-size: 17px; font-weight: 600; letter-spacing: -0.012em; }

.kicker {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.04em; color: var(--accent);
  font-weight: 500; text-transform: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.kicker::before { content: "//"; opacity: 0.5; }

.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--muted);
  text-transform: uppercase;
}

.lead { font-size: clamp(16px, 1.3vw, 19px); color: var(--ink-2); max-width: 60ch; line-height: 1.55; }
.muted { color: var(--muted); }
.mono { font-family: var(--mono); }

/* ============ BUTTONS — sharp, smaller ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all var(--t-base) var(--ease);
  font-family: var(--sans);
}
.btn--primary { background: var(--ink); color: white; }
.btn--primary:hover { background: #1F2724; }
.btn--accent { background: var(--accent); color: white; }
.btn--accent:hover { background: var(--accent-2); transform: translateY(-1px); }
.btn--ghost { background: white; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--ghost-dark { background: transparent; border-color: rgba(255,255,255,.18); color: #F0F4F2; }
.btn--ghost-dark:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.btn--lg { padding: 13px 22px; font-size: 14.5px; }
.btn .arr { display: inline-block; transition: transform var(--t-base) var(--ease); }
.btn:hover .arr { transform: translateX(3px); }
.btn-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

/* ============ NAV — flatter, less chrome ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-2);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; letter-spacing: -0.02em; font-size: 17px;
}
.brand__mark { width: 22px; height: 22px; flex-shrink: 0; }
.nav__links { display: flex; gap: 0; align-items: center; }
.nav__links a {
  padding: 8px 12px;
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
  transition: color var(--t-fast);
}
.nav__links a:hover { color: var(--accent); }
.nav__cta { display: flex; gap: 8px; align-items: center; }
.nav__cta .login { font-size: 13.5px; padding: 8px 10px; color: var(--ink-2); font-weight: 500; }
.nav__cta .login:hover { color: var(--accent); }
.nav__btn-mobile { display: none; }
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__cta .login, .nav__cta .btn--ghost { display: none; }
  .nav__btn-mobile { display: inline-flex; padding: 8px; border-radius: var(--r-sm); }
  .nav__btn-mobile:hover { background: var(--surface); }
}
.mobile-menu {
  position: fixed; inset: 64px 0 0 0; background: white; z-index: 49;
  padding: 24px var(--pad);
  display: none; flex-direction: column; gap: 2px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 10px; border-bottom: 1px solid var(--line-2);
  font-size: 17px; font-weight: 500;
}
.mobile-menu .btn { margin-top: 12px; justify-content: center; }

/* ============ LANG TOGGLE ============ */
.lang { display: inline-flex; gap: 0; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.lang button, .lang a { font-family: var(--mono); font-size: 11px; padding: 5px 10px; color: var(--muted); font-weight: 500; }
.lang button.on, .lang a.on { background: var(--ink); color: white; }
.lang--mobile { margin-top: 16px; align-self: flex-start; }

/* ============ HERO — single column, centered narrative ============ */
.hero {
  padding: clamp(64px, 9vw, 128px) 0 clamp(56px, 7vw, 88px);
  background:
    radial-gradient(ellipse at top right, rgba(5,150,105,.04), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(5,150,105,.03), transparent 60%);
}
.hero__inner {
  display: grid; grid-template-columns: 1fr; gap: 56px;
  max-width: 1100px; margin: 0 auto;
}
.hero__kicker { margin-bottom: 28px; }
.hero h1 { margin-bottom: 24px; max-width: 18ch; }
.hero__sub { font-size: clamp(17px, 1.6vw, 21px); color: var(--ink-3); max-width: 56ch; line-height: 1.5; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.hero__cta .btn { padding: 14px 24px; font-size: 15px; }
.hero__micro {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 18px;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
}
.hero__micro span { display: inline-flex; align-items: center; gap: 6px; }
.hero__micro span::before { content: "✓"; color: var(--accent); font-weight: 700; }

/* ============ HERO TERMINAL — replacement for brief card ============ */
.terminal {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--r-lg);
  font-family: var(--mono);
  color: #E5EAE7;
  font-size: 12.5px;
  line-height: 1.65;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.3);
}
.terminal__head {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--dark-3);
}
.terminal__dots { display: flex; gap: 5px; }
.terminal__dots span { width: 9px; height: 9px; border-radius: 50%; background: var(--dark-3); }
.terminal__path { margin-left: 12px; font-size: 11px; color: var(--muted-2); }
.terminal__body { padding: 18px 20px; }
.terminal__line { display: block; }
.terminal__prompt { color: var(--accent-3); }
.terminal__cmd { color: #E5EAE7; }
.terminal__out { color: var(--muted-2); display: block; }
.terminal__out .key { color: #B5C2BB; }
.terminal__out .val { color: var(--accent-3); }
.terminal__out .num { color: #FACC15; }
.terminal__cursor { display: inline-block; width: 7px; height: 14px; background: var(--accent-3); margin-left: 3px; vertical-align: -2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ============ DASH — full dashboard mockup (rich, friendly) ============ */
.dash {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,.02),
    0 30px 80px -24px rgba(5,150,105,.18),
    0 12px 28px -14px rgba(0,0,0,.08);
}

/* Top bar */
.dash__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
  font-size: 12px;
}
.dash__bar-l { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.dash__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; font-weight: 500; color: var(--accent); }
.dash__live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(5,150,105,.5);
  animation: lp-pulse 2s var(--ease) infinite;
}
.dash__bar-sep { color: var(--muted-2); }
.dash__bar-crumb { color: var(--muted); font-family: var(--mono); font-size: 11px; }
.dash__bar-crumb--cur { color: var(--ink); font-weight: 500; }
.dash__bar-counter { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.dash__bar-counter strong { color: var(--accent); font-weight: 600; }

/* KPI strip */
.dash__kpis {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line-2);
}
@media (max-width: 640px) { .dash__kpis { grid-template-columns: 1fr 1fr; } }
.dash__kpi {
  padding: 14px 16px;
  border-right: 1px solid var(--line-2);
  display: flex; flex-direction: column; gap: 4px;
}
.dash__kpi:last-child { border-right: none; }
@media (max-width: 640px) {
  .dash__kpi:nth-child(2) { border-right: none; }
  .dash__kpi:nth-child(1), .dash__kpi:nth-child(2) { border-bottom: 1px solid var(--line-2); }
}
.dash__kpi-n {
  font-size: 22px; font-weight: 700; letter-spacing: -0.022em; color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 3px;
}
.dash__kpi-n small { font-family: var(--mono); font-size: 10px; color: var(--muted); font-weight: 500; }
.dash__kpi-l { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.02em; }
.dash__kpi-d { font-family: var(--mono); font-size: 10px; color: var(--muted); }
.dash__kpi-d--up { color: var(--accent); }

/* Lead detail block */
.dash__lead { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

.dash__lead-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.dash__lead-id { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.04em; }
.dash__lead-chips { display: flex; gap: 5px; flex-wrap: wrap; }

.dash__lead-top {
  display: grid; grid-template-columns: 48px 1fr auto;
  gap: 14px; align-items: center;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
}
.dash__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 600;
  letter-spacing: -0.02em;
}
.dash__id-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dash__id-name { font-size: 15px; font-weight: 600; letter-spacing: -0.014em; color: var(--ink); }
.dash__id-role { font-size: 12.5px; color: var(--muted); }
.dash__id-meta { display: flex; gap: 6px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; color: var(--ink-2); margin-top: 3px; }
.dash__id-mail { color: var(--accent); }
.dash__id-dot { color: var(--muted-2); }

/* Score (bigger) */
.dash__score {
  position: relative;
  width: 64px; height: 64px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dash__score svg { position: absolute; inset: 0; }
.dash__score-n { font-size: 18px; font-weight: 700; color: var(--accent); letter-spacing: -0.02em; line-height: 1; z-index: 1; }
.dash__score-l { font-family: var(--mono); font-size: 8px; color: var(--muted); letter-spacing: 0.06em; line-height: 1; margin-top: 1px; z-index: 1; }

/* 2-col fields grid */
.dash__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 640px) { .dash__cols { grid-template-columns: 1fr; } }
.dash__col {
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
}
.dash__col-t {
  font-family: var(--mono); font-size: 10px;
  color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-2);
}
.dash__rows { display: flex; flex-direction: column; gap: 7px; }
.dash__row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  gap: 10px;
}
.dash__row .k { font-family: var(--mono); font-size: 10.5px; color: var(--muted); letter-spacing: 0.02em; }
.dash__row .v {
  font-size: 12.5px; font-weight: 500; color: var(--ink); letter-spacing: -0.008em;
  display: inline-flex; align-items: center; gap: 6px;
}

/* Tags */
.dash__tags { display: flex; gap: 5px; flex-wrap: wrap; }
.dash__tag {
  font-family: var(--mono); font-size: 11px;
  padding: 3px 8px; border-radius: var(--r-xs);
  background: var(--bg-2);
  color: var(--muted);
  border: 1px solid var(--line-2);
  transition: all var(--t-fast);
}
.dash__tag:hover { background: var(--accent-tint); color: var(--accent-2); border-color: rgba(5,150,105,.2); }

/* Action buttons */
.dash__actions { display: flex; gap: 6px; flex-wrap: wrap; padding-top: 4px; }
.dash__btn {
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.dash__btn:hover { border-color: var(--ink); background: var(--bg-2); }
.dash__btn--primary { background: var(--accent); color: white; border-color: var(--accent); }
.dash__btn--primary:hover { background: var(--accent-2); border-color: var(--accent-2); }

/* ============ LEAD PREVIEW — friendly CRM-style card ============ */
.lead-preview {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(0,0,0,.02),
    0 24px 60px -20px rgba(5,150,105,.18),
    0 8px 24px -12px rgba(0,0,0,.08);
}
.lead-preview__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
}
.lp-head__left { display: inline-flex; align-items: center; gap: 9px; }
.lp-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(5,150,105,.5);
  animation: lp-pulse 2s var(--ease) infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(5,150,105,.55); }
  70%  { box-shadow: 0 0 0 8px rgba(5,150,105,0); }
  100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); }
}
.lp-title { font-size: 13px; font-weight: 600; color: var(--ink); letter-spacing: -0.012em; }
.lp-counter { font-family: var(--mono); font-size: 11.5px; color: var(--muted); }
.lp-counter__n { color: var(--accent); font-weight: 600; }

.lead-preview__body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }

/* Lead card row */
.lp-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
}
.lp-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.02em;
}
.lp-card__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.lp-card__name { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; color: var(--ink); }
.lp-card__role { font-size: 12.5px; color: var(--muted); }
.lp-card__chips { display: flex; gap: 5px; margin-top: 4px; flex-wrap: wrap; }
.lp-chip {
  font-size: 10.5px; font-weight: 500;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.lp-chip--good {
  background: var(--accent-tint);
  color: var(--accent-2);
  border-color: rgba(5,150,105,.2);
}
.lp-chip--smart {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

/* Score ring */
.lp-card__score {
  position: relative;
  width: 56px; height: 56px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-score-ring { position: absolute; inset: 0; }
.lp-score-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
  z-index: 1;
}
.lp-score-lbl {
  font-family: var(--mono);
  font-size: 7.5px;
  color: var(--muted);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 2px;
  z-index: 1;
}

/* Fields grid */
.lp-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  overflow: hidden;
}
.lp-field {
  background: white;
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.lp-field__k {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lp-field__v {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.008em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-bar {
  display: inline-block;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: var(--line-2);
  overflow: hidden;
  flex-shrink: 0;
}
.lp-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  border-radius: 2px;
}

/* Next action banner */
.lp-action {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: var(--dark);
  color: white;
  border-radius: var(--r);
}
.lp-action__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-action__k {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.lp-action__v {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* ============ STATS STRIP — bands ============ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .stats-strip { grid-template-columns: 1fr 1fr; } }
.stat {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}
.stat:last-child { border-right: none; }
@media (max-width: 720px) { .stat:nth-child(2) { border-right: none; } .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); } }
.stat__n { font-size: clamp(28px, 3vw, 36px); font-weight: 600; letter-spacing: -0.028em; line-height: 1; }
.stat__n .unit { font-family: var(--mono); font-size: 14px; color: var(--muted); margin-left: 2px; font-weight: 500; }
.stat__l { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: 0.02em; }

/* ============ SHEAD — section headers, simpler ============ */
.shead { display: flex; flex-direction: column; gap: 14px; max-width: 78ch; margin-bottom: clamp(40px, 5vw, 64px); }
.shead--center { text-align: center; align-items: center; margin-left: auto; margin-right: auto; }
.shead__title { font-size: clamp(28px, 4vw, 44px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.08; }
.shead__title strong { color: var(--accent); font-weight: 600; }
.shead__sub { color: var(--ink-3); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.5; max-width: 60ch; }

/* ============ HOW IT WORKS — 4 step cards horizontal ============ */
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 980px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  position: relative;
  transition: border-color var(--t-base), transform var(--t-base);
}
.step-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.step-card__n { font-family: var(--mono); font-size: 11px; color: var(--accent); letter-spacing: 0.04em; font-weight: 500; }
.step-card__t { font-size: 18px; font-weight: 600; letter-spacing: -0.014em; line-height: 1.25; color: var(--ink); }
.step-card__d { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin-top: auto; }

/* ============ INDUSTRIES — colorful tag grid ============ */
.ind-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
@media (max-width: 900px) { .ind-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .ind-grid { grid-template-columns: 1fr 1fr; } }
.ind-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 124px;
  position: relative;
  transition: all var(--t-base);
}
.ind-card:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-2px); }
.ind-card:hover .ind-card__t { color: white; }
.ind-card:hover .ind-card__d { color: rgba(255,255,255,.85); }
.ind-card:hover .ind-card__tag { color: rgba(255,255,255,.7); }
.ind-card__tag { font-family: var(--mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.04em; font-weight: 500; transition: color var(--t-base); }
.ind-card__t { font-size: 16px; font-weight: 600; letter-spacing: -0.012em; }
.ind-card__d { font-size: 12.5px; color: var(--muted); line-height: 1.5; }

/* ============ LEAD-TYPES TABLE (replaces tier cards) ============ */
.types-table {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.types-row {
  display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 1.4fr 110px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line-2);
  gap: 24px;
}
.types-row:last-child { border-bottom: none; }
.types-row--head { background: var(--bg-2); padding: 14px 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted); text-transform: uppercase; }
@media (max-width: 800px) {
  .types-row { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .types-row--head { display: none; }
  .types-row > div { padding: 0; }
}
.type-name { display: flex; flex-direction: column; gap: 4px; }
.type-name .badge {
  font-family: var(--mono); font-size: 10px;
  padding: 2px 7px; border-radius: 99px;
  background: var(--accent-tint); color: var(--accent-2);
  display: inline-flex; align-self: flex-start;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.type-name .name { font-size: 18px; font-weight: 600; letter-spacing: -0.014em; }
.type-price { font-size: 18px; font-weight: 600; color: var(--accent); letter-spacing: -0.014em; }
.type-price small { font-family: var(--mono); font-size: 11px; color: var(--muted); font-weight: 400; display: block; }
.type-intent {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11.5px; color: var(--ink-2);
}
.type-intent .bar { display: inline-flex; gap: 2px; }
.type-intent .bar i { width: 4px; height: 14px; background: var(--line); border-radius: 1px; }
.type-intent .bar i.on { background: var(--accent); }
.type-desc { font-size: 13.5px; color: var(--muted); line-height: 1.5; }
.type-cta a { display: inline-flex; align-items: center; gap: 4px; font-family: var(--mono); font-size: 12px; color: var(--accent); font-weight: 500; transition: gap var(--t-base); }
.type-cta a:hover { gap: 8px; }

/* ============ COMPARISON TABLE — dark variant ============ */
.compare {
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: #E5EAE7;
}
.compare__row {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 16px 28px;
  border-bottom: 1px solid var(--dark-3);
}
.compare__row:last-child { border-bottom: none; }
.compare__row--head {
  background: var(--dark-2); padding: 18px 28px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted-2); text-transform: uppercase;
}
.compare__row > div { display: flex; align-items: center; font-size: 14px; }
.compare__row > div:first-child { font-family: var(--mono); font-size: 12px; color: var(--muted-2); text-transform: uppercase; letter-spacing: 0.04em; }
.compare__row--head > div:first-child { color: var(--muted-2); }
.compare__row > div:not(:first-child) { color: #E5EAE7; }
.compare__row--head > div:nth-child(3) { color: var(--accent-3); font-weight: 600; }
@media (max-width: 720px) {
  .compare__row { grid-template-columns: 1fr 1fr; padding: 14px 20px; }
  .compare__row > div:first-child { grid-column: 1/-1; padding-bottom: 8px; }
}

/* ============ PARTNERS — light card on light bg ============ */
.partner-cta {
  background: var(--dark);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
  color: #F0F4F2;
}
@media (max-width: 880px) { .partner-cta { grid-template-columns: 1fr; } }
.partner-cta h2 { color: #F0F4F2; }
.partner-cta h2 strong { color: var(--accent-3); }
.partner-cta .lead { color: rgba(240,244,242,.7); }
.partner-card {
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--r);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--mono); font-size: 12px;
}
.partner-card__row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--dark-3); }
.partner-card__row:last-child { border-bottom: none; }
.partner-card__row .k { color: var(--muted-2); letter-spacing: 0.02em; }
.partner-card__row .v { color: #F0F4F2; font-weight: 500; }
.partner-card__row .v.acc { color: var(--accent-3); }

/* ============ CALC ============ */
.calc-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 48px;
}
@media (max-width: 880px) { .calc-grid { grid-template-columns: 1fr; } }
.calc-controls { display: flex; flex-direction: column; gap: 22px; }
.calc-field { display: flex; flex-direction: column; gap: 8px; }
.calc-field .lab {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 12px; color: rgba(240,244,242,.7);
  letter-spacing: 0.02em;
}
.calc-field .lab .val { color: #F0F4F2; font-weight: 500; }
.calc-field input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  cursor: pointer;
}
.calc-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--accent-3);
  border: 3px solid var(--dark);
  cursor: pointer;
}
.calc-output {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  padding: 32px;
}
.calc-output .label { font-family: var(--mono); font-size: 11px; color: rgba(240,244,242,.6); letter-spacing: 0.04em; margin-bottom: 8px; }
.calc-output .month { font-size: clamp(40px, 5vw, 56px); font-weight: 600; color: var(--accent-3); letter-spacing: -0.036em; line-height: 1; }
.calc-output .year { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); font-family: var(--mono); font-size: 13px; color: rgba(240,244,242,.7); }
.calc-output .year .v { color: #F0F4F2; font-size: 22px; font-weight: 600; font-family: var(--sans); letter-spacing: -0.018em; }
.calc-output .note { font-family: var(--mono); font-size: 10.5px; color: rgba(240,244,242,.45); line-height: 1.6; margin-top: 18px; }

/* ============ FEATURES — checkered grid ============ */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden;
}
@media (max-width: 800px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .features-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 28px 24px;
  background: white;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 160px;
}
.feature:nth-child(3n) { border-right: none; }
.feature__icon { width: 28px; height: 28px; border-radius: var(--r-sm); background: var(--accent-tint); color: var(--accent-2); display: flex; align-items: center; justify-content: center; font-family: var(--mono); font-size: 13px; font-weight: 600; }
.feature__t { font-size: 15px; font-weight: 600; letter-spacing: -0.012em; }
.feature__d { font-size: 13px; color: var(--muted); line-height: 1.55; margin-top: auto; }

/* ============ TESTIMONIALS — different layout ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.testi-card__rating { display: flex; gap: 2px; color: #F59E0B; font-size: 14px; }
.testi-card__quote { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); flex: 1; }
.testi-card__attr { display: flex; align-items: center; gap: 10px; padding-top: 18px; border-top: 1px solid var(--line-2); }
.testi-card__attr .av { width: 32px; height: 32px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-2); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 12px; }
.testi-card__attr .name { font-size: 13.5px; font-weight: 600; }
.testi-card__attr .role { font-family: var(--mono); font-size: 11px; color: var(--muted); }

/* ============ BIG CTA BAND ============ */
.bigcta {
  padding: clamp(72px, 9vw, 128px) 0;
  text-align: center;
  background:
    linear-gradient(135deg, var(--dark) 0%, #051F15 100%);
  color: #F0F4F2;
}
.bigcta h2 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 600;
  letter-spacing: -0.036em; line-height: 1.04;
  color: #F0F4F2;
  max-width: 22ch; margin: 0 auto 24px;
}
.bigcta h2 strong { color: var(--accent-3); font-weight: 600; }
.bigcta__sub { font-size: clamp(16px, 1.3vw, 19px); color: rgba(240,244,242,.65); max-width: 56ch; margin: 0 auto 32px; line-height: 1.5; }
.bigcta__btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ============ FAQ — flat accordion ============ */
.faq-list { display: flex; flex-direction: column; max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 22px 0;
  font-size: 16px; font-weight: 600; letter-spacing: -0.014em;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  color: var(--ink);
}
.faq-q .icon { font-family: var(--mono); font-size: 18px; color: var(--accent); transition: transform var(--t-base); flex-shrink: 0; }
.faq-item[aria-expanded="true"] .faq-q .icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 32px 24px 0; font-size: 14.5px; color: var(--ink-3); line-height: 1.65; max-width: 70ch; }
.faq-item[aria-expanded="true"] .faq-a { display: block; }

/* ============ FORM ============ */
.form-card { background: white; border: 1px solid var(--line); border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.02em; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: white; border-radius: var(--r-sm);
  color: var(--ink); width: 100%;
  transition: border-color var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 80px; }

.signup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
@media (max-width: 880px) { .signup-grid { grid-template-columns: 1fr; } }

/* ============ TRUST LOGOS ============ */
.trust-bar { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar__label { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 20px; text-align: center; }
.trust-bar__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 40px; }
.tlogo { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-3); font-size: 14px; font-weight: 600; opacity: 0.7; transition: opacity var(--t-base); }
.tlogo:hover { opacity: 1; }
.tlogo__mark { width: 14px; height: 14px; flex-shrink: 0; }

/* ============ FOOTER ============ */
.foot { background: var(--dark); color: rgba(240,244,242,.55); padding: 72px 0 28px; }
.foot__top { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 4fr); gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--dark-3); }
@media (max-width: 980px) { .foot__top { grid-template-columns: 1fr; } }
.foot__brand { display: flex; flex-direction: column; gap: 14px; max-width: 360px; }
.foot__brand .brand { color: #F0F4F2; font-size: 18px; }
.foot__claim { font-size: 14px; line-height: 1.55; color: rgba(240,244,242,.55); }
.foot__cols { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 1100px) { .foot__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 32px; } }
@media (max-width: 640px) { .foot__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; } }
.foot__col h4 { font-family: var(--mono); font-size: 10.5px; color: rgba(240,244,242,.4); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
.foot__col ul { display: flex; flex-direction: column; gap: 8px; }
.foot__col li a { font-size: 13px; color: rgba(240,244,242,.65); transition: color var(--t-fast); }
.foot__col li a:hover { color: var(--accent-3); }
.foot__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; gap: 18px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px; color: rgba(240,244,242,.35); letter-spacing: 0.02em;
}

/* ============ COOKIE BANNER ============ */
.cookies {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  max-width: 520px; margin-left: auto;
  background: white; border: 1px solid var(--line);
  border-radius: var(--r); padding: 20px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.15);
  z-index: 60;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .5s var(--ease), opacity .5s;
}
.cookies.hidden { transform: translateY(140%); opacity: 0; pointer-events: none; }
.cookies__t { font-size: 14.5px; font-weight: 600; }
.cookies__d { font-size: 13px; color: var(--muted); line-height: 1.5; }
.cookies__row { display: flex; gap: 8px; flex-wrap: wrap; }
.cookies__row .btn { padding: 8px 14px; font-size: 12.5px; }
.cookies__links { font-size: 11.5px; color: var(--muted-2); font-family: var(--mono); }
.cookies__links a { text-decoration: underline; }

/* ============ SEO INTERNAL LINKING ============ */
.seo-links { padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(56px, 7vw, 88px); }
.seo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 980px) { .seo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .seo-grid { grid-template-columns: 1fr; } }
.seo-col h4 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.seo-col ul { display: flex; flex-direction: column; gap: 7px; }
.seo-col li a {
  font-size: 13.5px; color: var(--ink-2);
  transition: color var(--t-fast);
  display: inline-flex; align-items: center; gap: 6px;
}
.seo-col li a::before {
  content: "→";
  font-family: var(--mono); font-size: 11px;
  color: var(--muted-2);
  transition: transform var(--t-fast), color var(--t-fast);
}
.seo-col li a:hover { color: var(--accent); }
.seo-col li a:hover::before { color: var(--accent); transform: translateX(2px); }

/* ============ REVEAL — fail-safe (visible by default, animated only with JS) ============ */
[data-reveal] { opacity: 1; transform: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
html.js [data-reveal] { opacity: 0; transform: translateY(14px); }
html.js [data-reveal].in { opacity: 1; transform: none; }

/* ============ Legacy compat (for plan + pricing.js if anything residual) ============ */
.text-accent { color: var(--accent); }
