/* Vigil landing — cinematic night-watch. The hero IS the product moment:
   a monitor catches a person, a Telegram alert card materialises over it. */

/* ---- rhythm system: one column, one vertical cadence, one header pattern ----
   Every content band aligns to --container and is separated by --sec-gap, so the
   page reads as evenly-spaced segments instead of ad-hoc margins. */
:root {
  --container: 1200px;
  --container-narrow: 960px;
  --gutter: clamp(16px, 5vw, 56px);
  --sec-gap: clamp(72px, 10vw, 128px);
}

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 56px);
  background: color-mix(in srgb, var(--nw-ink) 72%, transparent);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--nw-line);
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-family: var(--nw-font-display); font-weight: 900; font-size: 1.2rem; color: var(--nw-text); letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: clamp(12px, 3vw, 28px); }
.nav-links a { text-decoration: none; color: var(--nw-text-dim); font-size: .92rem; font-weight: 600; }
.nav-links a:hover { color: var(--nw-text); }
.nav-cta { padding: 8px 16px; border-radius: 999px; color: var(--nw-ink) !important;
  background: linear-gradient(180deg, var(--nw-amber-soft), var(--nw-amber)); }
.nav-cta:hover { box-shadow: var(--nw-glow-amber); }

/* ---- hero ---- */
.hero { position: relative; overflow: hidden; padding: clamp(40px, 7vw, 90px) clamp(16px, 5vw, 56px) clamp(30px, 5vw, 60px); }
.hero-inner { position: relative; z-index: 1; max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--nw-font-mono);
  font-size: .74rem; letter-spacing: .24em; color: var(--nw-amber); margin: 0 0 14px; }
.eyebrow.center { justify-content: center; display: flex; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nw-amber);
  box-shadow: 0 0 0 0 rgba(255,168,40,.6); animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(255,168,40,.5); } 70% { box-shadow: 0 0 0 9px rgba(255,168,40,0); } 100% { box-shadow: 0 0 0 0 rgba(255,168,40,0); } }
.hero h1 { font-family: var(--nw-font-display); font-weight: 900; letter-spacing: -.02em;
  font-size: clamp(2.6rem, 6.4vw, 4.6rem); line-height: .98; margin: 0 0 18px; }
.grad { background: linear-gradient(120deg, var(--nw-amber-soft), var(--nw-amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.lede { color: var(--nw-text-dim); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.6; max-width: 46ch; margin: 0 0 26px; }
.hero-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 26px; }
.cta { display: inline-block; padding: 14px 26px; border-radius: 12px; text-decoration: none; font-weight: 700;
  color: var(--nw-ink); background: linear-gradient(180deg, var(--nw-amber-soft), var(--nw-amber));
  box-shadow: var(--nw-glow-amber); transition: transform .15s, box-shadow .2s; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 0 32px rgba(255,168,40,.26); }
.cta-ghost { color: var(--nw-text); text-decoration: none; font-weight: 600; padding: 14px 8px; }
.cta-ghost:hover { color: var(--nw-amber); }
.hero-trust { display: flex; gap: clamp(16px, 3vw, 34px); list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.hero-trust li { color: var(--nw-text-dim); font-size: .82rem; }
.hero-trust strong { color: var(--nw-text); font-size: 1.05rem; margin-right: 4px; }

/* hero stage: a real capture — a night camera boxing a person, alert already
   on the phone beside it. A slow, contained "breathe" keeps the ambient motion
   the hero always had; tokens.css zeroes it under reduced-motion automatically. */
.hero-stage { position: relative; }
.hero-stage picture { display: block; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--nw-line-strong); box-shadow: 0 40px 90px rgba(0,0,0,.6), var(--nw-hairline); }
.hero-shot { display: block; width: 100%; height: auto; animation: hero-breathe 16s ease-in-out infinite; }
@keyframes hero-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.018); } }

