/* kyb-scanner landing — ground-up rebuild
 * Inspired by Middesk / Alloy / Sardine visual language, with our own marks:
 *   - Dark navy hero (#0B1220) with a real rendered verdict card as the centerpiece
 *   - Data-source logo band (honest move — we have no customers yet, but we
 *     have provenance, which is what the buyer actually trusts)
 *   - Emerald accent (#26D472) doubles as our "verdict-clear" tier color
 *   - PLG-first messaging: code sample, free tier prominent, sandbox keys
 * Respects prefers-reduced-motion.
 */

:root {
  /* surfaces */
  --bg-page:        #FFFFFF;
  --bg-alt:         #F7F8FA;
  --bg-dark:        #0B1220;
  --bg-dark-2:      #111A2E;
  --bg-code:        #0F172A;

  /* text on light */
  --fg:             #0B1220;
  --fg-muted:       #475569;     /* slate-600 */
  --fg-soft:        #64748B;     /* slate-500 */
  --fg-faint:       #94A3B8;     /* slate-400 */

  /* text on dark */
  --fg-on-dark:     #FFFFFF;
  --fg-on-dark-muted: rgba(255,255,255,0.72);
  --fg-on-dark-faint: rgba(255,255,255,0.48);

  /* borders */
  --border:         #E2E8F0;     /* slate-200 */
  --border-strong:  #CBD5E1;     /* slate-300 */
  --border-on-dark: rgba(255,255,255,0.10);

  /* brand */
  --accent:         #26D472;
  --accent-dk:      #16A85B;
  --accent-soft:    rgba(38, 212, 114, 0.12);

  /* tiers */
  --tier-low:       #26D472;
  --tier-medium:    #F59E0B;
  --tier-high:      #F97316;
  --tier-critical:  #EF4444;

  /* shadows */
  --shadow-sm:      0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-card:    0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-lift:    0 8px 24px rgba(15, 23, 42, 0.06), 0 24px 64px rgba(15, 23, 42, 0.08);
  --shadow-card-on-dark: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 60px rgba(0,0,0,0.45), 0 0 80px rgba(38,212,114,0.10);

  /* radii */
  --radius-sm:      6px;
  --radius:         10px;
  --radius-lg:      14px;
  --radius-xl:      20px;
}

body.landing-body {
  background: var(--bg-page);
  color: var(--fg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-feature-settings: 'cv02', 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;            /* hard safety: no horizontal scroll, ever */
}
/* Shared container — used by nav, hero, sections, footer, src-band.
 * 1240px gives more breathing room at desktop widths than the prior 1200;
 * 32px side padding keeps content off the edges at every breakpoint. */
.lp-nav__inner,
.hero__inner,
.section__inner,
.src-band__inner,
.lp-footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ============================================================
 * Typography primitives
 * ============================================================ */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dk);
}
.lp-eyebrow--on-dark { color: var(--accent); }
.lp-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.lp-h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.lp-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.lp-h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.lp-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
}
.lp-lede--on-dark { color: var(--fg-on-dark-muted); }

/* Section numbering (01 / 02 / 03 …) */
.lp-section-num {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-dk);
  margin-right: 8px;
}

/* ============================================================
 * Sticky nav
 * ============================================================ */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.lp-nav__inner {
  /* max-width / padding inherited from shared container rule */
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--fg);
  text-decoration: none;
}
.lp-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-dark);
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  position: relative;
}
.lp-brand__mark::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  opacity: 0.25;
  z-index: -1;
}
.lp-nav__links {
  display: none;
  align-items: center;
  gap: 26px;
}
@media (min-width: 768px) {
  .lp-nav__links { display: flex; }
}
.lp-nav__link {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 150ms ease;
}
.lp-nav__link:hover { color: var(--fg); }
.lp-nav__cta {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.lp-nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.20);
}

