/* ═══════════════════════════════════════════════════════════════════════════
   cite0 · landing V3 (noir) — page composition only.
   ───────────────────────────────────────────────────────────────────────────
   This file owns the LANDING's layout. It owns no colour of its own: every
   value below is a token from design/v3/tokens.css, and every shared component
   (.v3-tag, .v3-flag, .v3-pill, .v3-rank, .v3-select, .v3-label,
   .v3-segmented, .v3-headline, .v3-silver, .v3-spark-dot, .v3-noir-page)
   comes from tokens.css + primitives.css. If a look is missing here, it is a
   design-system decision — add the primitive, don't fork it in this file.
   Ported 1:1 from the approved mock (Claude Design · "Landing v3").
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; }

/* [hidden] is how this page says "not now" (empty states, the pre-verdict
   explorer, the unlit preview tiles). A layout rule below would otherwise
   out-specify the UA's display:none, so make it win once, here. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  background: #060607;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--text); text-decoration: none; }
a:hover { color: #ffffff; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }


/* The noir grain — one fixed overlay, above everything, never interactive. */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("design/v3/assets/grain.svg");
}

/* ─── Shared page furniture ──────────────────────────────────────────────── */

.l-wrap { max-width: 1140px; margin: 0 auto; }
.l-wrap.narrow { max-width: 760px; }

/* The shared marks — .l-btn, .l-btn-ghost, .l-input, .l-mono, .l-eyebrow,
   .l-wordmark, .l-tick and ::placeholder — moved to design/v3/primitives.css
   on 2026-07-26, because the onboarding seam in web/app-v3/ uses the same
   marks. primitives.css is already linked above this file; do not re-add
   them here. Landing-only variants and layout still live below. */

.l-section { padding: 72px 32px; border-top: 1px solid var(--border); }


.l-h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 600; letter-spacing: -.02em; line-height: 1.12;
  margin: 10px 0 34px;
}
.l-h2 .muted { color: var(--text-subtle); }

.l-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}





/* ─── Nav ────────────────────────────────────────────────────────────────── */

.l-nav {
  position: sticky; top: 0; z-index: var(--z-sticky);
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 11, .72);
  border-bottom: 1px solid var(--border);
}
.l-nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap; row-gap: 10px;
}
.l-nav-links { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; row-gap: 8px; }
.l-nav-links a { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.l-nav-links a:hover { color: var(--text); }
.l-nav-links a.signin { font-weight: 600; }
.l-nav-links a.l-btn { font-size: 13px; padding: 9px 18px; color: var(--on-emphasis); }
.l-spacer { flex: 1; }

/* The wordmark is a mask so it inherits the page's ink — one asset, any tone. */

/* ─── Hero ───────────────────────────────────────────────────────────────── */

.l-hero { padding: 44px 32px 30px; text-align: center; }
.l-hero .l-wrap { max-width: 940px; }

.l-badge {
  display: inline-flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 9px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 11px; font-weight: 600; line-height: 1.4;
  color: var(--text-muted); background: var(--surface);
}

.l-h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 600; letter-spacing: -.03em; line-height: 1.08;
  margin: 16px 0 0;
}
/* The rotating engine name holds its own width so the headline never reflows. */
.l-typer { display: inline-block; min-width: 6.4em; text-align: left; white-space: nowrap; }
.l-caret {
  display: inline-block; width: 3px; height: .72em;
  background: var(--silver-hi); margin-left: 5px; vertical-align: -.03em;
  box-shadow: var(--silver-glow);
  animation: blink 1.1s steps(1) infinite;
}
.l-sub {
  font-size: 15px; color: var(--text-muted);
  max-width: 54ch; margin: 12px auto 0; line-height: 1.55; text-wrap: pretty;
}
/* One line now, so the ask stays inline — but it must not break across the
   wrap, which is what made the two-line version necessary before. */
.l-sub strong { color: var(--text); white-space: nowrap; }

/* ─── AI Visibility Explorer ─────────────────────────────────────────────── */

.l-explorer { padding: 8px 32px 72px; }

.xp-form {
  display: flex; align-items: flex-end; gap: 12px; flex-wrap: wrap;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
}
.xp-field { display: flex; flex-direction: column; gap: 6px; }
.xp-field.grow { flex: 1; min-width: 220px; }
.xp-form .v3-select { min-width: 210px; }
.xp-form .v3-select.area { min-width: 170px; }
.xp-form .l-input { font-size: 13px; padding: 9px 12px; }
.xp-form .l-btn { font-size: 13px; padding: 10px 22px; }