/* ---- hero pitch overlay: the story, played back as motion over the photo ----
   Reuses the animation vocabulary retired in bb96c2a (scan / lock / cardin /
   blink / pulse) but now as a layer above the real image instead of a CSS-drawn
   scene. One ~7s loop, staggered so it reads as a sequence, not four effects
   firing at once: feed scans -> the box locks onto the person already framed
   in the photo -> the alert card arrives (the payoff already visible on the
   phone in the shot, replayed as if just sent) -> a soft reset. All decorative
   (.hero-stage is aria-hidden); percentages below are measured against the
   actual person/box position in hero-camera-alert.webp. */
.hero-overlay { position: absolute; inset: 0; border-radius: 18px; overflow: hidden; pointer-events: none; }

.hero-scanline { position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,168,40,.6), transparent);
  opacity: .85; animation: hero-scan 7s linear infinite; }
@keyframes hero-scan { 0% { top: -2%; } 50% { top: 101%; } 100% { top: 101%; } }

.hero-osd { position: absolute; top: var(--sp-3); left: var(--sp-3);
  display: flex; align-items: center; gap: var(--sp-2);
  font-family: var(--nw-font-mono); font-size: .66rem; letter-spacing: .06em;
  color: var(--nw-text-dim); text-shadow: 0 1px 3px rgba(0,0,0,.9); }
.hero-osd-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--nw-alarm); flex: none;
  animation: hero-blink 1.6s steps(1) infinite; }
@keyframes hero-blink { 0%, 60% { opacity: 1; } 61%, 100% { opacity: .25; } }

/* Box + label are measured against the person already boxed in the photo
   (~44-50% width, ~33-49% height of the frame) so the "lock-on" lands on them,
   not on empty pavement. */
.hero-box { position: absolute; left: 43.5%; top: 31.5%; width: 7.2%; height: 18.5%;
  border: 2px solid var(--nw-amber); border-radius: 3px; box-shadow: 0 0 18px rgba(255,168,40,.35);
  animation: hero-lock 7s ease-in-out infinite; }
.hero-box-tag { position: absolute; top: -20px; left: -2px; white-space: nowrap;
  font-family: var(--nw-font-mono); font-size: .56rem; letter-spacing: .04em;
  background: var(--nw-amber); color: #241300; padding: 2px 6px; border-radius: 3px; }
@keyframes hero-lock {
  0%, 12% { opacity: 0; transform: scale(1.2); }
  20% { opacity: 1; transform: scale(1); }
  86% { opacity: 1; transform: scale(1); }
  95%, 100% { opacity: 0; transform: scale(1.06); }
}

.hero-alert { position: absolute; right: var(--sp-3); bottom: var(--sp-3);
  display: flex; gap: var(--sp-2); align-items: flex-start;
  width: min(210px, 48%); padding: var(--sp-2) var(--sp-3);
  background: color-mix(in srgb, var(--nw-surface) 90%, transparent);
  border: 1px solid var(--nw-line-strong); border-radius: var(--nw-radius-sm);
  box-shadow: 0 16px 40px rgba(0,0,0,.55), var(--nw-hairline);
  backdrop-filter: blur(6px);
  animation: hero-cardin 7s ease-in-out infinite;
}
@keyframes hero-cardin {
  0%, 40% { opacity: 0; transform: translateY(14px) scale(.96); }
  52%, 90% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(6px) scale(.98); }
}
.hero-alert-thumb { position: relative; flex: none; width: 40px; height: 40px; border-radius: 6px;
  background: linear-gradient(160deg, #1b2536, #0c1119); border: 1px solid var(--nw-line); overflow: hidden; }
.hero-alert-thumb::after { content: ""; position: absolute; left: 30%; bottom: 8%; width: 34%; height: 62%;
  border-radius: 40% 40% 10% 10%; background: #2a3446; }
.hero-alert-thumb-tag { position: absolute; bottom: 2px; left: 2px; z-index: 1; font-family: var(--nw-font-mono);
  font-size: .48rem; color: var(--nw-amber); background: rgba(0,0,0,.6); padding: 1px 3px; border-radius: 2px; }
.hero-alert-body { min-width: 0; }
.hero-alert-title { margin: 0 0 2px; font-size: .76rem; font-weight: 700; color: var(--nw-text); line-height: 1.3; }
.hero-alert-time { margin: 0 0 6px; font-family: var(--nw-font-mono); font-size: .62rem; color: var(--nw-text-dim); }
.hero-alert-actions { display: flex; gap: 5px; }
.hero-alert-chip { flex: 1; text-align: center; font-size: .6rem; font-weight: 600; padding: 3px 4px; border-radius: 5px; white-space: nowrap; }
.hero-alert-chip.ok { color: var(--nw-sage); background: color-mix(in srgb, var(--nw-sage) 16%, transparent); }
.hero-alert-chip.esc { color: var(--nw-alarm); background: color-mix(in srgb, var(--nw-alarm) 16%, transparent); }

/* ---- band ---- */
.band { max-width: var(--container); margin: clamp(20px,4vw,44px) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--nw-gap); }
.band-item { padding: 18px 20px; background: var(--nw-surface); border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius); box-shadow: var(--nw-hairline); }
.band-item strong { display: block; font-family: var(--nw-font-display); font-weight: 900; font-size: 1.5rem; color: var(--nw-amber); }
.band-item span { font-size: .84rem; color: var(--nw-text-dim); }

/* ---- sections ---- */
.section-h { font-family: var(--nw-font-display); font-weight: 900; letter-spacing: -.01em;
  font-size: clamp(1.7rem, 3.6vw, 2.7rem); line-height: 1.05; text-align: center; margin: 0 auto 40px; max-width: 20ch; }

/* Section separators — a fading hairline centred in the gap above each major band,
   so the page reads as evenly-spaced segments with an explicit divider between them. */
.hedge, .console-look, .voices, .pricing, .faq { position: relative; }
.steps::before, .moment::before, .catch::before, .console-look::before,
.hedge::before, .voices::before, .pricing::before, .faq::before {
  content: ""; position: absolute; top: calc(var(--sec-gap) / -2); left: 50%;
  transform: translateX(-50%); width: min(var(--container), 88%); height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--nw-line-strong) 22%, var(--nw-line-strong) 78%, transparent);
}
.steps, .pricing { max-width: var(--container); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter); }
/* The trust bar sits close above — HOW IT WORKS gets extra air so the section
   break reads clearly. */
