/* AI Builder landing - alternating dark/light bands, split hero */
:root {
  --dark: #07080f;
  --dark-surface: #111220;
  --dark-border: rgba(250, 246, 238, 0.08);
  --light: #faf6ee;
  --light-alt: #f0ebe0;
  --light-border: rgba(7, 8, 15, 0.1);
  --cream: #faf6ee;
  --ink: #07080f;
  --muted-light: #5e5f78;
  --muted-dark: rgba(250, 246, 238, 0.55);
  --signal: #6366f1;
  --signal-bright: #a5b4fc;
  --signal-hot: #818cf8;
  --gold: #d4b896;
  --white: #fff;
  --radius: 8px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@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;
  }
}

body {
  margin: 0;
  background: var(--light);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.mono { font-family: 'IBM Plex Mono', monospace; }
h1, h2, h3, h4 { margin: 0; font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }
::selection { background: var(--signal-hot); color: var(--cream); }
:focus-visible { outline: 2px solid var(--signal-hot); outline-offset: 3px; }

/* ── Band system ── */
.band-light {
  background: var(--light);
  color: var(--ink);
  --band-bg: var(--light);
  --band-text: var(--ink);
  --band-muted: var(--muted-light);
  --band-border: var(--light-border);
  --band-card: var(--white);
  position: relative;
}
.band-dark {
  background: var(--dark);
  color: var(--cream);
  --band-bg: var(--dark);
  --band-text: var(--cream);
  --band-muted: var(--muted-dark);
  --band-border: var(--dark-border);
  --band-card: var(--dark-surface);
  position: relative;
  overflow: hidden;
}
.band-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, rgba(99, 102, 241, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 100% 100%, rgba(212, 184, 150, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.band-dark > .wrap,
.band-dark .trust-inner,
.band-dark .lead-grid,
.band-dark .subtle-inner { position: relative; z-index: 1; }

section { padding: 88px 0; position: relative; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* Eyebrow */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--signal);
  border-radius: 1px;
}
.band-dark .eyebrow { color: var(--signal-bright); }
.band-dark .eyebrow::before { background: var(--signal-bright); }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.06;
  margin-top: 16px;
  color: var(--band-text);
}
.section-head p { color: var(--band-muted); font-size: 17px; margin-top: 16px; line-height: 1.65; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-signal {
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
}
.btn-signal:hover {
  background: var(--signal-hot);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(99, 102, 241, 0.55);
}
.btn-alert {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-alert:hover { background: #1a1b2e; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--band-text);
  border-color: var(--band-border);
}
.btn-ghost:hover { border-color: var(--signal); color: var(--signal); }
.band-dark .btn-ghost { border-color: rgba(250, 246, 238, 0.2); color: var(--cream); }
.band-dark .btn-ghost:hover { border-color: var(--signal-bright); color: var(--signal-bright); }
.btn-quiet {
  background: transparent;
  color: inherit;
  border: none;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
  padding: 4px 0;
  font-weight: 600;
}
.band-dark .btn-quiet { color: var(--signal-bright); border-color: var(--signal-bright); }
.btn-arrow { transition: transform 0.2s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ── HEADER (always dark) ── */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 8, 15, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--dark-border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.logo img { height: 30px; filter: brightness(0) invert(1); opacity: 0.95; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 246, 238, 0.65);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-phone { font-size: 12px; color: rgba(250, 246, 238, 0.45); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; }
.nav-right .btn-signal { padding: 10px 18px; font-size: 13px; }

/* ── HERO: split light/dark ── */
.hero { padding: 0; overflow: hidden; }
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(92vh, 880px);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 28px 64px max(28px, calc((100vw - var(--maxw)) / 2 + 28px));
  background: var(--light);
  position: relative;
}
.hero-copy::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--light-border), transparent);
}
.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.98;
  margin: 20px 0 24px;
  letter-spacing: -0.03em;
}
.hero h1 .flag {
  display: block;
  font-style: italic;
  color: var(--signal);
  margin-top: 4px;
}
.hero-sub { font-size: 18px; color: var(--muted-light); max-width: 480px; margin-bottom: 32px; line-height: 1.65; }
.hero-sub b { color: var(--ink); }
.cta-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-note { font-size: 12px; color: var(--muted-light); font-family: 'IBM Plex Mono', monospace; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 420px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.stat b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.stat span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.hero-visual {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 184, 150, 0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250, 246, 238, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 246, 238, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.scanner-wrap { position: relative; width: 100%; max-width: 420px; z-index: 1; }
.scanner {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}
.scanner-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.scanner-tag { font-size: 10px; color: var(--muted-dark); letter-spacing: 0.1em; text-transform: uppercase; }
.scanner-dots { display: flex; gap: 5px; }
.scanner-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(250, 246, 238, 0.15); }
.doc {
  position: relative;
  background: var(--light);
  border-radius: 8px;
  padding: 22px 20px;
  overflow: hidden;
  min-height: 320px;
  color: var(--ink);
}
.doc-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.doc-name { font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; }
.doc-role { font-size: 10px; color: var(--muted-light); margin-top: 2px; }
.doc-badge {
  font-size: 10px;
  font-weight: 600;
  background: var(--signal);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
}
.bar { height: 7px; background: var(--light-border); border-radius: 2px; margin-bottom: 8px; }
.bar.w1 { width: 38%; height: 10px; margin-bottom: 12px; }
.bar.w2 { width: 92%; }
.bar.w3 { width: 80%; }
.bar.w4 { width: 88%; }
.bar.w5 { width: 64%; }
.bar.rewrite { background: rgba(99, 102, 241, 0.35); width: 96%; }
.doc-swap { position: relative; height: 32px; margin-bottom: 12px; }
.doc-swap .line { position: absolute; left: 0; top: 0; font-size: 12px; }
.doc-swap .before { color: var(--muted-light); text-decoration: line-through; animation: swapOut 6s infinite; }
.doc-swap .after { color: var(--signal); font-weight: 600; opacity: 0; animation: swapIn 6s infinite; }
@keyframes swapOut { 0%, 40% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes swapIn { 0%, 45% { opacity: 0; } 55%, 95% { opacity: 1; } 100% { opacity: 0; } }
.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 56px;
  top: 0;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.15) 45%, rgba(99, 102, 241, 0.4) 50%, rgba(99, 102, 241, 0.15) 55%, transparent);
  animation: scanmove 3.4s linear infinite;
  pointer-events: none;
}
@keyframes scanmove { 0% { transform: translateY(-56px); } 100% { transform: translateY(320px); } }
.readout {
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--muted-dark);
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--dark-border);
}
.readout .score { color: var(--signal-bright); font-weight: 600; }
.float-badge {
  position: absolute;
  top: -16px;
  right: -8px;
  background: var(--white);
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transform: rotate(2deg);
}
.float-badge-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.15);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-badge b { display: block; font-family: 'Fraunces', serif; font-size: 14px; }
.float-badge span { display: block; font-size: 9px; color: var(--muted-light); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── STRIP (dark marquee) ── */
.strip { padding: 0; overflow: hidden; }
.strip .wrap { display: flex; align-items: center; gap: 28px; padding: 24px 28px; overflow: hidden; }
.strip-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 20px;
  border-right: 1px solid var(--dark-border);
}
.marquee-track { display: flex; gap: 10px; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.tag-badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(250, 246, 238, 0.15);
  color: rgba(250, 246, 238, 0.8);
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── BENEFITS (light, bento) ── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: attr(data-num);
  position: absolute;
  right: 12px;
  top: 8px;
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(7, 8, 15, 0.04);
  line-height: 1;
  pointer-events: none;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(7, 8, 15, 0.15); }