.xp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: 24px; padding: 18px 20px; align-items: start;
}
.xp-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.xp-phone-col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.xp-caption { font-size: 11px; color: var(--text-faint); }
.xp-sublabel {
  font-size: 11px; font-weight: 700;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 8px;
}
.xp-map {
  height: 212px; border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  position: relative; z-index: 0; background: var(--surface-sunken);
}
.xp-attrib { font-size: 10px; color: var(--text-faint); margin-top: 4px; }

.xp-verdict {
  margin: 0 20px 18px; padding: 16px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface-sunken);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: riseIn .35s var(--ease-out);
}
.xp-verdict .line { font-size: 13px; color: var(--text-muted); flex: 1; min-width: 240px; }
.xp-capture { display: flex; gap: 8px; flex-wrap: wrap; }
.xp-capture .l-input { font-size: 13px; padding: 9px 12px; }
.xp-capture .email { width: 190px; }
.xp-capture .site { width: 170px; }
.xp-capture .l-btn { font-size: 13px; padding: 9px 18px; }
.xp-captured {
  font-size: 13px; font-weight: 600; color: var(--positive-ink);
  animation: riseIn .3s var(--ease-out);
}
.xp-note {
  padding: 10px 20px 14px; border-top: 1px solid var(--border);
  font-size: 11px; color: var(--text-faint);
}

/* ─── The phone — a literal picture of what the customer sees ────────────── */

.gpt-phone {
  width: 318px; background: #050505; border-radius: 48px; padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(255, 255, 255, .10);
}
/* Inside the phone we are rendering someone else's UI (ChatGPT on a white
   phone), so these literals are deliberate: they are not our colour language. */