.steps { margin-top: calc(var(--sec-gap) + 28px); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--nw-gap); }
.step { position: relative; padding: 32px 28px 30px; background: linear-gradient(160deg, var(--nw-surface-2), var(--nw-surface));
  border: 1px solid var(--nw-line); border-radius: var(--nw-radius); box-shadow: var(--nw-hairline); overflow: hidden; }
.step::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--nw-amber); opacity: .7; }
.step-n { display: inline-block; font-family: var(--nw-font-mono); font-size: .8rem; color: var(--nw-amber); letter-spacing: .1em; }
.step h3 { font-size: 1.2rem; margin: 14px 0 10px; }
.step p { color: var(--nw-text-dim); line-height: 1.55; margin: 0; font-size: .94rem; }

/* ---- moment (phone) ---- */
.moment { max-width: var(--container); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(24px,5vw,60px); align-items: center; }
.moment .section-h { text-align: left; margin-left: 0; }
.moment-lede { color: var(--nw-text-dim); font-size: 1.05rem; line-height: 1.6; margin: 0 0 22px; }
.moment-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.moment-list li { display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.mi { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; font-size: .8rem; font-weight: 700; }
.mi.ok { background: color-mix(in srgb, var(--nw-sage) 18%, transparent); color: var(--nw-sage); }
.mi.esc { background: color-mix(in srgb, var(--nw-alarm) 18%, transparent); color: var(--nw-alarm); }
.mi.info { background: color-mix(in srgb, var(--nw-signal) 18%, transparent); color: var(--nw-signal); }

.phone-shot { justify-self: center; width: min(300px, 82%); margin: 0; }
.phone-shot picture { display: block; border-radius: 30px; overflow: hidden;
  border: 1px solid var(--nw-line-strong); box-shadow: 0 40px 90px rgba(0,0,0,.6), var(--nw-hairline); }
.phone-shot img { display: block; width: 100%; height: auto; }

/* ---- pricing ---- */
.price-card { position: relative; overflow: hidden; max-width: 460px; margin: 0 auto; text-align: center;
  padding: 40px 32px; border-radius: 20px; background: linear-gradient(165deg, var(--nw-surface-2), var(--nw-surface));
  border: 1px solid var(--nw-line-strong); box-shadow: 0 30px 70px rgba(0,0,0,.5), var(--nw-hairline); }
.price-glow { position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,168,40,.18), transparent 65%); pointer-events: none; }
.price { position: relative; font-family: var(--nw-font-display); font-weight: 900; font-size: 4rem; line-height: 1; margin: 0; }
.price-cur { font-size: 1.8rem; vertical-align: super; color: var(--nw-amber); }
.price-per { font-size: 1rem; font-family: var(--nw-font-mono); color: var(--nw-text-dim); }
.price-tag { color: var(--nw-text-dim); font-size: .9rem; margin: 6px 0 22px; }
.price-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; text-align: left; }
.price-list li { position: relative; padding-left: 28px; font-size: .95rem; }
.price-list li::before { content: "✓"; position: absolute; left: 0; color: var(--nw-sage); font-weight: 700; }
.price-cta { display: block; }
.price-fine { font-size: .78rem; margin: 16px 0 0; }

