/* Self-hosted Geist (variable) — no external font request on the critical path */
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-normal.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("../fonts/geist-italic.woff2") format("woff2");
  font-weight: 100 900; font-style: italic; font-display: swap;
}

:root {
  --bg: #1e1e20;
  --bg-2: #0a0a0a;
  --surface: #26262b;
  --surface-2: #2c2c33;
  --text: #ebebee;
  --muted: #9a9aa6;
  --lime: #a3e635;
  --lime-hover: #b6f24a;
  --lime-ink: #1a1a10;
  --violet: #7c3aed;
  --violet-light: #8b5cf6;
  --red: #f26d6d;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --radius: 12px;
  --maxw: 1140px;
  --card-light: #f4f4f5;
  --card-ink: #1c1c22;
  --card-ink-muted: #6b6b76;
  --font: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
img, video, svg { max-width: 100%; } /* never let media cause horizontal scroll */
html { scroll-behavior: smooth; overflow-x: clip; scroll-padding-top: 84px; }

/* ---------- Scroll-reveal primitives (driven by static/js/site.js) ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; }
}
body {
  margin: 0; font-family: var(--font); background: var(--bg); color: var(--text);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* contain the full-bleed 100vw examples marquee (no h-scrollbar) */
}
.container {
  width: 100%; max-width: var(--maxw); margin: 0 auto;
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
}
a { color: inherit; text-decoration: none; }
.center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .08s ease, background .2s ease, border-color .2s ease, filter .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn::after { content: "→"; font-weight: 700; }
.btn-primary { background: var(--lime); color: var(--lime-ink); }
.btn-primary:hover { background: var(--lime-hover); }
.btn-dark { background: #17171b; color: var(--text); border-color: var(--border-strong); }
.btn-dark:hover { border-color: var(--lime); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--lime); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(30, 30, 32, .72); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; font-style: italic; }
.brand-mark { width: 20px; height: 20px; border-radius: 6px; background: var(--lime); box-shadow: 0 0 0 4px rgba(163,230,53,.14); }
.site-nav { display: flex; gap: 28px; font-size: 15px; color: var(--muted); }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--text); }
.header-cta { padding: 11px 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; padding: 96px 0 76px; text-align: center;
  background:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px) 0 0 / 100% 48px,
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px) 0 0 / 48px 100%,
    radial-gradient(38% 46% at 5% -2%, rgba(163,230,53,.14), transparent 70%),
    radial-gradient(40% 42% at 96% 2%, rgba(124,58,237,.08), transparent 72%),
    var(--bg);
}
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: var(--lime); background: rgba(163,230,53,.10); border: 1px solid rgba(163,230,53,.32);
  padding: 6px 15px; border-radius: 999px; margin-bottom: 26px;
}
.hero-title { font-size: clamp(40px, 6.6vw, 78px); line-height: 1.03; letter-spacing: -0.02em; margin: 0 0 22px; font-weight: 800; font-style: italic; }
.hero-title .hl { color: var(--lime); }
.hero-sub { max-width: 640px; margin: 0 auto 36px; font-size: 18px; color: var(--muted); }

