/* Lonewolf marketing site v2
   Default CSS = final resting state of every element.
   js/site.js only *adds* motion (sets initial states with GSAP, then animates
   to what's authored here) — so the page is complete with zero JS. */

:root {
  --night: #0a0c11;
  --den: #10141b;
  --den-2: #141924;
  --line: #222936;
  --line-soft: #1a2029;
  --pelt: #e9ecf2;
  --ash: #9aa3b2;
  --dim: #667081;
  --eye: #f0a93b;
  --eye-soft: rgba(240, 169, 59, 0.14);
  --pass: #58c07d;
  --fail: #e0684b;
  --max-w: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  background: var(--night);
  color: var(--pelt);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--eye); color: var(--night); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--eye);
  outline-offset: 3px;
  border-radius: 2px;
}

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.mono { font-family: 'Geist Mono', ui-monospace, monospace; }
.spacer { flex: 1; }

.display {
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 112;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.05;
  text-wrap: balance;
}

.eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--eye);
  margin-bottom: 14px;
}
.eyebrow::before { content: '// '; color: var(--dim); }

.body { color: var(--ash); font-size: 16px; max-width: 46ch; }
.body + .body { margin-top: 14px; }
.body strong { color: var(--pelt); font-weight: 500; }

/* film grain — kills flat black, almost subliminal */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 90;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* moonrise glow — used exactly twice (hero, final) */
.moonrise {
  position: absolute;
  top: -420px; left: 50%;
  width: 1100px; height: 900px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center,
    rgba(240, 169, 59, 0.09) 0%,
    rgba(240, 169, 59, 0.03) 38%,
    transparent 68%);
  pointer-events: none;
}
.moonrise-low { top: auto; bottom: -500px; }

/* ---------------- wolf mark ---------------- */
.wolf .w-body { fill: var(--pelt); }
.wolf .w-facet { fill: #000; }
.wolf .fa { opacity: 0.18; }
.wolf .fb { opacity: 0.28; }
.wolf .fc { opacity: 0.38; }
.wolf .w-eye { fill: var(--eye); }
.wolf-nav { width: 22px; height: 22px; }
.wolf-hero { width: 148px; height: 148px; margin-bottom: 36px; filter: drop-shadow(0 0 34px rgba(240, 169, 59, 0.12)); }
.wolf-final { width: 84px; height: 84px; margin-bottom: 28px; }

/* ---------------- nav ---------------- */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav-wrap.scrolled {
  background: color-mix(in srgb, var(--night) 84%, transparent);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 32px; height: 64px; }
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Archivo', sans-serif;
  font-variation-settings: 'wdth' 118;
  font-weight: 700; font-size: 17px;
}
.nav-links { display: flex; gap: 26px; font-size: 14px; color: var(--ash); }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover { color: var(--pelt); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-sub {
  font-size: 9px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--dim); text-transform: none;
}
.nav-signin { font-size: 14px; color: var(--ash); transition: color 0.15s; }
.nav-signin:hover { color: var(--pelt); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Geist', sans-serif;
  font-size: 14.5px; font-weight: 500;
  padding: 11px 22px; border-radius: 9px;
  border: 1px solid var(--line);
  background: transparent; color: var(--pelt);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.btn:hover { border-color: var(--ash); transform: translateY(-1px); }
.btn-ghost { padding: 8px 16px; font-size: 14px; }
.btn-eye {
  background: var(--eye); color: var(--night); border-color: var(--eye);
  font-weight: 600;
}
.btn-eye:hover { background: #ffc35e; border-color: #ffc35e; }

/* ---------------- S1 hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; position: relative; }
.hero h1 { font-size: clamp(40px, 5.4vw, 72px); max-width: 17ch; margin-bottom: 26px; }
.hero .lede {
  color: var(--ash); font-size: 17.5px; max-width: 56ch; margin-bottom: 36px;
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 34px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
}
.scroll-cue span {
  position: absolute; top: 6px; left: 50%;
  width: 3px; height: 7px; margin-left: -1.5px;
  border-radius: 2px; background: var(--eye);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(11px); opacity: 0; }
}

/* split-text line masking */
.split .sline-mask { overflow: hidden; display: block; }

/* ---------------- generic sections ---------------- */
.section { position: relative; padding: 96px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 18px; }
.section-head .body { max-width: 60ch; }

.split-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 72px; align-items: center;
}
.split-grid.flip { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
.split-copy h2 { font-size: clamp(30px, 3.6vw, 44px); margin-bottom: 18px; }

/* ---------------- S2 problem ---------------- */
.problem { padding-top: 112px; }
.problem-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: 64px; align-items: center;
}
.problem h2 { font-size: clamp(30px, 3.8vw, 46px); margin-bottom: 28px; max-width: 15ch; }
.problem-lines p {
  color: var(--ash); font-size: 16.5px;
  padding: 14px 0; border-top: 1px solid var(--line-soft);
  max-width: 46ch;
}
.problem-lines p:last-child { border-bottom: 1px solid var(--line-soft); }

.waiting-card { display: flex; justify-content: center; }
.pr-mini {
  background: var(--den); border: 1px solid var(--line);
  border-radius: 12px; padding: 20px 22px;
  width: 100%; max-width: 340px;
  box-shadow: 0 24px 70px -30px rgba(0, 0, 0, 0.9);
}
.pr-mini-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.pr-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--pass); flex: none; }
.pr-mini-title { font-weight: 600; font-size: 15px; }
.pr-mini-diff { margin-left: auto; font-size: 12px; color: var(--dim); }
.pr-mini-meta { font-size: 12px; color: var(--dim); margin-bottom: 16px; }
.wait-badge {
  display: inline-block;
  font-size: 12.5px; color: var(--eye);
  background: var(--eye-soft);
  border: 1px solid rgba(240, 169, 59, 0.25);
  padding: 6px 12px; border-radius: 999px;
}