/* ---- signup ---- */
.signup { max-width: var(--container-narrow); margin: var(--sec-gap) auto clamp(40px,7vw,80px); padding: clamp(28px,5vw,48px) clamp(20px,5vw,48px);
  border-radius: 22px; background: linear-gradient(160deg, var(--nw-surface-2), var(--nw-surface));
  border: 1px solid var(--nw-line-strong); box-shadow: var(--nw-hairline);
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px,5vw,48px); align-items: center; }
.signup .section-h { text-align: left; margin: 0 0 12px; }
#lead-form { display: grid; gap: 10px; }
#lead-form input { width: 100%; }
#lead-form button { margin-top: 4px; }
.ok-msg { color: var(--nw-sage); margin: 4px 0 0; }
.error { color: var(--nw-alarm); margin: 4px 0 0; }

/* ---- footer ---- */
footer { text-align: center; padding: 40px 20px 56px; border-top: 1px solid var(--nw-line); margin-top: 40px; }
.foot-brand { display: inline-flex; align-items: center; gap: 8px; font-family: var(--nw-font-display); font-weight: 900; margin-bottom: 10px; }
.foot-link { color: var(--nw-signal); text-decoration: none; }
.foot-link:hover { text-decoration: underline; }
footer .dim { max-width: 60ch; margin: 10px auto 0; font-size: .74rem; line-height: 1.5; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stage { margin-top: 20px; max-width: 460px; margin-left: auto; margin-right: auto; }
  .band { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .moment { grid-template-columns: 1fr; }
  .moment .section-h { text-align: center; }
  .moment-copy { text-align: center; }
  .moment-list { text-align: left; max-width: 42ch; margin: 0 auto; }
  .signup { grid-template-columns: 1fr; }
  .signup .section-h { text-align: center; }

  /* A phone visitor should hit a real product moment before the wall of
     trust-bar stats. The hero photo already does that inside .hero; pull the
     "3am message" section (phone-alert.png) up right behind it too, ahead of
     .band/.trust/.steps, without touching source order or markup. Every other
     section defaults to order:0, so .hero must sort before .moment explicitly
     — otherwise -1 would jump .moment above the hero itself. */
  main { display: flex; flex-direction: column; }
  .hero { order: -2; }
  .moment { order: -1; }
}
@media (max-width: 460px) {
  .band { grid-template-columns: 1fr; }
  /* Trim first-viewport text weight on phones — keep the headline, category
     line and lede (the value prop + CTAs), drop the longer ICP list so the
     hero photo and the pulled-up phone-alert proof arrive sooner. */
  .hero-icp { display: none; }
  /* Hero pitch overlay on small screens: the card shrinks and tucks in a touch
     tighter so it never overlaps the frame edge or forces horizontal scroll;
     the box tag drops font-size so its wider label still clears the image edge. */
  .hero-alert { width: min(168px, 50%); padding: var(--sp-2); gap: 6px; }
  .hero-alert-thumb { width: 32px; height: 32px; }
  .hero-alert-title { font-size: .7rem; }
  .hero-box-tag { font-size: .5rem; top: -17px; }
  .hero-osd { font-size: .58rem; }
}
/* Reduced motion: the heavy, vestibular part — the full-section scroll-reveal
   slide — is dropped (landing.js skips `reveals-on`, so sections simply appear).
   The hero photo's ambient breathing zoom and the small pulse dot are the only
   other motion on the page save for the hero pitch overlay below; tokens.css
   already zeroes every animation under reduced-motion (animation: none on
   everything), which leaves the overlay pieces at their un-animated resting
   styles — exactly the composed, single-frame state we want: box + OSD + card
   fully visible, nothing mid-transition. Only the scanline (a moving sweep with
   no meaningful "static" pose) is explicitly hidden; everything else needs no
   override because its non-animated state already reads as the story's payoff
   frame. */
@media (prefers-reduced-motion: reduce) {
  .hero-scanline { display: none; }
}

/* ============================================================
   Cinematic story layer — more colour, told as you scroll.
   Appended so it overrides the base rules above; touches only
   background, the headline gradient, and scroll-reveal.
   ============================================================ */

/* A richer, more colourful night behind the whole page: amber watch-light
   top-left, signal-blue top-right, a violet wash rising from the bottom. */
body {
  background:
    radial-gradient(1200px 720px at 6% -8%, rgba(255, 168, 40, 0.07), transparent 56%),
    radial-gradient(1000px 640px at 102% 2%, rgba(90, 166, 255, 0.06), transparent 55%),
    radial-gradient(1000px 760px at 50% 112%, rgba(150, 110, 255, 0.05), transparent 62%),
    var(--nw-ink);
  background-attachment: fixed;
}

/* A single, static amber gradient on the headline — confident, not flashing.
   (The animated colour-shift was dropped in the seriousness pass.) */
.grad {
  background: linear-gradient(120deg, var(--nw-amber-soft), var(--nw-amber));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Each act of the story rises into view. reveals-on is added by JS only when
   motion is allowed, so without JS (or with reduced-motion) all sections show. */
body.reveals-on main > section { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
body.reveals-on main > section.in { opacity: 1; transform: none; }

/* The 3am payoff runs a touch hotter (alarm glow); the close runs calm (sage). */
.moment { position: relative; isolation: isolate; }
.moment::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 90% at 82% 24%, rgba(255, 84, 104, 0.08), transparent 60%);
}
.signup { position: relative; isolation: isolate; }
.signup::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(70% 100% at 50% 0%, rgba(111, 224, 166, 0.06), transparent 60%);
}