/* ---------- Marquee (transparent, flows over hero bg like aidentika) ---------- */
.marquee { background: transparent; overflow: hidden; padding: 10px 0 26px; }
.marquee-track { display: inline-flex; align-items: center; white-space: nowrap; animation: marquee 32s linear infinite; }
.marquee-track span { font-style: italic; font-weight: 800; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--text); padding: 0 6px; }
.marquee-track .star { color: var(--lime); padding: 0 26px; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
.section { padding: 92px 0; }
.section-eyebrow { text-align: center; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 600; color: var(--muted); margin: 0 0 10px; }
.section-title { text-align: center; font-size: clamp(28px, 4vw, 42px); letter-spacing: -0.015em; margin: 0 0 14px; font-weight: 800; }
.section-title .muted-word { color: var(--muted); }
.section-sub { text-align: center; color: var(--muted); font-size: 17px; max-width: 620px; margin: 0 auto 44px; }
.section-foot { text-align: center; color: var(--muted); font-size: 15px; margin: 34px 0 26px; }

/* ---------- Placeholders (swap for your own <img>) ---------- */
.ph {
  position: relative; display: grid; place-items: center; overflow: hidden;
  border-radius: 14px; border: 1px solid var(--border);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 10px, transparent 10px 20px),
    var(--surface);
  color: var(--muted);
}
.ph span { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.ph > img, .ph > video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ph-portrait { aspect-ratio: 3 / 4; }
.ph-square { aspect-ratio: 1 / 1; }
.ph-tall { aspect-ratio: 4 / 5; }
.ph-card { aspect-ratio: 4 / 5; }

/* ---------- How it works ---------- */
.steps-row { display: flex; align-items: flex-start; justify-content: center; gap: 20px; margin: 0 0 48px; flex-wrap: wrap; }
.step { display: flex; align-items: flex-start; gap: 14px; background: transparent; border: none; border-radius: 0; padding: 0; flex: 1; min-width: 200px; max-width: 300px; }
.step-num { flex: none; display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--surface); color: var(--muted); font-weight: 700; font-size: 14px; font-style: italic; border: 1px solid var(--border-strong); }
.step-text h3 { margin: 6px 0 4px; font-size: 16px; font-weight: 700; }
.step-text p { margin: 0; color: var(--muted); font-size: 14px; }
.step-arrow { align-self: center; color: var(--muted); font-size: 20px; margin-top: 6px; }

.showcase { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.show-col { display: flex; align-items: center; gap: 12px; }
.show-thumbs { display: flex; flex-direction: column; gap: 8px; }
.show-thumb {
  padding: 0; width: 56px; aspect-ratio: 3 / 4; flex: none;
  border: 2px solid transparent; border-radius: 12px; overflow: hidden;
  background: var(--surface); cursor: pointer; opacity: .65;
  transition: border-color .2s ease, opacity .2s ease;
}
.show-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.show-thumb:hover { opacity: 1; }
.show-thumb.is-active { border-color: var(--lime); opacity: 1; }
.show-thumb:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }
.show-big {
  position: relative; margin: 0; width: 200px; aspect-ratio: 3 / 4;
  border-radius: 16px; overflow: hidden; border: 1px solid var(--border-strong);
  background: var(--surface); box-shadow: 0 22px 50px -26px rgba(0,0,0,.8);
}
.show-big > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.show-cap {
  position: absolute; left: 12px; bottom: 10px; z-index: 2;
  font-size: 14px; font-weight: 700; color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,.7);
}
.show-col--card .show-big--card { width: 344px; max-width: 62vw; background: #fff; }
.show-arrow { color: var(--lime); font-size: 22px; flex: none; }

/* ---------- Split sections (try-on / video) ---------- */
.split.alt { background: var(--bg-2); }
.split-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.split-visual { position: relative; display: flex; align-items: center; justify-content: center; gap: 20px; min-height: 380px; }
.float-items { position: relative; width: 280px; height: 340px; }
.float-items .ph { position: absolute; width: 130px; box-shadow: 0 18px 40px -20px rgba(0,0,0,.8); }
.float-a { top: 0; left: 8px; transform: rotate(-6deg); }
.float-b { top: 26px; right: 0; transform: rotate(5deg); }
.float-c { bottom: 6px; left: 44px; transform: rotate(-3deg); }
.chat-bubble { position: absolute; bottom: -6px; left: 70px; display: inline-flex; align-items: center; gap: 8px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); font-size: 13px; padding: 8px 12px; border-radius: 12px; max-width: 220px; }
.chat-dot { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), var(--lime)); flex: none; }
.split-arrow { color: var(--lime); font-size: 26px; flex: none; }
.split-result { position: relative; width: 300px; max-width: 52vw; aspect-ratio: 3 / 4; cursor: pointer; }
.split-result .sr-photo { position: absolute; inset: 0; border-color: var(--border-strong); box-shadow: 0 24px 52px -26px rgba(0,0,0,.85); transition: transform .35s cubic-bezier(0, 0, 0.2, 1); }
/* Resting fan (also the no-JS fallback; JS overrides transform inline to cycle on click) */
.split-result .sr-photo-1 { transform: rotate(-1.5deg); z-index: 3; }
.split-result .sr-photo-2 { transform: rotate(4deg) translate(14px, 10px); z-index: 2; }
.split-result .sr-photo-3 { transform: rotate(8deg) translate(26px, 20px); z-index: 1; }
.split-result:focus-visible { outline: 2px solid var(--lime); outline-offset: 6px; border-radius: var(--radius); }
@media (prefers-reduced-motion: reduce) { .split-result .sr-photo { transition: none; } }

