/* idcheck.now — marketing landing page */
/* Palette: deep navy/near-black, cyan #00f0ff, violet #8b5cf6 */

:root {
  --bg: #07060b;
  --bg-2: #0b0a12;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.09);
  --border-bright: rgba(0, 240, 255, 0.35);
  --text: #eceef6;
  --muted: #9aa0b8;
  --faint: #6b7089;
  --cyan: #00f0ff;
  --cyan-dim: rgba(0, 240, 255, 0.12);
  --violet: #8b5cf6;
  --violet-dim: rgba(139, 92, 246, 0.14);
  --green: #34d399;
  --amber: #fbbf24;
  --radius: 16px;
  --max: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(0, 240, 255, 0.25); }

/* Skip-to-content link (a11y) — hidden until keyboard focus */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--bg-2);
  color: var(--cyan);
  border: 1px solid var(--border-bright);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 6, 11, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
}
.brand img { width: 26px; height: 26px; display: block; }
.brand .now { color: var(--cyan); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover { border-color: var(--border-bright); background: var(--cyan-dim); color: var(--text); }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--text);
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
}
.btn-primary {
  background: linear-gradient(135deg, #00e5f5, #00c2d8);
  color: #04121a;
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 36px rgba(0, 240, 255, 0.4); }
.btn-ghost {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--border-bright); background: var(--surface-2); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 720px;
  background:
    radial-gradient(ellipse 600px 400px at 25% 30%, rgba(0, 240, 255, 0.09), transparent 70%),
    radial-gradient(ellipse 500px 380px at 75% 20%, rgba(139, 92, 246, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-inner > *,
.fraud-wrap > *,
.code-wrap > * { min-width: 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.eyebrow .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.hero h1 {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 22px;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--cyan) 10%, var(--violet) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 40px;
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-proof .stat { flex: none; }
.hero-proof .stat .num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-proof .stat .num .accent { color: var(--cyan); }
.hero-proof .stat .lbl {
  font-size: 12.5px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Hero visual: verification flow mock ---------- */
.hero-visual { position: relative; }
.flow-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 240, 255, 0.05);
}
.flow-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.flow-head .dots { display: flex; gap: 5px; margin-right: 6px; }
.flow-head .dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.14);
}
.flow-head .dots span:first-child { background: rgba(0,240,255,0.5); }
.flow-head .live {
  margin-left: auto;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 10.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flow-head .live::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 1.6s infinite;
}
.flow-steps { padding: 14px 0 6px; }
.fstep {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  animation: fstep-glow 8s infinite;
}
.fstep:nth-child(1) { animation-delay: 0s; }
.fstep:nth-child(2) { animation-delay: 2s; }
.fstep:nth-child(3) { animation-delay: 4s; }
.fstep:nth-child(4) { animation-delay: 6s; }
@keyframes fstep-glow {
  0%, 100% { background: transparent; border-color: transparent; }
  6%, 22% { background: var(--cyan-dim); border-color: rgba(0, 240, 255, 0.22); }
  30% { background: transparent; border-color: transparent; }
}
.fstep-icon {
  flex: none;
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.fstep-icon svg { width: 17px; height: 17px; }
.fstep-body { flex: 1; min-width: 0; }
.fstep-title { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; }
.fstep-detail {
  display: block;
  font-size: 12px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fstep-check {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.18);
  animation: fcheck 8s infinite;
}
.fstep:nth-child(1) .fstep-check { animation-delay: 0.5s; }
.fstep:nth-child(2) .fstep-check { animation-delay: 2.5s; }
.fstep:nth-child(3) .fstep-check { animation-delay: 4.5s; }
.fstep:nth-child(4) .fstep-check { animation-delay: 6.5s; }
.fstep-check svg {
  width: 12px; height: 12px;
  opacity: 0;
  animation: fcheck-mark 8s infinite;
}
.fstep:nth-child(1) .fstep-check svg { animation-delay: 0.5s; }
.fstep:nth-child(2) .fstep-check svg { animation-delay: 2.5s; }
.fstep:nth-child(3) .fstep-check svg { animation-delay: 4.5s; }
.fstep:nth-child(4) .fstep-check svg { animation-delay: 6.5s; }
@keyframes fcheck {
  0%, 100% { border-color: rgba(255,255,255,0.18); background: transparent; }
  6%, 92% { border-color: var(--green); background: rgba(52, 211, 153, 0.15); }
}
@keyframes fcheck-mark {
  0%, 100% { opacity: 0; }
  6%, 92% { opacity: 1; }
}
.flow-progress {
  margin: 12px 12px 4px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.07);
  overflow: hidden;
}
.flow-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  animation: fprogress 8s infinite;
}
@keyframes fprogress {
  0% { width: 0; }
  12% { width: 25%; }
  37% { width: 50%; }
  62% { width: 75%; }
  87%, 96% { width: 100%; }
  100% { width: 0; }
}
.flow-chip {
  position: absolute;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(13, 12, 20, 0.92);
  border: 1px solid var(--border);
  font-size: 11.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.flow-chip .ok { color: var(--green); font-weight: 700; }
.chip-1 { top: -18px; right: -14px; }
.chip-2 { top: 35%; left: -30px; }
.chip-3 { bottom: -18px; right: 22px; }
.decision-badge {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.07);
  font-size: 13px;
}
.decision-badge .dec { font-weight: 700; color: var(--green); letter-spacing: 0.06em; }
.decision-badge .score {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- Sections ---------- */
section { padding: 96px 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-tag {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 16.5px; }

/* ---------- How it works ---------- */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.how-card {
  position: relative;
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s;
}
.how-card:hover { border-color: var(--border-bright); transform: translateY(-3px); }
.how-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 8px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.how-card h3 { font-size: 16.5px; margin-bottom: 8px; letter-spacing: -0.01em; }
.how-card p { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.how-line {
  position: absolute;
  top: 46px;
  right: -14px;
  width: 8px;
  height: 1px;
  background: rgba(0, 240, 255, 0.4);
}
.how-card:last-child .how-line { display: none; }

/* ---------- Features grid ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feat-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.feat-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.feat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.22);
}
.feat-icon.violet { background: var(--violet-dim); border-color: rgba(139, 92, 246, 0.3); }
.feat-icon svg { width: 22px; height: 22px; }
.feat-card h3 { font-size: 17px; margin-bottom: 8px; letter-spacing: -0.015em; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.feat-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--cyan);
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.16);
}

/* ---------- Fraud checks ---------- */
.fraud-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.fraud-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fraud-item {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.fraud-item:hover { border-color: rgba(52, 211, 153, 0.35); }
.fraud-check-icon {
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  margin-top: 2px;
}
.fraud-check-icon svg { width: 12px; height: 12px; }
.fraud-item h3 { font-size: 14px; margin-bottom: 3px; letter-spacing: -0.01em; }
.fraud-item p { font-size: 12.5px; color: var(--faint); line-height: 1.5; }

/* ---------- Code snippet ---------- */
.code-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.code-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #0a0910;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.code-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.code-head .dots { display: flex; gap: 6px; }
.code-head .dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.code-head .fname {
  margin-left: 8px;
  font-size: 12px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}
.code-card pre {
  padding: 20px 22px;
  overflow-x: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.75;
}
.code-card code .tok-tag { color: #f472b6; }
.code-card code .tok-attr { color: var(--cyan); }
.code-card code .tok-str { color: #a7f3d0; }
.code-card code .tok-kw { color: var(--violet); }
.code-card code .tok-fn { color: var(--cyan); }
.code-card code .tok-cm { color: #565b73; font-style: italic; }
.code-card code .tok-punc { color: #8b90a8; }
.integration-points { display: grid; gap: 14px; margin-top: 28px; }
.integration-points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--muted);
}
.integration-points svg { flex: none; width: 18px; height: 18px; margin-top: 3px; }
.integration-points strong { color: var(--text); font-weight: 600; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 32px 28px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.06), rgba(139, 92, 246, 0.05));
  border-color: var(--border-bright);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.08);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  color: #04121a;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-tier { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; margin-bottom: 10px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-amount .val { font-size: 42px; font-weight: 800; letter-spacing: -0.04em; }
.price-amount .per { font-size: 14px; color: var(--faint); }
.price-desc { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }
.price-feats { display: grid; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-feats li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted);
  align-items: flex-start;
}
.price-feats svg { flex: none; width: 16px; height: 16px; margin-top: 3px; }
.price-card .btn { width: 100%; }
.addons {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px dashed rgba(0, 240, 255, 0.28);
  background: rgba(0, 240, 255, 0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
}
.addons .addons-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-right: 8px;
}
.addons .addon {
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
}
.pricing-note {
  margin-top: 22px;
  text-align: center;
  font-size: 13px;
  color: var(--faint);
}

/* ---------- Compliance strip ---------- */
.compliance-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent);
  padding: 64px 0;
}
.comp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.comp-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.comp-item svg { flex: none; width: 26px; height: 26px; margin-top: 2px; }
.comp-item h3 { font-size: 15px; margin-bottom: 4px; letter-spacing: -0.01em; }
.comp-item p { font-size: 13px; color: var(--faint); line-height: 1.5; }
.comp-item .soon {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 60%, rgba(0, 240, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-band h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-band p { color: var(--muted); margin-bottom: 32px; font-size: 17px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  background: var(--bg-2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--faint);
  max-width: 280px;
  line-height: 1.6;
}
.footer-col h3 {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--faint); transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--faint);
}
.footer-bottom .sys {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
}
.footer-bottom .sys .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-line { display: none; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .fraud-wrap, .code-wrap { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .chip-2 { left: -6px; }
  .chip-1 { right: -6px; }
}

@media (max-width: 720px) {
  section { padding: 72px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(9, 8, 15, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; font-size: 15px; }
  .nav-links .nav-cta { margin-top: 10px; justify-content: center; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 64px 0 56px; }
  .flow-chip { font-size: 10.5px; padding: 7px 11px; }
  .chip-1 { right: 4px; }
  .chip-2 { left: 4px; top: 32%; }
  .chip-3 { right: 8px; }
  .feat-grid, .fraud-list, .comp-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-proof { gap: 20px; }
  .addons { padding: 20px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .flow-progress span { width: 100%; }
  .fstep-check { border-color: var(--green); background: rgba(52, 211, 153, 0.15); }
  .fstep-check svg { opacity: 1; }
}

/* ============ FAQ ============ */
.faq-list { margin-top: 28px; display: grid; gap: 12px; max-width: 860px; }
.faq-item { background: var(--bg-2); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 0; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 17px; color: var(--text); position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; translate: 0 -50%; color: var(--cyan); font-weight: 700; font-size: 20px; transition: transform .15s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--cyan); }
.faq-item p { padding: 0 22px 18px; color: rgba(236,238,246,.72); font-size: 15.5px; line-height: 1.65; }


/* ============ Subpages (pricing, compare) ============ */
.page-hero {
  position: relative;
  padding: 88px 0 64px;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto;
  height: 620px;
  background:
    radial-gradient(ellipse 600px 400px at 25% 30%, rgba(0, 240, 255, 0.09), transparent 70%),
    radial-gradient(ellipse 500px 380px at 75% 20%, rgba(139, 92, 246, 0.12), transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; max-width: 820px; }
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.1;
  letter-spacing: -0.033em;
  font-weight: 800;
  margin-bottom: 20px;
}
.page-hero h1 .grad {
  background: linear-gradient(100deg, var(--cyan) 10%, var(--violet) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-hero .page-sub {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 30px;
}
.updated-note {
  display: inline-block;
  margin-top: 26px;
  font-size: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--faint);
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
}

/* Prose blocks on subpages */
.prose { max-width: 780px; }
.prose p { color: var(--muted); font-size: 16px; margin-bottom: 16px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--cyan); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { display: grid; gap: 10px; margin: 0 0 16px 0; }
.prose ul li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15.5px;
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}
.fact-note {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--faint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Comparison tables */
.cmp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  -webkit-overflow-scrolling: touch;
}
.cmp-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 14px;
}
.cmp-table th,
.cmp-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.cmp-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover td { background: rgba(255, 255, 255, 0.015); }
.cmp-table td.row-label { font-weight: 600; color: var(--text); white-space: nowrap; }
.cmp-table td.col-us,
.cmp-table th.col-us {
  background: rgba(0, 240, 255, 0.055);
  border-left: 1px solid rgba(0, 240, 255, 0.22);
  border-right: 1px solid rgba(0, 240, 255, 0.22);
}
.cmp-table thead th.col-us { color: var(--cyan); }
.cmp-table .cell-yes { color: var(--green); font-weight: 600; }
.cmp-table .cell-no { color: var(--faint); }
.cmp-table .cell-partial { color: var(--amber); }
.cmp-table .cell-sub {
  display: block;
  font-size: 12px;
  color: var(--faint);
  font-weight: 400;
  margin-top: 2px;
}

/* Hub cards (compare index) */
.hub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hub-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.hub-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.hub-card .hub-vs {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 10px;
}
.hub-card h3 { font-size: 20px; letter-spacing: -0.02em; margin-bottom: 8px; }
.hub-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
.hub-card .hub-meta {
  margin-top: 16px;
  font-size: 12.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--cyan);
}
.hub-card .hub-link {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hub-card:hover .hub-link { color: var(--cyan); }

/* Cost calculator */
.calc-card {
  border-radius: 20px;
  border: 1px solid var(--border-bright);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.05), rgba(139, 92, 246, 0.04));
  padding: 36px 34px;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.06);
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.calc-head label { font-size: 14px; font-weight: 600; color: var(--muted); }
.calc-head .calc-vol {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  outline: none;
  margin: 10px 0 6px;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.55);
  cursor: grab;
}
.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.55);
  cursor: grab;
}
.calc-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--faint);
  margin-bottom: 28px;
}
.calc-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.calc-out {
  padding: 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(7, 6, 11, 0.55);
}
.calc-out.us { border-color: rgba(0, 240, 255, 0.35); }
.calc-out .calc-out-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.calc-out.us .calc-out-label { color: var(--cyan); }
.calc-out .calc-out-num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.calc-out .calc-out-sub {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--faint);
  line-height: 1.5;
}
.calc-savings {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(52, 211, 153, 0.3);
  background: rgba(52, 211, 153, 0.06);
  font-size: 14px;
  color: var(--muted);
}
.calc-savings strong { color: var(--green); font-weight: 700; }