/* Steps get a calm signal-blue wash; the "anatomy of a catch" reads like a lit
   monitor — pooled amber light + faint scanlines, radial-masked so it fades to
   nothing at the edges (no rectangle). Pure CSS: CSP-safe, no image assets. */
.steps { position: relative; isolation: isolate; }
.steps::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(55% 70% at 50% -8%, color-mix(in srgb, var(--nw-signal) 6%, transparent), transparent 60%);
}
.catch { position: relative; isolation: isolate; }
.catch::after {
  content: ""; position: absolute; inset: -2% 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(58% 60% at 16% 4%, color-mix(in srgb, var(--nw-amber) 7%, transparent), transparent 62%),
    repeating-linear-gradient(0deg, color-mix(in srgb, var(--nw-signal) 4%, transparent) 0 1px, transparent 1px 3px);
  -webkit-mask: radial-gradient(88% 82% at 50% 46%, #000 58%, transparent);
          mask: radial-gradient(88% 82% at 50% 46%, #000 58%, transparent);
}

/* Hero category line — plain-language "what it is" under the headline. */
.hero-cat { margin: -4px 0 14px; font-size: 1.02rem; font-weight: 600; line-height: 1.4;
  color: var(--nw-amber-soft); max-width: 42ch; }

/* Proof section: the founder guarantee is the lead (real commitment), then one
   honest reserved slot instead of empty testimonial cards. */
.founder-lead { max-width: 760px; margin-left: auto; margin-right: auto; }
.founder-lead .founder-quote { font-size: 1.12rem; }
.pilot-slot { max-width: 760px; margin: 16px auto 0; padding: 22px 24px; text-align: center;
  border: 1px dashed var(--nw-line-strong); border-radius: var(--nw-radius);
  background: color-mix(in srgb, var(--nw-amber) 4%, transparent); }
.pilot-slot-tag { display: inline-block; font-size: .68rem; letter-spacing: .14em;
  color: var(--nw-amber); margin-bottom: 8px; }
.pilot-slot-text { max-width: 52ch; margin: 0 auto 14px; color: var(--nw-text-dim);
  font-size: .95rem; line-height: 1.55; }

/* Real product proof — a screenshot of the actual command centre. */
.console-look { max-width: var(--container); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter); }
.console-sub { text-align: center; color: var(--nw-text-dim); max-width: 60ch; margin: -24px auto 40px;
  font-size: .96rem; line-height: 1.6; }
.console-shot { margin: 0; }
.console-shot picture { display: block; }
.console-shot img { display: block; width: 100%; height: auto; border-radius: var(--nw-radius);
  border: 1px solid var(--nw-line-strong);
  box-shadow: 0 30px 80px -44px rgba(0,0,0,.92), var(--nw-hairline); }
.console-cap { text-align: center; color: var(--nw-text-dim); font-size: .72rem; margin: 12px 0 0; }

/* ============================================================
   Conversion layer — who it's for, our promises, the competitor
   hedge (a control-room readout), field proof, and answers.
   ============================================================ */

/* Who this is for — named, so a visitor self-identifies. */
.hero-icp { color: var(--nw-text-dim); font-size: .92rem; line-height: 1.5;
  max-width: 44ch; margin: -10px 0 22px; }

/* Honest promises bar — guarantees, not fabricated numbers. */
.trust { max-width: var(--container); margin: clamp(20px,4vw,40px) auto 0; padding: 0 var(--gutter); }
.trust-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px clamp(14px,3vw,30px); padding: 16px 18px; margin: 0;
  background: var(--nw-surface); border: 1px solid var(--nw-line); border-radius: var(--nw-radius);
  font-size: .78rem; color: var(--nw-text-dim); }