/* ============================================================
 * Buttons
 * ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg-dark);
  box-shadow: 0 2px 8px rgba(38, 212, 114, 0.25), 0 12px 32px rgba(38, 212, 114, 0.15);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--accent-dk);
  color: var(--fg-on-dark);
  box-shadow: 0 4px 16px rgba(38, 212, 114, 0.35), 0 16px 40px rgba(38, 212, 114, 0.22);
}
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.btn--ghost:hover {
  background: var(--bg-alt);
  border-color: var(--fg-faint);
}
.btn--ghost-on-dark {
  background: transparent;
  color: var(--fg-on-dark);
  border: 1px solid var(--border-on-dark);
}
.btn--ghost-on-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.20);
}
.btn__arrow {
  width: 14px; height: 14px;
  transition: transform 150ms ease;
}
.btn:hover .btn__arrow { transform: translateX(2px); }

/* ============================================================
 * Hero (dark navy)
 * ============================================================ */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 800px 600px at 80% 0%, rgba(38, 212, 114, 0.10), transparent 60%),
    radial-gradient(ellipse 600px 500px at 20% 100%, rgba(56, 189, 248, 0.06), transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--fg-on-dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  /* max-width / padding inherited from shared container rule */
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
  }
}

.hero__copy { max-width: 580px; }
.hero__headline {
  margin-top: 20px;
  color: var(--fg-on-dark);
}
.hero__headline em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.hero__lede {
  margin-top: 22px;
  max-width: 520px;
}
.hero__cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero__trust-line {
  margin-top: 22px;
  font-size: 13px;
  color: var(--fg-on-dark-faint);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__trust-line svg { width: 14px; height: 14px; color: var(--accent); }

/* ---------- Hero verdict card (the actual product, rendered) ---------- */
.verdict-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-on-dark);
  overflow: hidden;
  position: relative;
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  opacity: 0;
  transform: translateY(24px);
  animation: card-rise 800ms 200ms both cubic-bezier(0.22, 1, 0.36, 1);
  max-width: 520px;
  margin: 0 auto;
}
@keyframes card-rise {
  to { opacity: 1; transform: translateY(0); }
}

.vc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.vc-head__left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
}
.vc-head__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent-dk);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.vc-head__live::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(38,212,114, 0.45);
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(38,212,114, 0.45); }
  70%  { box-shadow: 0 0 0 8px rgba(38,212,114, 0.00); }
  100% { box-shadow: 0 0 0 0 rgba(38,212,114, 0.00); }
}
.vc-head__id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-faint);
}

.vc-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 20px;
  background: linear-gradient(135deg, rgba(38,212,114, 0.08) 0%, rgba(38,212,114, 0.02) 100%);
  border-bottom: 1px solid var(--border);
}
.vc-tier {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vc-tier__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--tier-low);
  box-shadow: 0 0 0 5px var(--accent-soft);
}
.vc-tier__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent-dk);
  text-transform: uppercase;
}
.vc-tier__sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 2px;
}
.vc-score {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.vc-score__num {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1;
}
.vc-score__denom {
  font-size: 14px;
  color: var(--fg-faint);
  margin-left: 2px;
}
.vc-score__label {
  font-size: 11px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.vc-rules { padding: 4px 0; }
.vc-rule {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  font-size: 13.5px;
  opacity: 0;
  transform: translateX(-10px);
  animation: rule-in 500ms both cubic-bezier(0.22, 1, 0.36, 1);
}
.vc-rule + .vc-rule { border-top: 1px solid #F1F5F9; }
.vc-rule:nth-of-type(1) { animation-delay: 800ms; }
.vc-rule:nth-of-type(2) { animation-delay: 950ms; }
.vc-rule:nth-of-type(3) { animation-delay: 1100ms; }
.vc-rule:nth-of-type(4) { animation-delay: 1250ms; }
.vc-rule:nth-of-type(5) { animation-delay: 1400ms; }
@keyframes rule-in { to { opacity: 1; transform: translateX(0); } }
.vc-rule__delta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 4px 0;
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
/* Delta colors follow the engine's semantics: a POSITIVE delta ADDS
 * risk (amber/red), a NEGATIVE delta REDUCES risk (green). Lower score
 * = safer merchant. This matches the shared-verdict page + PDF. */
.vc-rule__delta--pos { background: rgba(249, 115, 22, 0.12); color: #C2410C; }
.vc-rule__delta--neu { background: #F1F5F9; color: var(--fg-muted); }
.vc-rule__delta--neg { background: var(--accent-soft); color: var(--accent-dk); }
.vc-rule__name {
  color: var(--fg);
  font-weight: 500;
}
.vc-rule__src {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-faint);
  text-align: right;
}

.vc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
  font-size: 12px;
  color: var(--fg-muted);
}
.vc-foot__time {
  font-family: 'JetBrains Mono', monospace;
}
.vc-foot__sources {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.vc-foot__sources::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ============================================================
 * Source band (the honest move — data sources, not customer logos)
 * ============================================================ */
.src-band {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.src-band__inner {
  /* max-width / padding inherited from shared container rule */
}
.src-band__title {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-soft);
  margin-bottom: 22px;
}
.src-band__track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 44px;
}
.src-band__item {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 200ms, color 200ms;
}
.src-band__item:hover {
  opacity: 1;
  color: var(--fg);
}
.src-band__item .sb-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.6;
}

/* ============================================================
 * Section primitive (white sections)
 * ============================================================ */
.section {
  padding: 96px 0;
  position: relative;
}
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--border); }
.section--dark {
  background: var(--bg-dark);
  color: var(--fg-on-dark);
}
.section__inner {
  /* max-width / padding inherited from shared container rule */
}
.section__header {
  max-width: 720px;
  margin-bottom: 56px;
}
.section__header--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__header h2 { margin-top: 14px; }
.section__header p { margin-top: 14px; }