/* "Why no sales call" pillars reuse .comp-grid; add-ons table reuse .cmp-table */

/* Verdict blocks */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.verdict-card {
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}
.verdict-card.us {
  border-color: var(--border-bright);
  background: linear-gradient(180deg, rgba(0, 240, 255, 0.06), rgba(139, 92, 246, 0.05));
}
.verdict-card h3 { font-size: 16.5px; margin-bottom: 14px; letter-spacing: -0.01em; }
.verdict-card.us h3 { color: var(--cyan); }
.verdict-card ul { display: grid; gap: 10px; }
.verdict-card ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.verdict-card ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--violet);
}
.verdict-card.us ul li::before { background: var(--cyan); box-shadow: 0 0 8px rgba(0, 240, 255, 0.5); }

/* Breadcrumb */
.crumbs {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 26px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--cyan); }
.crumbs .sep { color: var(--faint); }

@media (max-width: 720px) {
  .hub-grid, .verdict-grid, .calc-outputs { grid-template-columns: 1fr; }
  .calc-card { padding: 26px 20px; }
  .cmp-table th, .cmp-table td { padding: 12px 14px; }
}


/* ============ State pages (states/*.html, generated by gen-states.py) ============ */
.state-hero { padding: 72px 0 64px; }
.state-hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 20px;
}
.state-hero .hero-sub { max-width: 640px; }