.trust-list li { display: inline-flex; align-items: center; gap: 7px; }
.trust-ic { color: var(--nw-sage); font-weight: 700; }

/* --- The hedge: a control-room readout of Vigil vs the alternatives --- */
.hedge { max-width: var(--container); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter); }
.hedge-sub { text-align: center; color: var(--nw-text-dim); max-width: 62ch; margin: -24px auto 40px;
  font-size: .96rem; line-height: 1.6; }
.board { border: 1px solid var(--nw-line-strong); border-radius: var(--nw-radius); overflow: hidden;
  background: var(--nw-surface); box-shadow: var(--nw-hairline); }
.board-row { display: grid; grid-template-columns: 1.1fr 1.25fr 1.3fr; align-items: stretch; }
.board-row + .board-row { border-top: 1px solid var(--nw-line); }
.board-row > span { padding: 15px 18px; display: flex; align-items: center; font-size: .9rem; line-height: 1.4; }
.board-head { font-family: var(--nw-font-mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--nw-text-dim); background: var(--nw-ink-2); }
.board-q { font-weight: 600; color: var(--nw-text); }
.board-them { color: var(--nw-text-dim); }
/* Vigil column is "lit" — sodium-amber, like the armed lamp on a real panel. */
.board-us, .board-vigil-h { position: relative; color: var(--nw-amber);
  background: color-mix(in srgb, var(--nw-amber) 7%, transparent);
  box-shadow: inset 3px 0 0 var(--nw-amber); font-weight: 600; }
.board-vigil-h { color: var(--nw-amber); font-weight: 700; }

/* --- Anatomy of a catch: an illustrated, clearly-labelled walkthrough of the
   real detection flow (show, don't tell — honest reconstruction, not a customer) --- */
.catch { max-width: var(--container); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter); }
.catch-sub { text-align: center; color: var(--nw-text-dim); max-width: 60ch; margin: -24px auto 10px;
  font-size: .96rem; line-height: 1.6; }