/* ============================================================
 * Stat strip (the four honest numbers)
 * ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
}
@media (min-width: 768px) {
  .stat-strip { grid-template-columns: repeat(4, 1fr); }
}
.stat {
  border-left: 2px solid var(--border);
  padding-left: 18px;
}
.stat__num {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: var(--fg);
  line-height: 1.1;
}
.stat__num .unit {
  font-size: 24px;
  color: var(--fg-faint);
  margin-left: 2px;
}
.stat__num .pre {
  font-size: 24px;
  color: var(--fg-faint);
  margin-right: 4px;
}
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.45;
}

/* ============================================================
 * The verdict, deconstructed (split feature with rendered receipt)
 * ============================================================ */
.deconstruct-grid {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .deconstruct-grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}
.deconstruct__copy h2 { margin-top: 16px; }
.deconstruct__copy p { margin-top: 18px; }
.deconstruct__list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.deconstruct__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}
.deconstruct__check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dk);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.deconstruct__check svg { width: 11px; height: 11px; }
.deconstruct__item strong { font-weight: 600; }

/* The receipt visual — a single rule row, blown up */
.receipt {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.receipt::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-soft) 0%, transparent 60%);
  z-index: -1;
}
.receipt__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border-strong);
}
.receipt__head .h-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.receipt__head .h-id {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg-muted);
}
.receipt__rule {
  padding: 22px 0;
  border-bottom: 1px dashed var(--border-strong);
}
.receipt__rule-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
}
.receipt__rule-meta {
  margin-top: 6px;
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--fg-muted);
}
.receipt__rule-meta .delta {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--accent-dk);
}
.receipt__source {
  margin-top: 22px;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.55;
}
.receipt__source .src-label {
  color: var(--accent-dk);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10.5px;
  display: block;
  margin-bottom: 6px;
}
.receipt__source .src-row {
  color: var(--fg);
}
.receipt__source .src-meta {
  color: var(--fg-faint);
  margin-top: 4px;
}

/* ============================================================
 * How it works (3-step cards)
 * ============================================================ */
.steps-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  position: relative;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
}
.step-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--border-strong);
}
.step-card__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-dk);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.step-card__title {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.step-card__body {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
}
.step-card__detail {
  margin-top: 18px;
  padding: 12px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--fg);
}
.step-card__detail .verb {
  color: var(--accent-dk);
  font-weight: 600;
  margin-right: 8px;
}

/* ============================================================
 * Developer-first section (dark, with code sample)
 * ============================================================ */
.dev-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .dev-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}
.dev-copy h2 { margin-top: 14px; color: var(--fg-on-dark); }
.dev-copy p { margin-top: 18px; color: var(--fg-on-dark-muted); }
.dev-copy .dev-bullets {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dev-copy .dev-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-on-dark-muted);
}
.dev-copy .dev-bullet svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