/* ---------------- S3 pinned review scene ---------------- */
.s-review { position: relative; }
.stage {
  position: relative;
  height: 100vh; min-height: 640px;
  overflow: hidden;
}
.stage-captions {
  position: absolute; bottom: 5%; left: 0; right: 0;
  text-align: center; z-index: 6;
  height: 3em;
}
.stage-captions .cap { bottom: 0; }
.cap {
  position: absolute; left: 50%; transform: translateX(-50%);
  width: max-content; max-width: 90vw;
  font-size: 14.5px; color: var(--ash);
}
.cap b { color: var(--pelt); }
/* final resting state without JS: last caption visible */
.cap-0, .cap-1 { opacity: 0; }
.cap-2 { opacity: 1; }

.threads { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; }
.threads line {
  stroke: var(--eye); stroke-width: 1;
  opacity: 0.4;
}

.files { position: absolute; inset: 0; z-index: 1; opacity: 0.25; }
.file-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 11.5px; color: var(--ash);
  background: var(--den); border: 1px solid var(--line-soft);
  padding: 6px 11px; border-radius: 7px;
  white-space: nowrap;
  contain: layout paint;
}
.file-chip.lit { border-color: rgba(240, 169, 59, 0.4); color: var(--pelt); }

.pr-card {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 330px;
  background: var(--den); border: 1px solid var(--line);
  border-radius: 14px; padding: 22px 24px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.95);
}
.pr-top { display: flex; align-items: center; gap: 10px; }
.pr-title { font-weight: 600; font-size: 16px; }
.pr-diff { margin-left: auto; font-size: 12px; color: var(--dim); }
.pr-sub { font-size: 12px; color: var(--dim); margin: 4px 0 14px; }
.pr-read { font-size: 12.5px; color: var(--ash); }
.pr-read b { color: var(--eye); font-weight: 500; }

.findings-layer { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.find-card {
  position: absolute;
  width: 300px;
  background: var(--den-2); border: 1px solid var(--line);
  border-radius: 12px; padding: 16px 18px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.9);
  contain: layout paint;
}
.find-card p { font-size: 13px; color: var(--ash); }
.find-a { left: calc(50% - 420px); top: 30%; }
.find-b { left: calc(50% + 130px); top: 24%; }
.find-c { left: calc(50% + 160px); top: 62%; }
.find-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11.5px; color: var(--dim); margin-bottom: 8px;
}
.sev {
  color: var(--fail); font-weight: 500;
  border: 1px solid rgba(224, 104, 75, 0.35);
  padding: 1px 8px; border-radius: 999px; font-size: 10.5px;
}
.sev-spec { color: var(--eye); border-color: rgba(240, 169, 59, 0.35); }
.sev-fix { color: var(--pass); border-color: rgba(88, 192, 125, 0.35); }