.benefit-card:nth-child(1) { grid-column: span 2; background: var(--ink); color: var(--cream); border-color: var(--ink); }
.benefit-card:nth-child(1) p { color: var(--muted-dark); }
.benefit-card:nth-child(1) .benefit-icon { background: rgba(99, 102, 241, 0.2); color: var(--signal-bright); }
.benefit-card:nth-child(1)::after { color: rgba(250, 246, 238, 0.06); }
.benefit-card:nth-child(1) .num { color: var(--signal-bright); }
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-card .num { font-size: 10px; color: var(--signal); letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.benefit-card h3 { font-size: 19px; margin-bottom: 8px; }
.benefit-card p { color: var(--muted-light); font-size: 14px; line-height: 1.6; }

/* ── TRUST (dark) ── */
.trust-inner { display: grid; grid-template-columns: auto 1fr; gap: 40px; align-items: start; }
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: clamp(72px, 10vw, 120px);
  line-height: 0.5;
  color: var(--signal);
  opacity: 0.6;
}
.trust blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  color: var(--cream);
}
.trust-attr { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.trust-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--cream);
}
.trust-name { font-weight: 700; font-size: 15px; }
.trust-role { font-size: 12px; color: var(--muted-dark); margin-top: 2px; }
.trust-outcomes { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
.trust-outcomes div {
  padding: 16px 20px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 10px;
  font-size: 11px;
  color: var(--muted-dark);
  min-width: 130px;
}
.trust-outcomes b {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  color: var(--cream);
  margin-bottom: 4px;
}

/* ── TEMPLATES (light) ── */
.tpl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.tpl-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.tpl-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -20px rgba(7, 8, 15, 0.2); }
.tpl-image { aspect-ratio: 210/297; background: var(--light-alt); overflow: hidden; position: relative; }
.tpl-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s var(--ease); }
.tpl-card:hover .tpl-image img { transform: scale(1.04); }
.tpl-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 15, 0.75);
  opacity: 0;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tpl-card:hover .tpl-overlay { opacity: 1; }