.code-block {
  background: var(--bg-code);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.code-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.code-block__dots {
  display: flex;
  gap: 6px;
}
.code-block__dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.code-block__title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}
.code-block__copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.40);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 150ms, border-color 150ms;
}
.code-block__copy:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.code-block__copy.copied { color: var(--accent); border-color: var(--accent); }
.code-block__body {
  padding: 22px 22px 24px;
  overflow-x: auto;
}
.code-block pre {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.65;
  color: #E2E8F0;
  white-space: pre;
}
/* Inline syntax highlighting via spans (we'll add these in HTML) */
.tok-comment  { color: #64748B; font-style: italic; }
.tok-keyword  { color: #C084FC; }
.tok-string   { color: #86EFAC; }
.tok-fn       { color: #38BDF8; }
.tok-class    { color: #FDE68A; }
.tok-number   { color: #F0ABFC; }
.tok-punct    { color: #94A3B8; }

/* Response trailing the code */
.code-response {
  margin-top: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}
.code-response .resp-tier {
  color: var(--accent);
  font-weight: 600;
}
.code-response .resp-arrow {
  color: rgba(255,255,255,0.35);
  margin: 0 6px;
}

/* ============================================================
 * Pricing
 * ============================================================ */
.pricing-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.price-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 200ms, box-shadow 200ms;
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.price-card--featured {
  border: 1px solid var(--bg-dark);
  background: var(--bg-dark);
  color: var(--fg-on-dark);
  position: relative;
  box-shadow: 0 12px 36px rgba(11, 18, 32, 0.20);
}
.price-card--featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.price-card__name {
  font-size: 16px;
  font-weight: 600;
  color: inherit;
}
.price-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--fg-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.price-card--featured .price-card__tag { color: var(--accent); }
.price-card__amount {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-card__amount .num {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.price-card__amount .unit {
  font-size: 13px;
  color: var(--fg-muted);
}
.price-card--featured .price-card__amount .unit { color: var(--fg-on-dark-muted); }
.price-card__desc {
  margin-top: 12px;
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.price-card--featured .price-card__desc { color: var(--fg-on-dark-muted); }
.price-card__features {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.price-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.45;
}
.price-card__feature svg {
  width: 14px; height: 14px;
  color: var(--accent-dk);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card--featured .price-card__feature svg { color: var(--accent); }
.price-card__cta {
  margin-top: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
}
.price-card__cta--ghost {
  border: 1px solid var(--border-strong);
  color: var(--fg);
  background: var(--bg-page);
}
.price-card__cta--ghost:hover { background: var(--bg-alt); }
.price-card__cta--featured {
  background: var(--accent);
  color: var(--bg-dark);
}
.price-card__cta--featured:hover { background: var(--accent-dk); color: var(--fg-on-dark); }

/* ============================================================
 * Compliance / trust cards
 * ============================================================ */
.trust-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
}
.trust-card__icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius);
  color: var(--accent-dk);
  margin-bottom: 16px;
}
.trust-card__icon svg { width: 18px; height: 18px; }
.trust-card__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.trust-card__body {
  margin-top: 8px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ============================================================
 * Final CTA (dark wash)
 * ============================================================ */
.final-cta {
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(38,212,114, 0.12), transparent 70%),
    var(--bg-dark);
  color: var(--fg-on-dark);
  padding: 100px 0 96px;
  text-align: center;
}
.final-cta h2 { color: var(--fg-on-dark); }
.final-cta p { margin-top: 14px; color: var(--fg-on-dark-muted); }
.final-cta__row {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
 * Footer
 * ============================================================ */
.lp-footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.lp-footer__inner {
  /* max-width / padding inherited from shared container rule */
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--fg-muted);
}
.lp-footer a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 150ms;
}
.lp-footer a:hover { color: var(--fg); }
.lp-footer__links { display: flex; gap: 22px; }

/* ============================================================
 * Scroll reveals (kept from prior engine)
 * ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="left"]  { transform: translate3d(-24px, 0, 0); }
[data-reveal="right"] { transform: translate3d( 24px, 0, 0); }
[data-reveal].is-visible[data-reveal="left"],
[data-reveal].is-visible[data-reveal="right"] { transform: translate3d(0, 0, 0); }
[data-reveal-delay="100"] { transition-delay: 100ms; }
[data-reveal-delay="200"] { transition-delay: 200ms; }
[data-reveal-delay="300"] { transition-delay: 300ms; }
[data-reveal-delay="400"] { transition-delay: 400ms; }

/* ============================================================
 * Reduced motion
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  .verdict-card,
  .vc-rule,
  .vc-head__live::before {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