.gpt-screen {
  position: relative; background: #ffffff; color: #0d0d0d;
  border-radius: 38px; overflow: hidden;
  display: flex; flex-direction: column; height: 590px;
}
.gpt-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 23px; background: #000; border-radius: 20px; z-index: 5;
}
.gpt-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 26px 2px; font-size: 12px; font-weight: 700;
}
.gpt-status .right { display: flex; align-items: center; gap: 5px; }
.gpt-bars { display: flex; align-items: flex-end; gap: 2px; }
.gpt-bars i { width: 3px; background: #0d0d0d; border-radius: 1px; }
.gpt-batt {
  width: 22px; height: 11px; border: 1px solid rgba(13, 13, 13, .4);
  border-radius: 3px; display: inline-flex; padding: 1.5px;
}
.gpt-batt i { width: 70%; background: #0d0d0d; border-radius: 1.5px; }
.gpt-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px 10px; border-bottom: 1px solid #f0f0f0;
}
.gpt-burger { display: flex; flex-direction: column; gap: 3.5px; width: 16px; }
.gpt-burger i { height: 1.8px; background: #0d0d0d; border-radius: 1px; }
.gpt-title { font-size: 15px; font-weight: 700; display: flex; gap: 7px; align-items: center; }
.gpt-temp {
  font-size: 10px; font-weight: 600; color: #6e6e6e;
  background: #f0f0f0; padding: 2px 8px; border-radius: 16px;
}
.gpt-body { flex: 1; padding: 14px 16px; font-size: 13px; line-height: 1.55; overflow-y: hidden; }
.gpt-idle {
  display: flex; align-items: center; justify-content: center;
  color: #b4b4b4; font-size: 13px; text-align: center; padding: 120px 24px;
}
.gpt-ask { display: flex; justify-content: flex-end; margin-bottom: 14px; animation: riseIn .3s var(--ease-out); }
.gpt-ask span { background: #f4f4f4; padding: 9px 16px; border-radius: 18px; max-width: 80%; }
.gpt-dots { display: flex; gap: 4px; padding: 6px 0; }
.gpt-dots span { width: 6px; height: 6px; border-radius: 50%; background: #b4b4b4; animation: gptDot 1.2s infinite; }
.gpt-dots span:nth-child(2) { animation-delay: .2s; }
.gpt-dots span:nth-child(3) { animation-delay: .4s; }
.gpt-intro { animation: riseIn .3s var(--ease-out); }
.gpt-list { margin-top: 10px; display: flex; flex-direction: column; gap: 9px; }
.gpt-item { display: flex; align-items: flex-start; gap: 10px; animation: riseIn .32s var(--ease-out); }
.gpt-item .n {
  width: 22px; height: 22px; border-radius: 50%;
  background: #0d0d0d; color: #fff; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex: none; margin-top: 1px;
}
.gpt-item .txt { min-width: 0; }
.gpt-item .why { color: #6e6e6e; }
.gpt-you { font-size: 11px; font-weight: 700; color: #15803d; background: #dcfce7; padding: 1px 8px; border-radius: 20px; }
.gpt-sources { margin-top: 14px; font-size: 12px; color: #8e8ea0; animation: riseIn .3s var(--ease-out); }
.gpt-foot { padding: 8px 12px 4px; }
.gpt-composer {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid #e0e0e0; border-radius: 24px; padding: 9px 12px; font-size: 13px;
}
.gpt-plus {
  width: 24px; height: 24px; border-radius: 50%; background: #f0f0f0; color: #6e6e6e;
  display: flex; align-items: center; justify-content: center; font-size: 15px; flex: none;
}
.gpt-typed { flex: 1; min-width: 0; overflow: hidden; white-space: nowrap; }
.gpt-typed .caret {
  display: inline-block; width: 2px; height: 14px; background: #0d0d0d;
  vertical-align: -2px; margin-left: 1px; animation: blink .9s steps(1) infinite;
}
.gpt-typed .ph { color: #b4b4b4; }
.gpt-send {
  width: 28px; height: 28px; background: #0d0d0d; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; gap: 2px; flex: none;
}
.gpt-send i { width: 2px; background: #fff; border-radius: 1px; }
.gpt-home { width: 118px; height: 4px; background: #0d0d0d; border-radius: 3px; margin: 8px auto 4px; }

/* ─── Platform stats — what the catalog maps ─────────────────────────────── */

.l-stats-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; margin-bottom: 38px;
}
.l-stats .l-h2 { margin: 0; }
.l-stats-head .v3-select { min-width: 190px; }

.l-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr)); gap: 16px; }
.l-stat { border-top: 1px solid var(--border-strong); padding-top: 16px; }

/* tabular-nums so the count-up doesn't jitter the width on every frame */
.l-stat .v {
  font-family: var(--font-display); font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 600; letter-spacing: -0.02em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.l-stat .k { font-size: 14px; font-weight: 600; color: var(--text); margin-top: 12px; line-height: 1.35; }
/* The unit rides with the number but must not compete with it. */
.l-stat .v .u { font-size: .34em; font-weight: 500; color: var(--text-faint); margin-left: .18em; letter-spacing: 0; }

.l-stats-note {
  margin-top: 22px; font-size: 11px; color: var(--text-faint);
  display: flex; align-items: center; gap: 8px;
}
.l-stats-note .v3-spark-dot { flex: none; }

/* ─── Announcement bar ───────────────────────────────────────────────────── */

/* Above the sticky nav rather than inside it: it scrolls away instead of
   costing vertical space on every screen for the whole visit. */
.l-annc {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 9px 16px; text-align: center;
  background: var(--surface-invert); color: var(--text-invert);
  font-size: 12px; font-weight: 600;
}
.l-annc:hover { background: var(--n-800); color: var(--text-invert); }
.l-annc strong { font-weight: 700; }

/* ─── Waitlist ───────────────────────────────────────────────────────────── */

.l-waitlist .l-wrap { max-width: 760px; text-align: center; }
.l-wl-badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--border); border-radius: var(--radius-pill);
  padding: 6px 14px; font-size: 11px; font-weight: 600;
  color: var(--text-muted); background: var(--surface);
}
.l-waitlist .l-h2 { margin: 14px 0 8px; }
/* The offer gets its own line, a step down in size: it is the reward, not the
   instruction, and at equal weight the two halves competed. */
.l-waitlist .l-h2 em { display: block; font-size: .74em; margin-top: 8px; }
.l-wl-lede { font-size: 14px; color: var(--text-muted); margin: 0 0 26px; }

.l-wl-form {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 12px; text-align: left;
}
/* Labels rather than placeholder-as-label: a placeholder disappears the moment
   you type, so the one thing telling you a field is optional vanishes exactly
   when you might still be deciding whether to bother. */
.l-field { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.l-field.wide { grid-column: 1 / -1; }
.l-field .lbl { font-size: 11px; font-weight: 600; color: var(--text-muted); }
.l-field .lbl em {
  font-style: normal; font-weight: 500; color: var(--text-faint);
  font-size: 10px; letter-spacing: .02em; margin-left: 5px;
}
.l-wl-err { grid-column: 1 / -1; font-size: 12px; color: var(--negative-ink); text-align: center; }
.l-wl-form .l-input, .l-wl-form .v3-select { width: 100%; box-sizing: border-box; }
.l-wl-form .l-input {
  font: inherit; font-size: 13px; font-weight: 600; padding: 11px 14px;
  border-radius: var(--radius); border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text);
}
.l-btn.wide { grid-column: 1 / -1; justify-content: center; padding: 12px 0; }
/* Wraps rather than overflowing on a narrow phone — the label is long and this
   button is not inside anything that would clip it. */
.l-btn.lg { font-size: 14px; padding: 13px 26px; max-width: 100%; white-space: normal; text-align: center; line-height: 1.35; }
.l-wl-fine { margin-top: 12px; font-size: 12px; color: var(--text-faint); }

.l-wl-done {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--surface); padding: 26px;
  animation: riseIn .3s var(--ease-out);
}
.l-wl-done .t { font-size: 15px; font-weight: 700; color: var(--positive-ink); }
.l-wl-done .d { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ── the locked teaser ──
   Real rows, rendered and then blurred. `user-select:none` and
   `pointer-events:none` matter: a visitor who can select the text or hit the
   links behind the veil hasn't been shown a locked feature, they've been shown
   a bug. This is presentation, not security — the values are in the DOM, and
   anything that must not be public should never be exported to this file. */
.xp-locked { position: relative; }
.xp-locked.boxed { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.xp-locked .veil {
  filter: blur(5px); opacity: .75;
  pointer-events: none; user-select: none; -webkit-user-select: none;
}
.xp-locked .veil.pad { padding: 10px 12px; display: flex; flex-direction: column; gap: 7px; }
.xp-locked .over {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 10px; background: rgba(10,10,11,.35);
}
.xp-locked .over.grad { background: linear-gradient(180deg, transparent, rgba(10,10,11,.45)); }
.xp-lockedtags { display: flex; gap: 5px; flex-wrap: wrap; padding: 7px 0; }

/* Stays on one line while it fits and wraps when it doesn't, rather than
   overflowing its panel — the labels are long and the panel is narrow on a
   phone. A breakpoint would only move the width where this breaks. */
.l-btn.sm {
  font-size: 12px; padding: 8px 16px;
  max-width: 100%; white-space: normal; text-align: center; line-height: 1.35;
}

.v3-rank .name .medal { font-family: var(--font-mono); font-size: 10px; color: var(--text-faint); margin-right: 6px; }

.xp-src { display: flex; align-items: center; gap: 8px; }
.xp-src .key { width: 8px; height: 8px; border-radius: 2px; flex: none; }
.xp-src .site { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); }
.xp-src .track { flex: 1; height: 5px; border-radius: var(--radius-pill); background: var(--n-800); overflow: hidden; }
.xp-src .track i { display: block; height: 100%; }
.xp-src .n { font-size: 10px; font-family: var(--font-mono); color: var(--text-faint); }

/* ── where we cover ── */
.l-stats-body {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 28px; align-items: stretch;
}
.l-stat-grid { grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr)); align-content: start; }

.l-coverage { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.l-coverage .t {
  font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase; color: var(--text-faint);
}
.l-coverage .attr { font-size: 10px; color: var(--text-faint); }
.l-coverage-map {
  flex: 1; min-height: 230px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  position: relative; z-index: 0; background: var(--surface-sunken);
}
/* Leaflet puts .leaflet-container on this same element and its stylesheet
   loads after ours, so a descendant selector misses and an equal-specificity
   one loses — its default grey would show through on a black page. */
.l-coverage-map.leaflet-container { background: var(--surface-sunken); }

.cov-pin {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--positive); border: 1.5px solid #0a0a0b;
  animation: pinPulse 2.4s ease-out infinite;
}
.cov-label {
  background: rgba(10,10,11,.82); border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill); color: var(--text);
  font-family: var(--font-mono); font-size: 9.5px; font-weight: 600;
  letter-spacing: .04em; padding: 2px 8px; box-shadow: none;
}
.cov-label::before { display: none; }
@keyframes pinPulse {
  0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.55); }
  70%  { box-shadow: 0 0 0 11px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* ─── How it works — one row per step ────────────────────────────────────── */

/* Left: what you do. Right: the product it unlocks. The whole row is the
   doorway into that service's detail dialog. */
.l-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 24px; align-items: center;
  border-top: 1px solid var(--border-strong); padding: 26px 0;
  cursor: pointer;
}
.l-row:focus-visible { outline: 2px solid var(--spark-blue); outline-offset: 6px; border-radius: 4px; }
.l-row:hover .l-more { color: var(--text); border-color: var(--text-muted); }

/* The step number carries the sequence; "/ 04" says how far there is to go. */
.l-rownum { font-family: var(--font-display); font-size: 42px; font-weight: 600; line-height: 1; margin-bottom: 12px; }
.l-rownum span { font-size: 14px; color: var(--text-faint); font-weight: 400; }

.l-row-meta { display: flex; align-items: center; gap: 8px; }
.l-row h3 { font-size: 14px; font-weight: 700; letter-spacing: .04em; margin: 12px 0 8px; }
.l-row p { font-size: 13px; color: var(--text-muted); margin: 0 0 16px; line-height: 1.6; max-width: 44ch; }
.l-row-art { margin-bottom: 14px; }

.l-unlocks { font-size: 12px; color: var(--text-faint); margin: 14px 0 0; line-height: 1.55; }
.l-unlocks strong { color: var(--text); }

.l-more {
  display: inline-flex; margin-top: 14px;
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  padding: 6px 14px; transition: color .2s, border-color .2s;
}
.l-rowhint { margin-top: 14px; font-size: 12px; color: var(--text-subtle); }

/* ── the product card on the right ── */
.l-prod { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.l-prod-art {
  height: 150px; background: var(--surface-sunken); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; padding: 0 30px;
}
.l-prod-body { padding: 14px 18px 16px; }
.l-prod-head { display: flex; align-items: center; gap: 9px; }
.l-prod-head .name { font-size: 14px; font-weight: 700; }
.l-prod-body p { font-size: 12px; color: var(--text-muted); margin: 6px 0 0; line-height: 1.55; max-width: none; }

/* ── row 1 · Radar: four tracked facts, one at a time ── */
.l-radar { width: 100%; max-width: 310px; display: flex; flex-direction: column; gap: 11px; }
.l-tabs { display: flex; gap: 14px; font-family: var(--font-mono); font-size: 9px; letter-spacing: .06em; }
.l-tabs span {
  color: var(--text-faint); border-bottom: 1.5px solid transparent; padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.l-tabs span.on { color: var(--text); border-bottom-color: var(--text); }
.l-tabpanel {
  height: 78px; display: flex; flex-direction: column; justify-content: center; gap: 7px;
  animation: riseIn .35s var(--ease-out);
}

.l-rival { display: flex; align-items: center; gap: 10px; }
.l-rival .who { width: 56px; font-size: 9px; font-family: var(--font-mono); color: var(--text-faint); text-align: right; }
.l-rival.you .who { color: var(--text); font-weight: 600; }
.l-rival .track { flex: 1; height: 7px; border-radius: var(--radius-pill); background: var(--n-800); overflow: hidden; }
.l-rival .track i { display: block; height: 100%; border-radius: var(--radius-pill); background: var(--trend-flat); }
.l-rival.you .track i { background: var(--emphasis); box-shadow: var(--glow-invert); }

.l-src { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 9px; }
.l-src .key { width: 9px; height: 9px; border-radius: 3px; flex: none; }
.l-src .nm { width: 82px; color: var(--text-muted); }
.l-src .track { flex: 1; height: 6px; border-radius: var(--radius-pill); background: var(--n-800); overflow: hidden; }
.l-src .track i { display: block; height: 100%; border-radius: var(--radius-pill); }
.l-src .n { width: 16px; text-align: right; color: var(--text-faint); }

.l-sent { display: flex; height: 12px; border-radius: var(--radius-pill); overflow: hidden; background: var(--n-800); }
.l-sent i.pos { background: var(--positive); }
.l-sent i.neu { background: var(--n-300); }
.l-sent i.neg { background: var(--negative); }
.l-sent-key { display: flex; gap: 14px; font-size: 9px; font-family: var(--font-mono); color: var(--text-muted); }

.l-vol { display: flex; align-items: flex-end; gap: 4px; height: 44px; }
.l-vol i { flex: 1; border-radius: 2px; background: var(--n-400); }
.l-vol i.now { background: var(--emphasis); box-shadow: var(--glow-invert); }
.l-caption { font-size: 9px; font-family: var(--font-mono); color: var(--text-faint); }

/* ── row 2 · Web Readiness: the crawl, line by line ── */
.l-crawl { width: 100%; max-width: 280px; display: flex; flex-direction: column; gap: 7px; font-family: var(--font-mono); font-size: 9.5px; }
.l-crawl > div { display: flex; align-items: center; gap: 8px; animation: fFade 6s infinite; }
.l-crawl > div:nth-child(2) { animation-delay: .35s; }
.l-crawl > div:nth-child(3) { animation-delay: .7s; }
.l-crawl > div:nth-child(4) { animation-delay: 1.05s; }
.l-crawl > div:nth-child(5) { animation-delay: 1.4s; }
.l-crawl .p { color: var(--text-muted); width: 90px; flex: none; }
.l-crawl .ok { color: var(--positive-ink); }
.l-crawl .bad { color: var(--negative-ink); }
.l-crawl .score { justify-content: space-between; border-top: 1px solid var(--border); padding-top: 7px; color: var(--text-faint); }
.l-crawl .score .v { color: var(--text); font-weight: 600; }
.l-crawl .score .v small { color: var(--text-faint); font-weight: 400; }

/* ── row 3 · Profile Optimization: the score and its weighted areas ── */
.l-gbp { display: flex; align-items: center; gap: 22px; }
.l-ring { position: relative; display: grid; place-items: center; flex: none; }
.l-ring.big, .l-ring.big svg { width: 96px; height: 96px; }
.l-ring svg { transform: rotate(-90deg); }
.l-ring .val { position: absolute; text-align: center; animation: fFade 7s infinite; }
.l-ring .val b { display: block; font-family: var(--font-display); font-size: 23px; font-weight: 600; }
.l-ring .val small { font-size: 9px; color: var(--text-faint); }

.l-areabars { display: flex; flex-direction: column; gap: 8px; width: 158px; }
.l-areabars > div { animation: fFade 7s infinite; }
.l-areabars > div:nth-child(2) { animation-delay: .3s; }
.l-areabars > div:nth-child(3) { animation-delay: .6s; }
.l-areabars .cap { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 9px; color: var(--text-muted); margin-bottom: 3px; }
.l-areabars .cap .w { color: var(--text-faint); }
.l-areabars .bar { height: 5px; border-radius: var(--radius-pill); background: var(--n-800); overflow: hidden; }
.l-areabars .bar i { display: block; height: 100%; border-radius: var(--radius-pill); }
.l-areabars .bar i.ok { background: var(--positive); }
.l-areabars .bar i.bad { background: var(--negative); }
.l-areabars .applied { align-self: flex-start; animation: fPop 7s infinite 1.3s; }

/* ── row 4 · Agent Analytics ── */
.l-agent { width: 100%; max-width: 280px; }
.l-agent .bars { display: flex; align-items: flex-end; gap: 5px; height: 56px; }
.l-agent .bars i {
  flex: 1; border-radius: 2px; background: var(--n-400);
  transform-origin: bottom; animation: fRise 7s var(--ease-standard) infinite;
}
.l-agent .bars i.now { background: var(--positive); }
.l-tagrow { display: flex; gap: 6px; margin-top: 12px; flex-wrap: wrap; }

/* ── row 5 · Content Optimization ── */
.l-beforeafter { width: 100%; max-width: 290px; display: flex; flex-direction: column; gap: 12px; }
.l-beforeafter .cap { display: flex; justify-content: space-between; font-size: 9.5px; font-family: var(--font-mono); color: var(--text-faint); margin-bottom: 5px; }
.l-beforeafter .cap .lbl { color: var(--text-muted); }
.l-beforeafter .cap .gain { color: var(--positive-ink); font-weight: 700; animation: fFade 7s infinite .8s; }
.l-beforeafter .track { height: 7px; border-radius: var(--radius-pill); background: var(--n-800); overflow: hidden; }
.l-beforeafter .track i { display: block; height: 100%; border-radius: var(--radius-pill); transform-origin: left; }
.l-beforeafter .track i.before { background: var(--trend-flat); }
.l-beforeafter .track i.after { background: var(--positive); animation: fGrow 7s var(--ease-standard) .3s infinite; }
.l-beforeafter .l-tagrow { margin-top: 0; }

/* ── the small props on the left of each row ── */
.l-checklist { display: flex; flex-direction: column; gap: 6px; width: 180px; }
.l-checkline { display: flex; align-items: center; gap: 7px; }
.l-checkline i { display: block; flex: 1; height: 5px; border-radius: 3px; background: var(--n-800); }

.l-tick {
  width: 13px; height: 13px; border-radius: 3px; flex: none;
  background: var(--positive); color: #0a0a0b;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.l-tick.empty { background: none; border: 1px solid var(--border-strong); }
.l-tick.round { width: 16px; height: 16px; border-radius: 50%; }
.l-tick.badge { position: absolute; top: -8px; right: -8px; width: 19px; height: 19px; border-radius: 50%; font-size: 10px; }

.l-chip {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  padding: 8px 12px; background: var(--surface);
}
.l-chip.wide { width: 180px; }
.l-chip.rel { position: relative; display: inline-flex; padding: 8px 14px; }
.l-chip .url { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); white-space: nowrap; overflow: hidden; }
.l-chip .url .caret { display: inline-block; width: 2px; height: 10px; background: var(--text); margin-left: 2px; vertical-align: -1px; animation: blink .9s steps(1) infinite; }
.l-chip .g {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1.5px solid var(--text-muted); color: var(--text);
  font-size: 10px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.l-chip .glabel { font-size: 11px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }

.l-snippet {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border-strong); border-radius: var(--radius);
  padding: 8px 12px; background: var(--surface);
  font-family: var(--font-mono); font-size: 10px; color: var(--text-muted);
}

.l-paste {
  position: relative; width: 180px;
  border: 1px dashed var(--border-strong); border-radius: var(--radius);
  padding: 10px 12px; background: var(--surface);
}
.l-paste i { display: block; height: 4px; border-radius: 2px; background: var(--n-800); }
.l-paste i + i { margin-top: 5px; }

/* ─── Service detail dialog ──────────────────────────────────────────────── */

/* A native <dialog>: Esc, focus trapping and inerting the page behind are the
   platform's job, not ours. Only the look lives here. */
.l-modal {
  width: 100%; max-width: 560px; max-height: 84vh; padding: 0;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.l-modal[open] { animation: riseIn .28s var(--ease-standard); }
.l-modal::backdrop { background: rgba(6, 6, 7, .55); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }

.l-modal-head {
  position: sticky; top: 0; z-index: 2;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 20px 24px 14px;
}
.l-modal-head h2 { font-family: var(--font-display); font-size: 21px; font-weight: 600; margin: 6px 44px 0 0; line-height: 1.3; }
.l-modal-head .close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px; border: 0;
  background: none; color: var(--text-faint); cursor: pointer; font-size: 15px;
}
.l-modal-head .close:hover { background: var(--surface-hover); color: var(--text); }

.l-modal-body { padding: 20px 24px 26px; max-height: calc(84vh - 90px); overflow-y: auto; }
.l-modal-body .lead { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0 0 20px; }
.l-modal-body .what { font-size: 13px; font-weight: 700; margin: 0 0 8px; }
.l-modal-body .bullet {
  display: flex; gap: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.6;
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.l-modal-body .bullet::before { content: "+"; color: var(--positive); }
.l-modal-body .note { font-size: 12px; color: var(--text-faint); line-height: 1.6; margin: 16px 0 0; }
.l-modal-body .l-btn { margin-top: 20px; font-size: 13px; padding: 10px 20px; }

/* ─── Pricing ────────────────────────────────────────────────────────────── */

.l-pricing .l-h2 { margin-bottom: 8px; }
.l-lede { font-size: 14px; color: var(--text-muted); margin: 0 0 26px; max-width: 60ch; }
.l-trial {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 10px 18px; margin-bottom: 22px;
  font-size: 13px; color: var(--text-muted); background: var(--surface);
}
.l-trial strong { color: var(--text); }
.l-billing { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.l-billing .note { font-size: 12px; color: var(--text-faint); }

.l-scroller { overflow-x: auto; padding-top: 12px; }
.l-plans { min-width: 780px; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; background: var(--surface); }
.l-plan-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.l-plan-grid > .lbl { padding: 20px 18px; align-self: end; }
.l-plan {
  position: relative; padding: 20px 16px 18px; border-left: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
}
.l-plan.hl { background: var(--surface-hover); }
.l-plan-name { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.l-plan-name .v3-flag { box-shadow: var(--silver-glow); }
/* A breathing line above the first row, so the header block reads as a header. */
.l-plan-spacer { height: 12px; background: var(--surface-sunken); border-bottom: 1px solid var(--border); }
.l-plan .price { display: flex; align-items: baseline; gap: 6px; }
.l-plan .price .was { font-family: var(--font-display); font-size: 16px; color: var(--text-faint); text-decoration: line-through; }
.l-plan .price .now { font-family: var(--font-display); font-size: 26px; font-weight: 600; }
.l-plan .price .per { font-size: 12px; color: var(--text-faint); }
.l-plan .l-btn, .l-plan .l-btn-ghost { font-size: 12px; padding: 8px 15px; }
.l-plan .l-btn-ghost { padding: 7px 15px; }

.l-plan-group {
  padding: 12px 18px 9px; background: var(--surface-sunken);
  border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700;
  letter-spacing: var(--tracking-eyebrow); text-transform: uppercase; color: var(--text-faint);
}
.l-plan-row { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); border-bottom: 1px solid var(--border); }
.l-plan-row > .lbl { padding: 11px 18px; font-size: 13px; color: var(--text-muted); }
.l-plan-row > .lbl small { font-size: 11px; color: var(--text-faint); }
.l-plan-row > .cell { padding: 11px 16px; font-size: 13px; font-weight: 600; border-left: 1px solid var(--border); color: var(--text); }
.l-plan-row > .cell.yes { color: var(--positive); }
.l-plan-row > .cell.no { color: var(--text-faint); }
.l-plan-row > .cell.hl { background: var(--surface-hover); }

/* ─── FAQ ────────────────────────────────────────────────────────────────── */

.l-faq details { border-top: 1px solid var(--border); padding: 16px 4px; }
.l-faq details:last-of-type { border-bottom: 1px solid var(--border); }
.l-faq summary { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; font-weight: 600; }
.l-faq summary .sign { color: var(--text-faint); }
.l-faq details[open] summary .sign { transform: rotate(45deg); }
.l-faq summary .sign { display: inline-block; transition: transform .15s var(--ease-out); }
.l-faq p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 12px 0 0; max-width: 65ch; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */

/* A colophon, nothing else. The closing "Get picked. Stay picked." block and
   its form lived here; the waitlist section above already asks for the same
   thing, so the page now ends rather than asking twice. The heading, lede,
   form and fineprint rules went with it — dead CSS is a second copy of
   something, aging in place. */
.l-footer { padding: 28px 32px 34px; border-top: 1px solid var(--border); text-align: center; }
.l-colophon {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; padding-top: 4px;
}
.l-colophon span { font-size: 12px; color: var(--text-faint); }
.l-colophon a { color: var(--text-muted); }
.l-colophon .build { font-family: var(--font-mono); font-size: 11px; }

/* ─── Business type-ahead ────────────────────────────────────────────────────
   ONE rule set for the dropdown on BOTH business-name fields — the explorer's
   and the waitlist's. It declares no colours of its own: every value here is a
   token, which is what lets [data-theme="noir"] re-skin it for free.

   The host is whatever wraps the input (a .xp-field or an .l-field); it only
   needs to become a positioning context, which is why this attaches a class
   rather than restyling either parent. */
.l-ac-host { position: relative; }

.l-ac {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0; z-index: 30;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: auto; max-height: 260px;
  text-align: left;
}
.l-ac-row {
  display: flex; flex-direction: column; gap: 2px;
  padding: 9px 12px; cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.l-ac-row:last-child { border-bottom: 0; }
/* Keyboard and pointer land on the SAME class, so arrowing through the list
   and hovering it can never look like two different states. */
.l-ac-row.on { background: var(--surface-hover); }
.l-ac-row .n { font-size: 13px; font-weight: 600; color: var(--text); }
.l-ac-row .a { font-size: 11px; color: var(--text-muted); }

/* ─── Motion ─────────────────────────────────────────────────────────────── */

@keyframes blink { 0%, 49% { opacity: 1 } 50%, 100% { opacity: 0 } }
@keyframes gptDot { 0%, 80%, 100% { opacity: .3 } 40% { opacity: 1 } }
@keyframes riseIn { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: translateY(0) } }
@keyframes fGrow { 0% { transform: scaleX(0); opacity: 0 } 10% { opacity: 1 } 24% { transform: scaleX(1) } 90% { transform: scaleX(1); opacity: 1 } 100% { transform: scaleX(1); opacity: 0 } }
@keyframes fRing { 0% { stroke-dashoffset: 251; opacity: 0 } 10% { opacity: 1 } 38% { stroke-dashoffset: 45 } 90% { stroke-dashoffset: 45; opacity: 1 } 100% { stroke-dashoffset: 45; opacity: 0 } }
@keyframes fScan { 0% { transform: translateY(0); opacity: 0 } 8% { opacity: 1 } 78% { transform: translateY(126px); opacity: 1 } 100% { transform: translateY(126px); opacity: 0 } }
@keyframes fPop { 0%, 55% { opacity: 0; transform: scale(.4) } 65% { opacity: 1; transform: scale(1.2) } 72% { transform: scale(1) } 90% { opacity: 1 } 100% { opacity: 0 } }
@keyframes fFade { 0%, 25% { opacity: 0 } 40%, 90% { opacity: 1 } 100% { opacity: 0 } }
@keyframes fRise { 0% { transform: scaleY(0); opacity: 0 } 12% { opacity: 1 } 26% { transform: scaleY(1) } 88% { transform: scaleY(1); opacity: 1 } 100% { transform: scaleY(1); opacity: 0 } }
@keyframes enableGlow { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0) } 25% { box-shadow: 0 0 28px rgba(255,255,255,.30) } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0) } }

.anim-pop { animation: fPop 4.2s infinite; }
.anim-pop.d5 { animation-delay: .5s; }
.anim-pop.slow { animation: fPop 3.4s infinite; }
.anim-fade { animation: fFade 4.2s infinite; }
.anim-fade.d4 { animation-delay: .4s; }
.anim-fade.d8 { animation-delay: .8s; }

/* ─── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 760px) {
  .l-nav-anchor { display: none !important; }
  section, footer { padding-left: 18px !important; padding-right: 18px !important; }
  .xp-field { min-width: 0; width: 100%; flex: 1 1 100%; }
  .xp-form .v3-select, .xp-form .v3-select.area { width: 100%; min-width: 0; }
  .xp-form .l-btn { width: 100%; justify-content: center; }
  .xp-grid { padding: 12px 10px; gap: 16px; }
}

@media (max-width: 430px) {
  .gpt-phone { width: 100%; max-width: 296px; }
}