/* ---------------- S4 findings / autofix ---------------- */
.fix-demo { display: flex; justify-content: center; }
.finding-big {
  width: 100%; max-width: 480px;
  background: var(--den); border: 1px solid var(--line);
  border-radius: 14px; padding: 24px 26px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.9);
}
.finding-big .find-head { font-size: 12.5px; margin-bottom: 12px; }
.find-text { font-size: 14px; color: var(--ash); margin-bottom: 16px; }
.find-text strong { color: var(--pelt); font-weight: 600; }
.diff {
  display: block; font-size: 12.5px;
  background: var(--night); border: 1px solid var(--line-soft);
  border-radius: 9px; padding: 12px 14px; line-height: 1.8;
  margin-bottom: 18px;
  overflow-x: auto;
}
.diff-line { display: block; white-space: pre; }
.diff-line.del { color: var(--fail); }
.diff-line.add { color: var(--pass); }
/* final state: fix applied (markup ships with .fixed; JS replays it on scroll) */
.diff-line { transition: opacity 0.5s, background 0.5s; }
.fix-demo.fixed .diff-line.del { text-decoration: line-through; opacity: 0.45; }
.fix-demo.fixed .diff-line.add { background: rgba(88, 192, 125, 0.08); }
.fix-done { transition: opacity 0.4s; }
.fix-demo:not(.fixed) .fix-done { opacity: 0; }
.fix-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-fix { padding: 9px 18px; font-size: 13.5px; }
.fix-done { font-size: 12.5px; color: var(--pass); }

/* ---------------- S5 scope ---------------- */
.scope-board {
  background: var(--den); border: 1px solid var(--line);
  border-radius: 14px; padding: 26px 28px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.9);
}
.scope-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; gap: 16px;
}
.scope-title { font-weight: 600; font-size: 17px; }
.scope-sub { font-size: 12px; color: var(--dim); margin-top: 2px; }
.ring-wrap { position: relative; width: 72px; height: 72px; flex: none; }
.ring { width: 72px; height: 72px; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: var(--line-soft); stroke-width: 6; }
.ring-fg {
  fill: none; stroke: var(--eye); stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 188.5;
  stroke-dashoffset: 41.9; /* 7/9 */
}
.ring-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--dim);
}
.ring-num b { color: var(--pelt); font-weight: 500; font-size: 16px; }
.req-list { list-style: none; }
.req {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--ash);
  padding: 9px 2px;
  border-top: 1px solid var(--line-soft);
}
.req .tick {
  width: 18px; height: 18px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; border-radius: 50%;
}
.req.done .tick { color: var(--pass); background: rgba(88, 192, 125, 0.1); }
.req.todo { color: var(--pelt); }
.req.todo .tick { color: var(--eye); background: var(--eye-soft); }
.req em {
  font-style: normal; font-size: 11px; color: var(--eye);
  margin-left: auto;
}

/* ---------------- S6 tests ---------------- */
.tests-stage {
  display: grid;
  grid-template-columns: minmax(0, 7fr) auto minmax(0, 3fr);
  gap: 28px; align-items: center;
}
.browser-mock {
  position: relative;
  background: var(--den); border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-bottom: 1px solid var(--line-soft);
}
.dots { display: flex; gap: 6px; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.url { font-size: 11.5px; color: var(--dim); }
.browser-body { position: relative; padding: 22px 24px 18px; }
.bm-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.bm-title { font-weight: 600; font-size: 15px; }
.bm-btn {
  font-family: 'Geist', sans-serif; font-size: 12.5px; font-weight: 500;
  color: var(--night); background: var(--pelt);
  border: none; border-radius: 7px; padding: 7px 14px;
  pointer-events: none;
}
.bm-btn.pressed { background: var(--eye); }
.bm-table { display: grid; gap: 10px; margin-bottom: 16px; }
.bm-line { height: 12px; border-radius: 4px; background: var(--den-2); }
.bm-line.short { width: 60%; }
.bm-toast {
  display: inline-block;
  font-size: 11.5px; color: var(--pass);
  border: 1px solid rgba(88, 192, 125, 0.3);
  background: rgba(88, 192, 125, 0.07);
  padding: 5px 11px; border-radius: 999px;
}
.cursor-dot {
  position: absolute; left: 40px; top: 60px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--eye);
  box-shadow: 0 0 0 4px rgba(240, 169, 59, 0.2);
  opacity: 0; /* only shown while the demo loop runs */
  z-index: 3;
  pointer-events: none;
}
.test-steps {
  list-style: none;
  border-top: 1px solid var(--line-soft);
  padding: 12px 24px 16px;
  font-size: 12px; color: var(--ash);
  display: grid; gap: 6px;
}
.test-steps li::before { content: '✓ '; color: var(--pass); }
.cost-ticker { display: grid; gap: 10px; justify-items: center; text-align: center; }
.cost { font-size: 12.5px; color: var(--dim); }
.cost b { display: block; color: var(--pelt); font-size: 16px; font-weight: 500; margin-top: 2px; }
.cost b.zero { color: var(--pass); font-size: 34px; font-weight: 600; }
.cost-arrow { color: var(--dim); transform: rotate(90deg); font-size: 18px; }
.phone-mock {
  position: relative;
  width: 150px; margin: 0 auto;
  background: var(--den); border: 1px solid var(--line);
  border-radius: 22px; padding: 26px 14px 18px;
  box-shadow: 0 30px 90px -30px rgba(0, 0, 0, 0.9);
}
.phone-notch {
  position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 44px; height: 5px; border-radius: 3px; background: var(--line);
}
.phone-body { display: grid; gap: 9px; }
.phone-check {
  font-size: 10.5px; color: var(--pass);
  border: 1px solid rgba(88, 192, 125, 0.3);
  border-radius: 999px; padding: 4px 8px;
  text-align: center; margin-top: 6px;
}
.phone-label {
  text-align: center; margin-top: 12px;
  font-size: 10.5px; color: var(--dim);
}