.tpl-use {
  background: var(--signal);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 6px;
}
.tpl-meta { padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--light-border); }
.tpl-meta h4 { font-size: 14px; }
.tpl-meta span { font-size: 10px; color: var(--signal); }
.tpl-cta { text-align: center; margin-top: 36px; }

/* ── SUBTLE BAND (dark) ── */
.subtle-band { padding: 56px 0; }
.subtle-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.subtle-inner h3 { font-size: clamp(20px, 2.5vw, 26px); max-width: 520px; color: var(--cream); }
.subtle-inner p { color: var(--muted-dark); font-size: 15px; margin-top: 6px; }
.subtle-centered .subtle-inner { flex-direction: column; text-align: center; justify-content: center; }

/* ── PRICING (light) ── */
.offer-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: var(--signal);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
  transform: scale(1.04);
  box-shadow: 0 32px 64px -24px rgba(7, 8, 15, 0.45);
}
.price-card.featured:hover { transform: scale(1.04) translateY(-4px); }
.price-card.featured .price span,
.price-card.featured .delivery,
.price-card.featured h4 { color: var(--muted-dark); }
.price-card.featured .price-list li { border-color: var(--dark-border); }
.price-flag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--signal);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 16px;
}
.price-card { position: relative; }
.price-card h4 { font-size: 11px; font-family: 'IBM Plex Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-light); margin-bottom: 8px; }
.price-card .price { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; margin: 4px 0; }
.price-card .price span { font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 500; color: var(--muted-light); }
.price-card .delivery { font-size: 13px; color: var(--muted-light); margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--light-border); }
.price-card.featured .delivery { border-color: var(--dark-border); }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-list li { font-size: 14px; padding: 9px 0; border-top: 1px solid var(--light-border); display: flex; gap: 8px; }
.price-list li:first-child { border-top: none; }
.price-list li::before { content: '✓'; color: var(--signal); font-weight: 700; flex-shrink: 0; }
.price-card.featured .price-list li::before { color: var(--signal-bright); }

/* ── DIFF (dark) ── */
.diff-wrap {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
}
.diff-topbar { display: flex; justify-content: space-between; padding: 14px 20px; border-bottom: 1px solid var(--dark-border); }
.diff-topbar span { font-size: 10px; color: var(--muted-dark); letter-spacing: 0.08em; }
.diff-line { font-family: 'IBM Plex Mono', monospace; font-size: 13px; padding: 12px 20px; display: flex; gap: 12px; }
.diff-line.minus { background: rgba(228, 85, 47, 0.08); color: #e8a090; }
.diff-line.plus { background: rgba(99, 102, 241, 0.1); color: var(--signal-bright); }
.feat-compare {
  margin-top: 32px;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
}
.feat-compare th, .feat-compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--dark-border); color: var(--cream); }
.feat-compare th { font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-dark); background: rgba(0, 0, 0, 0.2); }
.feat-compare th:nth-child(2) { color: var(--signal-bright); }
.feat-compare tr:last-child td { border-bottom: none; }
.feat-compare td.yes { color: var(--signal-bright); font-weight: 700; }
.feat-compare td.no { color: #e8a090; }
.feat-compare tr td:first-child { font-weight: 500; color: rgba(250, 246, 238, 0.85); }

/* ── CTA BLOCK (light, high contrast) ── */
.cta-block { text-align: center; padding: 100px 0; }
.cta-block h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.04;
  max-width: 800px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.cta-block h2 em { font-style: italic; color: var(--signal); }
.cta-block p { color: var(--muted-light); font-size: 18px; max-width: 520px; margin: 0 auto 32px; }
.cta-block .cta-row { justify-content: center; margin-bottom: 14px; }
.cta-block .cta-note { font-size: 12px; color: var(--muted-light); font-family: 'IBM Plex Mono', monospace; }
.cta-block .cta-box {
  display: inline-block;
  padding: 48px 56px;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 16px;
  max-width: 720px;
  margin: 0 auto;
}

/* ── PROOF (dark) ── */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--dark-border);
}
.stars { color: var(--signal-bright); font-size: 20px; letter-spacing: 2px; }
.proof-score { font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700; color: var(--cream); }
.proof-src { font-size: 11px; color: var(--muted-dark); }
.proof-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.proof-card {
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.25s;
}
.proof-card:hover { border-color: rgba(99, 102, 241, 0.35); }
.proof-card .stars { font-size: 13px; margin-bottom: 10px; display: block; }
.proof-card p { font-size: 14px; color: rgba(250, 246, 238, 0.85); margin-bottom: 14px; line-height: 1.55; }
.proof-card .who { font-size: 11px; color: var(--muted-dark); }