.catch-label { display: block; text-align: center; font-family: var(--nw-font-mono); font-size: .68rem;
  letter-spacing: .08em; color: var(--nw-text-dim); opacity: .72; margin: 0 auto 40px; }
.case { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,4vw,48px); align-items: start; }
.case-evidence { display: grid; gap: 12px; }
.case-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.case-thumb { position: relative; aspect-ratio: 4/3; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--nw-line-strong); display: grid; place-items: center;
  background: radial-gradient(120% 90% at 50% 120%, #14243a, #0a1220 55%, #05070b); }
.case-thumb-box { width: 34%; height: 52%; border: 2px solid var(--nw-amber); border-radius: 3px;
  box-shadow: 0 0 14px rgba(255,168,40,.3); }
.case-face .case-thumb-box { width: 30%; height: 42%; border-radius: 50%; }
.case-plate .case-thumb-box { width: 54%; height: 24%; }
.case-thumb i { position: absolute; left: 7px; bottom: 5px; font-family: var(--nw-font-mono); font-style: normal;
  font-size: .56rem; letter-spacing: .1em; color: rgba(238,242,250,.85); text-shadow: 0 1px 3px rgba(0,0,0,.9); }

/* The decision surface — risk, why, and one tap. */
.case-panel { background: var(--nw-surface); border: 1px solid var(--nw-line-strong);
  border-radius: var(--nw-radius); padding: clamp(18px,3vw,26px); box-shadow: var(--nw-hairline);
  display: grid; gap: 18px; align-content: start; }
.case-risk { display: flex; align-items: center; gap: 16px; }
.risk-dial-wrap { position: relative; width: 76px; height: 76px; flex: none; }
.risk-dial { width: 76px; height: 76px; transform: rotate(-90deg); }
.risk-track { fill: none; stroke: var(--nw-line-strong); stroke-width: 7; }
.risk-arc { fill: none; stroke: var(--nw-amber); stroke-width: 7; stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(255,168,40,.5)); }
.risk-num { position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--nw-font-display); font-weight: 900; font-size: 1.5rem; color: var(--nw-amber); }
.case-risk-label { font-family: var(--nw-font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--nw-amber); margin: 0 0 3px; letter-spacing: .02em; }
.case-risk-sub { color: var(--nw-text-dim); font-size: .82rem; line-height: 1.45; margin: 0; }
.case-reasons { list-style: none; margin: 0; padding: 16px 0; display: grid; gap: 10px;
  border-top: 1px solid var(--nw-line); border-bottom: 1px solid var(--nw-line); }
.case-reasons li { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: baseline;
  font-size: .9rem; color: var(--nw-text); line-height: 1.4; }
.case-reasons b { font-family: var(--nw-font-mono); color: var(--nw-amber); font-size: .82rem; }
.case-action-h { font-family: var(--nw-font-mono); font-size: .64rem; letter-spacing: .12em;
  color: var(--nw-text-dim); margin: 0 0 6px; }
.case-action-p { margin: 0; font-size: .92rem; line-height: 1.5; color: var(--nw-text); }
.case-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.case-btn { text-align: center; padding: 12px; border-radius: 12px; font-weight: 700; font-size: .92rem; }
.case-btn.ok { color: var(--nw-sage); border: 1px solid color-mix(in srgb, var(--nw-sage) 40%, transparent);
  background: color-mix(in srgb, var(--nw-sage) 10%, transparent); }
.case-btn.esc { color: var(--nw-alarm); border: 1px solid color-mix(in srgb, var(--nw-alarm) 45%, transparent);
  background: color-mix(in srgb, var(--nw-alarm) 12%, transparent); }
.case-tl-eyebrow { margin-top: clamp(30px,5vw,48px); }

.catch-frame { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1000/638;
  border: 1px solid var(--nw-line-strong); box-shadow: 0 30px 70px rgba(0,0,0,.55), var(--nw-hairline); }
.catch-frame picture, .catch-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