.video-visual { gap: 0; cursor: pointer; }
.video-visual:focus-visible { outline: 2px solid var(--lime); outline-offset: 8px; border-radius: var(--radius); }
.video-visual .ph { position: absolute; width: 220px; box-shadow: 0 22px 46px -22px rgba(0,0,0,.85); transition: transform .35s cubic-bezier(0, 0, 0.2, 1), opacity .35s ease; }
@media (prefers-reduced-motion: reduce) { .video-visual .ph { transition: none; } }
.video-c1 { transform: translateX(-40px) rotate(-4deg); z-index: 3; }
.video-c2 { transform: translateX(6px) rotate(2deg); z-index: 2; opacity: .8; }
.video-c3 { transform: translateX(46px) rotate(7deg); z-index: 1; opacity: .55; }

.checklist-card { background: transparent; border: none; border-radius: 0; padding: 0; }
.checklist-card h3 { margin: 0 0 18px; font-size: 24px; font-weight: 800; }
.checks { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.checks li { position: relative; padding-left: 30px; color: var(--muted); font-size: 15px; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 20px; height: 20px; display: grid; place-items: center;
  background: rgba(163,230,53,.16); color: var(--lime); border-radius: 50%; font-size: 12px; font-weight: 700;
}

/* ---------- Examples (full-bleed draggable auto-marquee, like aidentika) ---------- */
.examples-marquee {
  position: relative; width: 100vw; left: 50%; right: 50%;
  margin-left: -50vw; margin-right: -50vw;
  overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none;
}
.examples-marquee.is-dragging { cursor: grabbing; }
.examples-marquee-track { display: flex; width: max-content; will-change: transform; }
.examples-marquee-group { display: flex; gap: 16px; padding-right: 16px; flex: none; }
.ex-card { flex: none; width: 288px; }
.ex-card .ph { border-radius: 16px; aspect-ratio: 3 / 4; }
.ex-card img { pointer-events: none; -webkit-user-drag: none; }
.ex-label { margin: 12px 0 2px; text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.ex-name { margin: 0; text-align: center; font-size: 15px; font-weight: 700; }

/* Screen-reader-only utility; the marquee pause control uses it and reveals on focus */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.examples-marquee-pause:focus {
  position: absolute; top: 10px; left: 10px; z-index: 5;
  width: auto; height: auto; margin: 0; clip: auto; overflow: visible; white-space: normal;
  padding: 8px 15px; border-radius: 999px; cursor: pointer;
  background: var(--surface); color: var(--text); border: 1px solid var(--border-strong);
  font: 600 13px var(--font);
}

/* JS-off fallback: content visible + examples become a plain horizontal scroller */
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }
.no-js .examples-marquee { overflow-x: auto; cursor: default; }
.no-js .examples-marquee-pause { display: none; }

/* ---------- Benefits / comparison (white cards on dark, like aidentika) ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto; align-items: start; }
.compare-card { background: var(--card-light); color: var(--card-ink); border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius); padding: 26px; }
.compare-card.featured { box-shadow: 0 34px 66px -30px rgba(0,0,0,.75); transform: translateY(-10px); }
.compare-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.compare-head h3 { margin: 0; font-size: 19px; font-weight: 800; color: var(--card-ink); }
.badge { font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.badge-dim { background: rgba(0,0,0,.06); color: var(--card-ink-muted); }
.badge-lime { background: #dcfce7; color: #15803d; }
.crosses { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.crosses li { position: relative; padding-left: 30px; color: var(--muted); font-size: 15px; }
.crosses li::before { content: "✕"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; display: grid; place-items: center; background: rgba(242,109,109,.14); color: var(--red); border-radius: 50%; font-size: 11px; font-weight: 700; }
.compare-card .checks li, .compare-card .crosses li { color: var(--card-ink-muted); }
.compare-card .checks li::before { background: #22c55e; color: #fff; }
.compare-card .crosses li::before { background: #fee2e2; color: #dc2626; }
.compare-card.featured .btn { margin-top: 22px; }

/* ---------- Pricing (dark→teal glow section, white cards, like aidentika) ---------- */
.pricing {
  background:
    radial-gradient(55% 78% at 94% 58%, rgba(16,185,129,.22), transparent 62%),
    radial-gradient(60% 70% at 2% -10%, rgba(0,0,0,.55), transparent 60%),
    var(--bg-2);
}
.spark { color: var(--lime); }
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.price-card { position: relative; background: var(--card-light); color: var(--card-ink); border: 1px solid rgba(0,0,0,.06); border-radius: var(--radius); padding: 26px 22px; display: flex; flex-direction: column; }
.price-card.featured { border-color: #22c55e; box-shadow: 0 0 0 1px #22c55e, 0 30px 60px -30px rgba(16,185,129,.55); }
.price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #22c55e; color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 999px; white-space: nowrap; }
.price-card h3 { margin: 0 0 2px; font-size: 20px; font-weight: 800; font-style: italic; color: var(--card-ink); }
.price-note { margin: 0 0 16px; color: var(--card-ink-muted); font-size: 13px; }
.price { margin: 0 0 4px; font-size: 30px; font-weight: 800; color: var(--card-ink); }
.price b { font-weight: 800; }
.price-credits { margin: 0 0 20px; font-weight: 600; font-size: 15px; color: var(--card-ink); }
.price-enough { border-top: 1px solid rgba(0,0,0,.09); padding-top: 16px; margin-bottom: 22px; flex: 1; }
.enough-label { margin: 0 0 10px; font-size: 13px; color: var(--card-ink-muted); }
.price-card .checks li { color: var(--card-ink-muted); }
.price-card .checks li::before { background: #22c55e; color: #fff; }
.free-banner { display: flex; align-items: center; gap: 18px; margin-top: 26px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 26px; }
.free-icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; background: rgba(163,230,53,.14); color: var(--lime); font-size: 20px; }
.free-text { flex: 1; }
.free-text h4 { margin: 0 0 2px; font-size: 16px; font-weight: 700; }
.free-text p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto 40px; display: grid; gap: 12px; }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 16px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list .chev { color: var(--muted); transition: transform .2s ease; font-size: 18px; }
.faq-list details[open] .chev { transform: rotate(180deg); color: var(--lime); }
.faq-list details p { margin: 0; padding: 0 22px 20px; color: var(--muted); font-size: 15px; }

/* ---------- Waitlist CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; padding: 84px 0; text-align: center;
  background: linear-gradient(105deg, var(--lime) 0%, #7ddba0 55%, #37b98f 100%);
  color: #10210a;
}
.cta-inner { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(30px, 5vw, 48px); margin: 0 0 12px; font-weight: 800; color: #14260c; }
.cta-band .ink { color: #0a0a0a; }
.cta-band > .container p, .cta-band p { color: rgba(16,33,10,.78); max-width: 520px; margin: 0 auto 26px; font-size: 17px; }
.cta-star { position: absolute; right: -30px; top: 50%; transform: translateY(-50%); font-size: 300px; color: rgba(255,255,255,.14); line-height: 0; z-index: 1; }
.band-form { max-width: 520px; margin: 0 auto; }

/* signup form (shared) */
.signup-form .field-row { display: flex; gap: 10px; }
.email-input {
  flex: 1; min-width: 0; padding: 14px 16px; font-size: 16px; font-family: var(--font);
  color: var(--text); background: #17171b; border: 1px solid #17171b; border-radius: 12px;
  outline: none; transition: box-shadow .2s ease;
}
.email-input:focus { box-shadow: 0 0 0 3px rgba(16,33,10,.25); }
.email-input::placeholder { color: #7a7a86; }
.field-error { color: #7a1020; font-size: 13px; margin: 10px 2px 0; font-weight: 600; }
.hp-wrap { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.hp-field { display: none; }
.signup-success { text-align: center; }
.success-badge { width: 56px; height: 56px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: rgba(16,33,10,.14); color: #0a0a0a; font-size: 28px; border: 1px solid rgba(16,33,10,.3); }
.signup-success h2 { margin: 0 0 10px; }
.signup-success p { color: rgba(16,33,10,.8); max-width: 460px; margin: 0 auto; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding: 54px 24px 34px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand p { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h3 { margin: 0 0 14px; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 600; }
.footer-col a { display: block; margin-bottom: 9px; color: var(--muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; padding-bottom: max(20px, env(safe-area-inset-bottom)); border-top: 1px solid var(--border); }
.footer-lang { color: var(--muted); }

/* ---------- Waiting list page ---------- */
.wl { padding: 60px 0 92px; min-height: 60vh; min-height: 60dvh; }
.wl-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 8px; }
.wl-head .section-title { text-align: left; margin: 0; }
.wl-count { text-align: right; }
.wl-count-num { font-size: 36px; font-weight: 800; font-style: italic; color: var(--lime); }
.wl-count-label { display: block; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.wl-note { color: var(--muted); font-size: 14px; margin: 0 0 24px; }
.wl-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); }
.wl-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.wl-table thead th { text-align: left; padding: 14px 18px; background: var(--surface); color: var(--muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--border); }
.wl-table tbody td { padding: 13px 18px; border-bottom: 1px solid var(--border); }
.wl-table tbody tr:last-child td { border-bottom: none; }
.wl-table tbody tr:hover { background: rgba(163,230,53,.05); }
.wl-idx { color: var(--muted); width: 48px; }
.wl-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.wl-empty { text-align: center; color: var(--muted); padding: 40px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 28px; }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { display: none; }
}
/* Below ~820px the side-by-side visuals overflow -> stack them vertically */
@media (max-width: 820px) {
  .showcase { flex-direction: column; }
  .show-arrow { transform: rotate(90deg); margin: 2px 0; }
  /* Stacked: move the thumbnail strip to a row above each visual so the image
     itself can use the full column width and read much larger. */
  .show-col { flex-direction: column; }
  .show-thumbs { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .show-big { width: min(340px, 78vw); }
  .show-col--card .show-big--card { width: min(460px, 86vw); max-width: 86vw; }
  .split-visual { flex-direction: column; }
  .split-arrow { transform: rotate(90deg); }
}
@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .ex-card { width: 224px; }
  .steps-row { flex-direction: column; align-items: stretch; }
  .step { max-width: none; }
  .step-arrow { display: none; }
  .showcase { gap: 12px; }
  .show-thumb { width: 48px; }
  .show-big { width: min(300px, 76vw); }
  .show-col--card .show-big--card { width: min(400px, 86vw); max-width: 86vw; }
  .compare-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .signup-form .field-row { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 30px; }
  .cta-star { font-size: 180px; right: -50px; }
  .wl-head { flex-direction: column; align-items: flex-start; }
  .wl-head .wl-count { text-align: left; }
}

/* Waitlist form error (AJAX failure) */
.form-error{margin:12px 0 0;font-size:.9rem;color:#fca5a5;font-weight:500}