/* ── TESTIMONIALS (light) ── */
.section-tests { padding-top: 88px; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.test-card {
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease);
}
.test-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -12px rgba(7, 8, 15, 0.12); }
.test-card .before-after { display: flex; gap: 10px; margin-bottom: 16px; font-size: 10px; }
.test-card .before-after div { flex: 1; padding: 10px; border-radius: 6px; }
.test-card .before-after .b { background: #fdeee8; color: #b54a2a; border: 1px solid #f5d0c4; }
.test-card .before-after .a { background: #eef0fe; color: var(--signal); border: 1px solid #d4d8fc; }
.test-card .before-after b { display: block; font-size: 12px; margin-bottom: 3px; }
.test-card p.quote { font-size: 14px; flex: 1; margin-bottom: 14px; color: var(--muted-light); line-height: 1.55; }
.test-card .who { font-weight: 700; font-size: 14px; }
.test-card .role { font-size: 11px; color: var(--muted-light); margin-top: 2px; }

/* ── FAQ (light) ── */
.faq-list { max-width: 760px; }
.faq-item {
  border: 1px solid var(--light-border);
  border-radius: 10px;
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}
.faq-item[open] { border-color: var(--signal); }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--signal); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--muted-light); padding: 0 22px 20px; font-size: 14px; line-height: 1.65; border-top: 1px solid var(--light-border); padding-top: 16px; margin: 0 22px 20px; }

/* ── LEAD (dark) ── */
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.lead h2 { font-size: clamp(28px, 3vw, 38px); margin: 14px 0 16px; line-height: 1.08; color: var(--cream); }
.lead p.desc { color: var(--muted-dark); font-size: 16px; max-width: 420px; margin-bottom: 24px; line-height: 1.65; }
.lead-points { list-style: none; padding: 0; margin: 0; }
.lead-points li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(250, 246, 238, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid var(--dark-border);
}
.lead-points li::before { content: '→'; color: var(--signal-bright); font-weight: 700; }
.lead-form {
  background: var(--white);
  border-radius: 14px;
  padding: 32px;
  color: var(--ink);
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.5);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted-light); margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid var(--light-border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--light);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus { border-color: var(--signal); outline: none; box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15); }
.field .err { color: #b54a2a; font-size: 12px; margin-top: 4px; display: none; }
.field.has-error input { border-color: #b54a2a; }
.field.has-error .err { display: block; }
.lead-disclaimer { font-size: 11px; color: var(--muted-light); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success .check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--signal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}
.lead-form button[disabled] { opacity: 0.6; cursor: not-allowed; }

/* ── MOBILE CTA ── */
.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 90;
  background: var(--dark);
  color: var(--cream);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  padding: 12px 16px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.6);
}
.mobile-cta strong { font-family: 'Fraunces', serif; font-size: 14px; }
.mobile-cta small { display: block; font-size: 10px; color: var(--muted-dark); }
.mobile-cta a {
  background: var(--signal);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 6px;
}

/* ── FOOTER ── */
footer.band-dark,
footer {
  background: var(--dark);
  color: var(--muted-dark);
  padding: 48px 0 24px;
  border-top: 1px solid var(--dark-border);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-top .logo img { filter: brightness(0) invert(1); height: 28px; opacity: 0.7; }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted-dark); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
}
.footer-bottom a { color: var(--muted-dark); }
.footer-bottom a:hover { color: var(--cream); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 48px 28px; }
  .hero-copy::after { display: none; }
  .hero-visual { padding: 40px 28px 56px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card:nth-child(1) { grid-column: span 2; }
  .tpl-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .proof-row, .test-grid { grid-template-columns: 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .trust-inner { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-right .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 20px 28px;
    border-bottom: 1px solid var(--dark-border);
  }
  section { padding: 64px 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card:nth-child(1) { grid-column: span 1; }
  .tpl-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .subtle-inner { flex-direction: column; align-items: flex-start; }
  .feat-compare { font-size: 12px; }
  .feat-compare th, .feat-compare td { padding: 10px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
  .cta-block .cta-box { padding: 32px 24px; }
  .cta-row { flex-direction: column; align-items: flex-start; }
}