/* suite dashboard mockup — second row of the testing section */
.suite-board {
  margin-top: 16px;
  background: var(--den); border: 1px solid var(--line-soft);
  border-radius: 12px; padding: 26px 28px;
}
.suite-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.suite-title { font-weight: 600; font-size: 16px; }
.suite-title .mono { color: var(--dim); font-size: 12px; }
.suite-sub { font-size: 12px; color: var(--dim); margin-top: 2px; }
.suite-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.suite-chips span {
  font-size: 11px; color: var(--ash);
  border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 4px 11px;
}
.run-strip {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 0; border-top: 1px solid var(--line-soft);
}
.run-dot {
  width: 11px; height: 11px; border-radius: 50%;
  background: rgba(88, 192, 125, 0.75); flex: none;
}
.run-dot.quar { background: var(--eye); }
.run-label { font-size: 11.5px; color: var(--dim); margin-left: 8px; }
.run-label b { color: var(--eye); font-weight: 500; }
.suite-rows { list-style: none; }
.suite-rows li {
  font-size: 13.5px; color: var(--ash);
  padding: 10px 0; border-top: 1px solid var(--line-soft);
}
.suite-rows b { color: var(--pelt); font-weight: 600; }
.suite-rows .artifacts { font-size: 11.5px; color: var(--dim); }

/* ---------------- S8 how ---------------- */
.how { padding: 88px 0; }
.how-line-wrap { height: 1px; background: var(--line-soft); margin-bottom: -1px; }
.how-line {
  height: 1px; background: var(--eye);
  transform-origin: left center;
  opacity: 0.6;
}
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-step { position: relative; padding-top: 26px; }
.how-dot {
  position: absolute; top: -4px; left: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--eye);
}
.how-step h3 { font-size: 15.5px; font-weight: 600; margin-bottom: 6px; }
.how-step p { font-size: 13.5px; color: var(--ash); }