.catch-timeline { list-style: none; margin: 18px auto 0; padding: 0; position: relative; max-width: 780px; }
.catch-timeline::before { content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--nw-amber), var(--nw-line)); opacity: .5; }
/* RTL: the grid auto-flips the dot column to the right, so the timeline spine
   must follow it — otherwise the line strands on the left, away from the dots. */
[dir="rtl"] .catch-timeline::before { left: auto; right: 15px; }
.catch-step { position: relative; display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 9px 0; }
.catch-step p { margin: 0; }
.cs-dot { width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; z-index: 1;
  background: var(--nw-surface-2); border: 1px solid var(--nw-line-strong); }
.cs-dot .ic-svg { width: 16px; height: 16px; color: var(--nw-amber); }
.cs-time { font-family: var(--nw-font-mono); font-size: .72rem; color: var(--nw-amber); margin-bottom: 2px; }
.cs-text { color: var(--nw-text); font-size: .96rem; line-height: 1.45; }
.catch-step:last-child .cs-dot { border-color: var(--nw-sage); }
.catch-step:last-child .cs-dot .ic-svg { color: var(--nw-sage); }

@media (max-width: 900px) { .case { grid-template-columns: 1fr; } }

/* --- Field proof: real quotes only, placeholders until pilots land --- */
.voices { max-width: var(--container); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter); }
.voices-sub { text-align: center; color: var(--nw-text-dim); max-width: 56ch; margin: -24px auto 40px;
  font-size: .96rem; line-height: 1.6; }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--nw-gap); }
.voice { margin: 0; padding: 22px; border-radius: var(--nw-radius); background: var(--nw-surface);
  border: 1px solid var(--nw-line); }
.voice blockquote { margin: 0 0 14px; font-size: 1rem; line-height: 1.55; }
.voice figcaption { color: var(--nw-text-dim); font-size: .74rem; }
/* Placeholder slots read as intentional "coming soon", not broken. */
.voice-open { border-style: dashed; border-color: var(--nw-line-strong); background: transparent; }
.voice-open blockquote { color: var(--nw-text-dim); font-style: italic; }

/* --- Pricing: pilot ribbon + risk-reversal --- */
.pilot-ribbon { display: flex; align-items: center; justify-content: center; gap: 9px;
  max-width: 560px; margin: -22px auto 26px; padding: 11px 18px; text-align: center;
  font-size: .9rem; border-radius: 999px; color: var(--nw-amber-soft);
  background: color-mix(in srgb, var(--nw-amber) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--nw-amber) 34%, transparent); }
.pilot-ribbon strong { color: var(--nw-amber); }
.pilot-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--nw-amber); flex: none;
  box-shadow: 0 0 0 0 rgba(255,168,40,.6); animation: pulse 2s ease-out infinite; }
.price-guarantee { margin: 14px 0 4px; font-size: .72rem; color: var(--nw-sage); }

/* --- FAQ --- */
.faq { max-width: var(--container-narrow); margin: var(--sec-gap) auto 0; padding: 0 var(--gutter); }
/* align-items:start so each card sizes to its OWN content — otherwise the grid
   stretches both cells in a row to equal height, and opening one <details> makes
   its row-neighbour's box inflate too (looked like "two expand at once"). */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--nw-gap); align-items: start; }
.faq-item { background: var(--nw-surface); border: 1px solid var(--nw-line);
  border-radius: var(--nw-radius); padding: 4px 18px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 15px 26px 15px 0; position: relative;
  font-weight: 600; font-size: .96rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 2px; top: 12px;
  font-size: 1.3rem; color: var(--nw-amber); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 16px; color: var(--nw-text-dim); font-size: .9rem; line-height: 1.6; }

@media (max-width: 820px) {
  .board-row { grid-template-columns: 1fr; }
  .board-row > span { padding: 12px 16px; }
  .board-row + .board-row { border-top: 3px solid var(--nw-line); }
  .board-head { display: none; }
  .board-q { font-size: 1rem; padding-bottom: 4px; }
  .board-them::before { content: "Others — "; color: var(--nw-text-dim); font-weight: 600; }
  .board-us { box-shadow: inset 0 3px 0 var(--nw-amber); }
  .board-us::before { content: "Vigil — "; font-weight: 700; }
  .voices-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