.breadcrumb {
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 28px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan); }

/* Badges */
.state-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--muted);
  white-space: nowrap;
}
.badge-format {
  color: var(--cyan);
  border-color: rgba(0, 240, 255, 0.25);
  background: rgba(0, 240, 255, 0.07);
}
.badge-recompute {
  color: var(--violet);
  border-color: rgba(139, 92, 246, 0.35);
  background: var(--violet-dim);
}
.badge-dldv {
  color: var(--green);
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.08);
}
.badge-neutral { color: var(--amber); border-color: rgba(251, 191, 36, 0.3); background: rgba(251, 191, 36, 0.07); }

/* Format / recomputation callout */
.format-callout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border-bright);
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.05);
  max-width: 900px;
}
.format-callout .format-pattern {
  flex: none;
  padding: 16px 20px;
  border-radius: 12px;
  background: #0a0910;
  border: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
}
.format-callout .format-pattern code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--cyan);
}
.format-callout .format-body { flex: 1; min-width: 0; }
.format-callout .format-body p { font-size: 15px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.format-callout .format-body p:last-child { margin-bottom: 0; }
.format-callout .format-body strong { color: var(--text); }
.format-callout .format-body code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  color: var(--cyan);
  background: var(--cyan-dim);
  padding: 1px 6px;
  border-radius: 5px;
}
.format-callout .format-note {
  font-size: 13.5px;
  color: var(--faint);
  border-left: 2px solid var(--violet);
  padding-left: 14px;
}
.dldv-callout { border-color: var(--border); box-shadow: none; }
.dldv-callout > .badge { flex: none; margin-top: 4px; }