/* ---------------- S9 pricing ---------------- */
.pricing .section-head { margin-bottom: 40px; }
.price-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; align-items: stretch;
  max-width: 780px;
}
.price-was {
  font-size: 22px; color: var(--dim);
  text-decoration: line-through; text-decoration-thickness: 2px;
  margin-right: 10px; font-weight: 600;
}
.price-list li.fine { color: var(--dim); font-size: 12px; }
.price-list li.fine::before { content: '·'; color: var(--dim); }
.price-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--den); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 30px 28px;
  overflow: hidden;
}
.price-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 12px; }
.price { font-size: 34px; margin-bottom: 6px; }
.price .per { font-size: 14px; color: var(--dim); font-weight: 500; margin-left: 4px; }
.price-pitch { font-size: 14px; color: var(--ash); margin-bottom: 20px; }
.price-list {
  list-style: none; font-size: 13.5px; color: var(--ash);
  margin-bottom: 28px; flex: 1;
}
.price-list li {
  padding: 8px 0 8px 24px; position: relative;
  border-top: 1px solid var(--line-soft);
}
.price-list li::before {
  content: '✓'; position: absolute; left: 2px;
  color: var(--pass); font-family: 'Geist Mono', monospace; font-size: 12px;
}
.price-list em {
  font-style: normal; font-size: 10.5px; color: var(--eye);
  border: 1px solid rgba(240, 169, 59, 0.3);
  border-radius: 999px; padding: 1px 7px; margin-left: 6px;
  white-space: nowrap;
}
.price-cta { justify-content: center; }
.price-card.team {
  border-color: rgba(240, 169, 59, 0.45);
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(240, 169, 59, 0.05), var(--den) 40%);
}
.team-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 10.5px; color: var(--eye);
  border: 1px solid rgba(240, 169, 59, 0.35);
  border-radius: 999px; padding: 3px 10px;
}
.price-card.team::after { /* one-shot sheen, driven by JS adding .sheen */
  content: ''; position: absolute; top: 0; bottom: 0; left: -70%;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(240, 169, 59, 0.08), transparent);
  transform: skewX(-16deg);
  pointer-events: none;
}
.price-card.team.sheen::after { animation: sheen 1.1s ease-out 1; }
@keyframes sheen { to { left: 130%; } }

/* ---------------- S10 final ---------------- */
.final {
  position: relative;
  text-align: center;
  padding: 120px 0 100px;
  overflow: hidden;
}
.final h2 { font-size: clamp(32px, 4.4vw, 54px); margin-bottom: 14px; }
.final-sub { color: var(--ash); font-size: 15.5px; margin-bottom: 30px; }

/* waitlist form */
.wl-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  max-width: 640px; margin: 0 auto;
}
.wl-input {
  font-family: 'Geist', sans-serif; font-size: 14.5px;
  color: var(--pelt); background: var(--den);
  border: 1px solid var(--line); border-radius: 9px;
  padding: 11px 16px; min-width: 220px;
  outline: none;
}
.wl-input:focus-visible { border-color: var(--eye); }
.wl-input::placeholder { color: var(--dim); }
.wl-company { min-width: 180px; }
.wl-msg { min-height: 1.5em; margin-top: 14px; font-size: 13px; color: var(--ash); }
.wl-msg.ok { color: var(--pass); }
.wl-msg.err { color: var(--fail); }

/* ---------------- footer ---------------- */
footer {
  border-top: 1px solid var(--line-soft);
  padding: 32px 0;
  font-size: 13px; color: var(--dim);
}
.foot { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.foot a:hover { color: var(--pelt); }
.foot-addr {
  display: flex; gap: 12px 32px; flex-wrap: wrap;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-size: 11.5px; color: var(--dim);
}
.foot-addr address { font-style: normal; }
.foot-co { color: var(--ash); }

/* ---------------- responsive ---------------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .problem { padding-top: 80px; }
  .problem-grid, .split-grid, .split-grid.flip { grid-template-columns: 1fr; gap: 44px; }
  .split-grid { align-items: start; }

  /* pinned scene → stacked story */
  .stage { height: auto; min-height: 0; overflow: visible; padding: 24px 24px 8px; }
  .stage-captions { position: static; height: auto; text-align: left; margin-bottom: 18px; }
  .cap { position: static; transform: none; max-width: none; width: auto; }
  .cap-0, .cap-1 { display: none; }
  .threads, .files { display: none; }
  .pr-card { position: static; transform: none; width: 100%; max-width: 420px; margin: 0 auto 16px; }
  .findings-layer { position: static; pointer-events: auto; display: grid; gap: 12px; max-width: 420px; margin: 0 auto; }
  .find-card { position: static; width: auto; }

  .tests-stage { grid-template-columns: 1fr; }
  .cost-arrow { transform: none; }
  .cost-ticker { grid-auto-flow: column; align-items: center; }
  .how-grid { grid-template-columns: 1fr; gap: 28px; }
  .how-line-wrap { display: none; }
  .how-step { padding: 0 0 0 26px; }
  .how-dot { top: 7px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.team { transform: none; }
}
@media (max-width: 620px) {
  .hero h1 { font-size: clamp(32px, 9vw, 40px); }
  .wolf-hero { width: 108px; height: 108px; }
  .final { padding: 80px 0 72px; }
}