/* Barcode elements table */
.elem-table-wrap {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.elem-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.elem-table th, .elem-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.elem-table tr:last-child td { border-bottom: none; }
.elem-table th {
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
  background: rgba(255, 255, 255, 0.02);
}
.elem-table td:first-child { white-space: nowrap; }
.elem-table td code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--cyan);
  font-weight: 700;
}
.elem-table td:nth-child(2) { color: var(--text); font-weight: 500; }
.elem-table td:nth-child(3) { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* State hub: filter + grid */
.state-filter { margin-bottom: 28px; max-width: 460px; }
.state-filter input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.state-filter input:focus {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.12);
}
.state-filter input::placeholder { color: var(--faint); }

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.state-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.state-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}
.state-card-head { display: flex; align-items: center; gap: 12px; }
.state-abbr {
  flex: none;
  font-size: 12px;
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--cyan);
  padding: 4px 9px;
  border-radius: 7px;
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 240, 255, 0.2);
}
.state-card h3 { font-size: 16px; letter-spacing: -0.015em; }
.state-fmt { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.state-empty { color: var(--faint); font-size: 14.5px; margin-top: 8px; }

@media (max-width: 980px) {
  .state-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .state-grid { grid-template-columns: 1fr; }
  .format-callout { flex-direction: column; gap: 18px; padding: 22px; }
  .format-callout .format-pattern { max-width: none; width: 100%; }
  .elem-table-wrap { overflow-x: auto; }
  .elem-table { min-width: 640px; }
  .state-hero { padding: 56px 0 48px; }
}
