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

:root {
  --bg: #050706;
  --bg2: #0a0f0c;
  --panel: rgba(12, 18, 15, .78);
  --line: rgba(141, 255, 176, .13);
  --line2: rgba(141, 255, 176, .3);
  --text: #dfe8e2;
  --mute: #87978d;
  --nv: #8dffb0;
  --nv2: #3fbf6e;
  --red: #ff3b3b;
  --amber: #ffb23e;
  --blood: #a3261d;
  --f-head: 'Unbounded', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-body: 'Manrope', system-ui, sans-serif;
  --pad: clamp(16px, 4vw, 48px);
}

html { scroll-behavior: smooth; background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 89;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,.55) 100%);
}
::selection { background: var(--nv); color: #000; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.red { color: var(--red); }

/* ---------- overlays ---------- */
.noise {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 90;
  opacity: .06;
  mix-blend-mode: screen;
}
.scanlines {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 91;
  background: repeating-linear-gradient(to bottom, transparent 0 2px, rgba(0,0,0,.16) 2px 3px);
}

/* ---------- boot ---------- */
.boot {
  position: fixed; inset: 0; z-index: 200;
  background: #000;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); color: var(--nv);
  transition: opacity .6s, visibility .6s;
  cursor: pointer;
}
.boot.done { opacity: 0; visibility: hidden; }
.boot pre {
  font-family: inherit; font-size: 13px; line-height: 1.9;
  white-space: pre-wrap; width: min(520px, 100%); padding: 24px;
  text-shadow: 0 0 8px rgba(141,255,176,.6);
}

/* ---------- topbar ---------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; gap: 28px;
  padding: 16px var(--pad);
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.topbar.scrolled {
  background: rgba(5,7,6,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--line);
  padding-block: 10px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 30px; height: 30px; fill: none; stroke: var(--nv); stroke-width: 1.6; }
.logo svg circle { fill: var(--red); stroke: none; }
.logo b { font-family: var(--f-head); font-weight: 900; font-size: 20px; letter-spacing: .08em; }
.logo small {
  font-family: var(--f-mono); font-size: 9.5px; color: var(--mute);
  text-transform: uppercase; letter-spacing: .14em; line-height: 1.35; max-width: 120px;
}
#nav {
  margin-left: auto; display: flex; align-items: center; gap: 22px;
  font-family: var(--f-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .1em;
}
#nav a { color: var(--mute); transition: color .2s; position: relative; }
#nav a:hover, #nav a.active { color: var(--nv); }
#nav a.active::before { content: "▸"; position: absolute; left: -12px; }
#nav .nav-cta { color: var(--bg); background: var(--nv); padding: 7px 14px; }
#nav .nav-cta:hover { color: var(--bg); background: #fff; }
#nav .nav-cta.active::before { content: none; }
.rec {
  font-family: var(--f-mono); font-size: 12px;
  display: flex; align-items: center; gap: 8px;
  font-variant-numeric: tabular-nums;
}
.rec i, .live::before {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 10px var(--red);
  animation: blink 1.2s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.burger { display: none; width: 36px; height: 36px; position: relative; }
.burger span { position: absolute; left: 7px; right: 7px; height: 2px; background: var(--nv); transition: transform .3s; }
.burger span:first-child { top: 13px; }
.burger span:last-child { top: 21px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.phone { font-family: var(--f-mono); font-size: 13px; font-weight: 700; color: var(--nv); white-space: nowrap; letter-spacing: .04em; }
.phone:hover { color: #fff; }
#nav .nav-tel { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-mono); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 18px 28px;
  position: relative; overflow: hidden;
  transition: color .25s, border-color .25s, background .25s, transform .2s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--nv); color: #031008; box-shadow: 0 0 0 rgba(141,255,176,0); }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: #fff; transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
}
.btn-primary span { position: relative; }
.btn-primary:hover::before { transform: none; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(141,255,176,.35); }
.btn-ghost { border: 1px solid var(--line2); color: var(--text); }
.btn-ghost:hover { border-color: var(--nv); color: var(--nv); }
.btn-sm { padding: 12px 18px; font-size: 11.5px; }
.btn-full { width: 100%; }

/* ---------- hero ---------- */
.hero {
  --x: 50%; --y: 45%; --r: 240px;
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 130px var(--pad) 48px;
  overflow: hidden;
  isolation: isolate;
}
.hero-room { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse at 50% 55%, #16241c, #070b09 70%); }
.hero-room svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.room-lines { fill: none; stroke: var(--nv); stroke-width: 1.4; opacity: .5; }
.doorway { fill: #010201; }
.figure { fill: #000; stroke: rgba(141,255,176,.35); stroke-width: 1.2; }
.scrawl {
  position: absolute;
  font-family: 'Caveat', cursive; font-weight: 700;
  color: var(--blood);
  text-shadow: 0 0 1px #5a0f0a;
  opacity: .9;
  white-space: nowrap;
}
.s1 { left: 22%; top: 60%; font-size: clamp(34px, 6vw, 92px); transform: rotate(-7deg); }
.s2 { right: 10%; top: 24%; font-size: clamp(28px, 4vw, 60px); transform: rotate(5deg); }
.s3 { left: 36%; top: 26%; font-size: clamp(22px, 2.6vw, 40px); transform: rotate(-2deg); }
.debunk {
  position: absolute;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .06em;
  color: var(--nv); background: rgba(0,0,0,.6); padding: 4px 8px;
  border-left: 2px solid var(--nv);
}
.d1 { left: 55%; top: 50%; }
.d2 { left: 22%; top: 76%; }
.hero-dark {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(circle var(--r) at var(--x) var(--y), rgba(255,244,210,.07), rgba(0,0,0,0) 70%),
    radial-gradient(circle var(--r) at var(--x) var(--y), rgba(0,0,0,0) 0%, rgba(2,4,3,.55) 55%, rgba(2,4,3,.975) 100%);
}
.hud { position: absolute; inset: 88px var(--pad) 24px; z-index: 2; pointer-events: none; font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; color: rgba(223,232,226,.7); }
.hud .c { position: absolute; width: 26px; height: 26px; border: 0 solid var(--nv); opacity: .8; }
.hud .tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hud .tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hud .bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hud .br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }
.hud-top, .hud-bot { position: absolute; left: 40px; right: 40px; display: flex; justify-content: space-between; gap: 16px; }
.hud-top { top: 6px; }
.hud-bot { bottom: 6px; font-variant-numeric: tabular-nums; }

.hero-content { position: relative; z-index: 3; max-width: 1240px; }
.kicker {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--nv); margin-bottom: 22px;
  font-weight: 500; line-height: 1.4; text-shadow: none;
  display: flex; align-items: center; gap: 12px;
}
.kicker::before { content: ""; width: 36px; height: 1px; background: var(--nv); }
h1 {
  hyphens: manual;
  font-family: var(--f-head); font-weight: 900;
  font-size: clamp(26px, 4.6vw, 80px);
  line-height: 1; letter-spacing: -.02em; text-transform: uppercase;
  text-shadow: 0 0 40px rgba(0,0,0,.8);
}
.glitch { position: relative; display: block; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; inset: 0;
  white-space: pre-line;
  pointer-events: none;
}
.glitch::before { color: var(--nv); mix-blend-mode: screen; animation: glitchA 5s infinite steps(1); clip-path: inset(0 0 100% 0); }
.glitch::after { color: var(--red); mix-blend-mode: screen; animation: glitchB 5s infinite steps(1); clip-path: inset(0 0 100% 0); }
@keyframes glitchA {
  0%, 88%, 100% { clip-path: inset(0 0 100% 0); transform: none; }
  89% { clip-path: inset(10% 0 70% 0); transform: translate(-6px, 0); }
  91% { clip-path: inset(55% 0 20% 0); transform: translate(8px, 0); }
  93% { clip-path: inset(30% 0 50% 0); transform: translate(-3px, 0); }
  95% { clip-path: inset(80% 0 2% 0); transform: translate(5px, 0); }
}
@keyframes glitchB {
  0%, 89%, 100% { clip-path: inset(0 0 100% 0); transform: none; }
  90% { clip-path: inset(62% 0 12% 0); transform: translate(7px, 0); }
  92% { clip-path: inset(5% 0 80% 0); transform: translate(-8px, 0); }
  94% { clip-path: inset(40% 0 35% 0); transform: translate(4px, 0); }
}
.lead {
  margin-top: 28px; max-width: 620px;
  font-size: clamp(16px, 1.5vw, 20px); color: #c4d1c8;
  text-shadow: 0 0 20px #000;
}
.lead b { color: var(--text); }
.cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-stats {
  position: relative; z-index: 3;
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(48px, 8vh, 96px);
  border-top: 1px solid var(--line2);
  max-width: 1100px;
}
.hero-stats li { padding: 18px 20px 0 0; }
.hero-stats b { display: block; font-family: var(--f-head); font-weight: 700; font-size: clamp(20px, 2.4vw, 32px); color: var(--nv); }
.hero-stats span { font-family: var(--f-mono); font-size: 11px; color: var(--mute); text-transform: uppercase; letter-spacing: .1em; }
.hero-hint {
  position: absolute; z-index: 3; right: calc(var(--pad) + 40px); bottom: 64px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--mute); text-transform: uppercase;
  animation: hint 3s ease-in-out infinite;
}
@keyframes hint { 50% { opacity: .35; } }

/* ---------- ticker ---------- */
.ticker {
  border-block: 1px solid var(--line2);
  background: var(--nv); color: #041009;
  overflow: hidden; white-space: nowrap;
  transform: rotate(-1.2deg) scale(1.02);
  margin: 20px 0;
  position: relative; z-index: 4;
}
.ticker-track { display: inline-flex; animation: ticker 40s linear infinite; }
.ticker span {
  font-family: var(--f-head); font-weight: 700; font-size: clamp(16px, 2vw, 24px);
  text-transform: uppercase; padding: 14px 0;
}
.ticker span::after { content: "✕"; margin: 0 28px; font-size: .7em; opacity: .6; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(80px, 12vw, 160px) var(--pad); max-width: 1320px; margin: 0 auto; }
.sec-head { display: grid; grid-template-columns: 1fr 1fr; column-gap: 48px; align-items: end; margin-bottom: clamp(40px, 6vw, 72px); }
.sec-head .sec-num { grid-column: 1 / -1; }
.sec-num {
  display: inline-block;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .2em; color: var(--nv);
  margin-bottom: 18px;
}
h2 {
  font-family: var(--f-head); font-weight: 700;
  font-size: clamp(28px, 4.8vw, 64px);
  line-height: 1.02; letter-spacing: -.015em; text-transform: uppercase;
}
.sec-lead { color: var(--mute); max-width: 560px; font-size: clamp(15px, 1.3vw, 17.5px); }
.sec-head .sec-lead { justify-self: end; }
h3 { font-family: var(--f-head); font-weight: 500; font-size: 17px; line-height: 1.25; }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  position: relative;
}
.panel-head {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; color: var(--mute);
  padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.live { display: inline-flex; align-items: center; gap: 7px; color: var(--red); }
.live::before { content: ""; }
.panel-status { font-family: var(--f-mono); font-size: 12.5px; color: var(--mute); padding: 14px 18px; border-top: 1px solid var(--line); line-height: 1.55; }

/* ---------- symptoms ---------- */
.sym-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sym { perspective: 1200px; height: 250px; text-align: left; }
.sym:nth-child(3n+2) { transition-delay: .08s; }
.sym:nth-child(3n) { transition-delay: .16s; }
.sym-in { position: relative; width: 100%; height: 100%; transition: transform .7s cubic-bezier(.3,.8,.2,1); transform-style: preserve-3d; }
.sym.on .sym-in { transform: rotateY(180deg); }
.sym-front, .sym-back {
  position: absolute; inset: 0;
  backface-visibility: hidden; -webkit-backface-visibility: hidden;
  padding: 24px;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  background: var(--panel);
}
.sym-front { transition: border-color .3s, background .3s; }
.sym:hover .sym-front { border-color: var(--line2); background: rgba(20, 32, 25, .85); }
.sym-front svg { width: 40px; height: 40px; fill: none; stroke: var(--nv); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin: 22px 0 auto; }
.sym-front h3 { font-size: 19px; margin-top: 16px; }
.sym-code { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--mute); }
.sym-tap { font-family: var(--f-mono); font-size: 11px; color: var(--mute); margin-top: 10px; }
.sym-back { transform: rotateY(180deg); border-color: var(--nv); background: linear-gradient(160deg, rgba(141,255,176,.12), rgba(12,18,15,.95) 60%); }
.sym-back .sym-code { color: var(--nv); }
.sym-back p { font-size: 16px; margin: 18px 0 auto; }
.sym-tool { font-family: var(--f-mono); font-size: 11.5px; color: var(--nv); border-top: 1px dashed var(--line2); padding-top: 12px; }
.sym-verdict {
  margin-top: 24px;
  display: grid; grid-template-columns: 260px 1fr auto; gap: 28px; align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(141,255,176,.03);
}
.sym-meter span { font-family: var(--f-mono); font-size: 12px; color: var(--mute); letter-spacing: .1em; }
.sym-meter b { color: var(--nv); }
.sym-bar { height: 6px; background: rgba(141,255,176,.1); margin-top: 10px; overflow: hidden; }
.sym-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--nv), var(--amber), var(--red)); background-size: 260px 100%; transition: width .5s cubic-bezier(.3,.8,.2,1); }
#symVerdict { font-size: 15.5px; }

/* ---------- equipment ---------- */
.eq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.thermal { grid-column: 1 / -1; }

.emf-readout { display: flex; align-items: center; justify-content: space-between; padding: 22px 18px 12px; }
.emf-leds { display: flex; gap: 8px; }
.emf-led {
  width: 28px; height: 44px;
  border-radius: 4px;
  background: #16201a;
  border: 1px solid rgba(255,255,255,.06);
  transition: background .08s, box-shadow .08s;
}
.emf-led:nth-child(1).on { background: #4dff88; box-shadow: 0 0 18px #4dff88; }
.emf-led:nth-child(2).on { background: #b6ff4d; box-shadow: 0 0 18px #b6ff4d; }
.emf-led:nth-child(3).on { background: #ffe14d; box-shadow: 0 0 18px #ffe14d; }
.emf-led:nth-child(4).on { background: #ff9a3d; box-shadow: 0 0 18px #ff9a3d; }
.emf-led:nth-child(5).on { background: #ff3b3b; box-shadow: 0 0 22px #ff3b3b; }
.emf-num { font-family: var(--f-mono); text-align: right; }
.emf-num b { font-size: 44px; font-weight: 700; font-variant-numeric: tabular-nums; }
.emf-num small { color: var(--mute); margin-left: 6px; }
.emf-wall {
  position: relative; margin: 0 18px 18px; height: 190px;
  background:
    repeating-linear-gradient(90deg, rgba(141,255,176,.035) 0 22px, transparent 22px 44px),
    linear-gradient(#111a15, #0b110e);
  border: 1px dashed var(--line2);
  cursor: none;
  touch-action: none;
  overflow: hidden;
}
.emf-wall svg { position: absolute; inset: 0; width: 100%; height: 100%; }
#emfWire { fill: none; stroke: var(--amber); stroke-width: 3; vector-effect: non-scaling-stroke; opacity: 0; filter: drop-shadow(0 0 6px var(--amber)); transition: opacity .2s; stroke-dasharray: 8 6; }
.emf-socket { position: absolute; left: calc(8% - 12px); top: calc(78% - 12px); width: 24px; height: 24px; border: 1px solid var(--line2); border-radius: 4px; }
.emf-socket::before, .emf-socket::after { content: ""; position: absolute; top: 9px; width: 3px; height: 5px; background: var(--line2); }
.emf-socket::before { left: 6px; }
.emf-socket::after { right: 6px; }
.emf-probe {
  position: absolute; width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border: 2px solid var(--nv); border-radius: 50%;
  pointer-events: none; opacity: 0; transition: opacity .2s;
  box-shadow: 0 0 20px rgba(141,255,176,.4), inset 0 0 10px rgba(141,255,176,.3);
}
.emf-probe::after { content: ""; position: absolute; left: 50%; top: 50%; width: 4px; height: 4px; margin: -2px; background: var(--nv); border-radius: 50%; }
.emf-wall.active .emf-probe { opacity: 1; }
.emf-hint { position: absolute; right: 12px; bottom: 10px; font-family: var(--f-mono); font-size: 11px; color: var(--mute); letter-spacing: .08em; }
.emf-wall.active .emf-hint { opacity: 0; }
#emfStatus.warn { color: var(--amber); }
#emfStatus.alert { color: var(--red); }

.dose-screen {
  margin: 22px 18px 0; padding: 22px 20px;
  background: #0d1a0f;
  border: 1px solid rgba(141,255,176,.2);
  box-shadow: inset 0 0 40px rgba(0,0,0,.6);
  font-family: var(--f-mono); color: var(--nv);
  display: flex; align-items: baseline; gap: 10px;
  position: relative;
  text-shadow: 0 0 12px rgba(141,255,176,.6);
}
.dose-screen b { font-size: 52px; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.dose-screen small { color: var(--nv2); }
.dose-dot { position: absolute; right: 16px; top: 16px; width: 10px; height: 10px; border-radius: 50%; background: #1d3524; }
.dose-dot.hit { background: var(--nv); box-shadow: 0 0 14px var(--nv); }
.dose-scale { display: flex; justify-content: space-between; font-family: var(--f-mono); font-size: 10.5px; color: var(--mute); margin: 16px 18px 6px; }
.dose-bar { margin: 0 18px; height: 8px; background: linear-gradient(90deg, rgba(77,255,136,.18) 0 25%, rgba(255,225,77,.18) 25% 50%, rgba(255,59,59,.18) 50%); position: relative; }
.dose-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--nv); box-shadow: 0 0 10px var(--nv); transition: width .3s; }
.dose-ctrl { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 18px; }
.toggle { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-mono); font-size: 11.5px; color: var(--mute); cursor: pointer; }
.toggle input { position: absolute; opacity: 0; }
.toggle span { width: 38px; height: 20px; border: 1px solid var(--line2); position: relative; transition: border-color .2s; }
.toggle span::after { content: ""; position: absolute; left: 3px; top: 3px; width: 12px; height: 12px; background: var(--mute); transition: transform .2s, background .2s; }
.toggle input:checked + span { border-color: var(--nv); }
.toggle input:checked + span::after { transform: translateX(18px); background: var(--nv); }
.toggle input:focus-visible + span { outline: 2px solid var(--nv); outline-offset: 2px; }
#doseRes.ok { color: var(--nv); }

.thermal-legend { display: inline-flex; align-items: center; gap: 10px; }
.thermal-legend i { width: 90px; height: 8px; background: linear-gradient(90deg, #07001a, #2d0a70, #8f1a8a, #e2412b, #ffa51f, #fff6cf); }
.thermal-wrap { position: relative; aspect-ratio: 240 / 140; cursor: crosshair; touch-action: pan-y; user-select: none; overflow: hidden; }
#thermal { position: absolute; inset: 0; width: 100%; height: 100%; image-rendering: auto; }
.thermal-split { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,.7); pointer-events: none; }
.thermal-split span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: #000;
  display: grid; place-items: center; font-size: 18px;
}
.th-tag { position: absolute; top: 14px; font-family: var(--f-mono); font-size: 11px; letter-spacing: .16em; background: rgba(0,0,0,.6); padding: 5px 9px; pointer-events: none; }
.th-left { left: 14px; color: var(--nv); }
.th-right { right: 14px; color: #ffcf6b; }
.th-label {
  position: absolute; transform: translate(-50%, calc(-100% - 14px));
  font-family: var(--f-mono); font-size: 11px; white-space: nowrap;
  background: rgba(0,0,0,.72); color: #fff; padding: 4px 8px;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none; transition: opacity .25s;
}
.th-label::after { content: ""; position: absolute; left: 50%; top: 100%; width: 1px; height: 12px; background: rgba(255,255,255,.6); }
.th-label.hide { opacity: 0; }
.th-read {
  position: absolute; pointer-events: none;
  font-family: var(--f-mono); font-size: 12px; font-weight: 700;
  color: #000; background: #fff; padding: 2px 6px;
  transform: translate(12px, 12px); display: none;
}

/* ---------- shift ---------- */
.shift-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 96px); }
.shift-sticky { position: sticky; top: 110px; align-self: start; }
.shift-sky { width: min(360px, 100%); margin-top: 8px; }
.shift-sky svg { width: 100%; overflow: visible; }
.shift-sky .arc { fill: none; stroke: var(--line2); stroke-width: 1; stroke-dasharray: 3 5; }
.shift-sky .horizon { stroke: var(--line2); }
#shiftMoon { fill: #e8f0ea; filter: drop-shadow(0 0 8px rgba(232,240,234,.9)); transition: fill .6s; }
.shift-sky.dawn #shiftMoon { fill: var(--amber); filter: drop-shadow(0 0 12px var(--amber)); }
.shift-clock {
  font-family: var(--f-mono); font-weight: 700;
  font-size: clamp(64px, 11vw, 150px); line-height: 1;
  color: var(--nv); text-shadow: 0 0 40px rgba(141,255,176,.35);
  font-variant-numeric: tabular-nums;
  margin-top: 10px;
}
.shift-sub { color: var(--mute); margin-top: 16px; max-width: 360px; }
.steps { list-style: none; border-left: 1px solid var(--line2); }
.step { position: relative; padding: 0 0 72px 40px; opacity: .3; transition: opacity .5s; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: -6px; top: 8px;
  width: 11px; height: 11px; background: var(--bg); border: 1px solid var(--line2);
  transition: background .4s, box-shadow .4s, border-color .4s;
}
.step.lit { opacity: 1; }
.step.lit::before { background: var(--nv); border-color: var(--nv); box-shadow: 0 0 16px var(--nv); }
.step time { font-family: var(--f-mono); color: var(--nv); font-size: 13px; letter-spacing: .15em; }
.step h3 { font-size: clamp(20px, 2.2vw, 28px); margin: 8px 0 10px; font-weight: 700; }
.step p { color: var(--mute); max-width: 480px; }

/* ---------- cams ---------- */
.cams-layout { display: grid; grid-template-columns: 1fr 360px; gap: 16px; }
.cams { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.cam { position: relative; aspect-ratio: 16 / 9; background: #000; border: 1px solid var(--line); overflow: hidden; font-family: var(--f-mono); font-size: 11px; letter-spacing: .1em; transition: border-color .2s; }
.cam canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cam span { position: absolute; text-shadow: 0 0 4px #000; }
.cam-name { top: 10px; left: 12px; color: #e6ffee; }
.cam-rec { top: 10px; right: 12px; color: var(--red); animation: blink 1.4s steps(2) infinite; }
.cam-time { bottom: 10px; left: 12px; color: #e6ffee; font-variant-numeric: tabular-nums; }
.cam-alert { bottom: 10px; right: 12px; background: var(--red); color: #fff; padding: 2px 7px; display: none; animation: blink .5s steps(2) infinite; }
.cam.alert { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.cam.alert .cam-alert { display: block; }
.log { display: flex; flex-direction: column; min-height: 0; }
#log { list-style: none; padding: 6px 18px; overflow: hidden; flex: 1; max-height: 470px; }
#log li { font-family: var(--f-mono); font-size: 12px; padding: 12px 0; border-bottom: 1px dashed var(--line); animation: logIn .5s ease; }
#log li:last-child { border-bottom: 0; }
#log time { color: var(--mute); margin-right: 8px; }
#log .cam-id { color: var(--nv); }
#log .what { display: block; color: var(--text); margin-top: 4px; }
#log .why { display: block; color: var(--amber); margin-top: 3px; }
#log .why.ok { color: var(--nv); }
@keyframes logIn { from { opacity: 0; transform: translateX(-10px); background: rgba(255,59,59,.15); } }

/* ---------- price ---------- */
.price-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 16px; }
.price-main { padding: clamp(24px, 4vw, 48px); overflow: hidden; }
.price-main::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(141,255,176,.14), transparent 65%);
  pointer-events: none;
}
.price-tag { font-family: var(--f-mono); font-size: 12px; letter-spacing: .18em; color: var(--nv); }
.price-num { font-family: var(--f-head); font-weight: 700; font-size: clamp(40px, 6.4vw, 88px); line-height: 1; margin-top: 22px; }
.price-num b { font-weight: 900; font-variant-numeric: tabular-nums; }
.price-shift { font-family: var(--f-mono); color: var(--mute); margin-top: 12px; }
.checks { list-style: none; margin: 32px 0 36px; display: grid; gap: 14px; }
.checks li { position: relative; padding-left: 32px; }
.checks li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; display: grid; place-items: center; font-size: 12px; color: #041009; background: var(--nv); }
.price-side { display: grid; gap: 16px; align-content: start; }
.addon { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px; transition: border-color .3s; }
.addon:hover { border-color: var(--line2); }
.addon p { color: var(--mute); font-size: 14px; margin-top: 6px; }
.addon > b { font-family: var(--f-mono); color: var(--nv); font-size: 18px; white-space: nowrap; }
.terms { padding: 8px 24px; }
.term { display: grid; grid-template-columns: 110px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px dashed var(--line); font-size: 14.5px; }
.term:last-child { border-bottom: 0; }
.term > span { font-family: var(--f-mono); font-size: 11px; color: var(--mute); letter-spacing: .14em; text-transform: uppercase; padding-top: 3px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chips i { font-style: normal; font-family: var(--f-mono); font-size: 12px; border: 1px solid var(--line2); padding: 3px 9px; }

/* ---------- why ---------- */
.not-block { border-block: 1px solid var(--line2); padding: 32px 0; margin-bottom: 48px; }
.not-title { font-family: var(--f-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.not-title u { color: var(--red); text-decoration: none; }
.not-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 40px; margin: 16px 0 20px; }
.not-list li { position: relative; font-family: var(--f-head); font-weight: 700; font-size: clamp(26px, 4.4vw, 58px); text-transform: uppercase; color: #56645b; line-height: 1.15; }
.not-list li::after {
  content: ""; position: absolute; left: -4px; right: -4px; top: 52%; height: .09em;
  background: var(--red); box-shadow: 0 0 12px var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s cubic-bezier(.7,0,.3,1);
}
.not-block.in .not-list li::after { transform: scaleX(1); }
.not-block.in .not-list li:nth-child(2)::after { transition-delay: .25s; }
.not-block.in .not-list li:nth-child(3)::after { transition-delay: .5s; }
.not-block.in .not-list li:nth-child(4)::after { transition-delay: .75s; }
.yes-line { color: var(--nv); font-size: clamp(16px, 1.6vw, 20px); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why { padding: 28px 24px; border-top: 2px solid var(--nv); background: linear-gradient(to bottom, rgba(141,255,176,.05), transparent 70%); }
.why:nth-child(2) { transition-delay: .1s; }
.why:nth-child(3) { transition-delay: .2s; }
.why:nth-child(4) { transition-delay: .3s; }
.why span { font-family: var(--f-mono); color: var(--nv); font-size: 12px; }
.why h3 { margin: 26px 0 10px; font-weight: 700; }
.why p { color: var(--mute); font-size: 14.5px; }

/* ---------- geo ---------- */
.geo-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.geo-grid .sec-lead { margin-top: 24px; }
.cities { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.cities li { font-family: var(--f-mono); font-size: 13px; border: 1px solid var(--line2); padding: 6px 12px; transition: background .2s, color .2s; }
.cities li:hover { background: var(--nv); color: #041009; }
.cities .more { border-style: dashed; color: var(--mute); }
.radar-wrap { position: relative; aspect-ratio: 1; width: 100%; max-width: 620px; justify-self: end; }
#radar { width: 100%; height: 100%; display: block; }
.radar-note { position: absolute; right: 0; bottom: 0; font-family: var(--f-mono); font-size: 10px; letter-spacing: .15em; color: var(--mute); }

/* ---------- order ---------- */
.order-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.order-grid .sec-lead { margin-top: 24px; }
.call { margin-top: 36px; padding: 22px 24px; display: grid; gap: 6px; max-width: 380px; border-color: var(--nv); transition: background .25s; }
.call:hover { background: rgba(141,255,176,.08); }
.call span { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--mute); }
.call b { font-family: var(--f-head); font-size: clamp(24px, 3vw, 32px); color: var(--nv); white-space: nowrap; }
.call small { font-family: var(--f-mono); color: var(--mute); font-size: 12px; }
.footer-tel { color: var(--nv); }
.estimate { margin-top: 16px; padding: 22px 24px; display: grid; gap: 6px; max-width: 380px; border-color: var(--line2); }
.estimate span { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--mute); }
.estimate b { font-family: var(--f-head); font-size: 36px; color: var(--nv); font-variant-numeric: tabular-nums; }
.estimate small { font-family: var(--f-mono); color: var(--mute); font-size: 12px; }
.form { padding: clamp(20px, 3vw, 36px); display: grid; gap: 18px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label > span { display: block; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.form input:not([type=checkbox]), .form select, .form textarea {
  width: 100%;
  background: rgba(0,0,0,.35);
  border: 1px solid var(--line2);
  color: var(--text);
  font: inherit; font-size: 15px;
  padding: 13px 14px;
  border-radius: 0;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--nv) 50%), linear-gradient(-45deg, transparent 50%, var(--nv) 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px; background-repeat: no-repeat;
  padding-right: 36px;
}
.form select option { background: #0b110e; }
.form textarea { resize: vertical; min-height: 110px; }
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--nv); box-shadow: 0 0 0 3px rgba(141,255,176,.12); }
.form input.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(255,59,59,.15); }
.form ::placeholder { color: #56645b; }
.opts { display: grid; gap: 12px; }
.check { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 15px; }
.check input { position: absolute; opacity: 0; }
.check span { width: 20px; height: 20px; border: 1px solid var(--line2); display: grid; place-items: center; flex: none; transition: background .2s, border-color .2s; }
.check input:checked + span { background: var(--nv); border-color: var(--nv); }
.check input:checked + span::after { content: "✓"; color: #041009; font-size: 13px; font-weight: 700; }
.check input:focus-visible + span { outline: 2px solid var(--nv); outline-offset: 2px; }
.check em { font-style: normal; font-family: var(--f-mono); font-size: 12px; color: var(--nv); margin-left: auto; }
.form-note { font-size: 12px; color: var(--mute); }
.form-done {
  position: absolute; inset: 0;
  background: rgba(5,9,7,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 32px; gap: 10px;
  animation: logIn .5s ease;
}
.form-done[hidden] { display: none; }
.form-done b { font-family: var(--f-head); font-size: clamp(22px, 3vw, 32px); color: var(--nv); text-transform: uppercase; }
.form-done span { font-family: var(--f-mono); color: var(--amber); letter-spacing: .15em; }
.form-done p { color: var(--mute); max-width: 360px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px var(--pad); }
.footer-in { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.footer p { font-family: var(--f-mono); font-size: 12px; color: var(--mute); }
.footer-end { font-variant-numeric: tabular-nums; }

:focus-visible { outline: 2px solid var(--nv); outline-offset: 3px; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  #nav { gap: 16px; }
  .cams-layout { grid-template-columns: 1fr; }
  #log { max-height: 320px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .rec { display: none; }
}
@media (max-width: 900px) {
  .burger { display: block; }
  .phone { margin-left: auto; }
  #nav .nav-tel { display: block; color: var(--nv); font-size: 20px; }
  #nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(5,7,6,.97);
    font-size: 16px;
    opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  #nav.open { opacity: 1; visibility: visible; }
  .sec-head { grid-template-columns: 1fr; }
  .sec-head .sec-lead { justify-self: start; margin-top: 20px; }
  .sym-grid { grid-template-columns: 1fr 1fr; }
  .sym-verdict { grid-template-columns: 1fr; gap: 16px; }
  .eq-grid { grid-template-columns: 1fr; }
  .shift-grid { grid-template-columns: 1fr; }
  .shift-sticky { top: 64px; z-index: 5; background: linear-gradient(var(--bg) 80%, transparent); padding: 12px 0 24px; }
  .shift-sky { display: none; }
  .shift-sub { display: none; }
  .price-grid, .geo-grid, .order-grid { grid-template-columns: 1fr; }
  .radar-wrap { justify-self: center; }
  .footer-in { grid-template-columns: 1fr; gap: 14px; }
  .hero-stats { grid-template-columns: 1fr 1fr; row-gap: 8px; }
  .hero-hint { display: none; }
  .d1 { left: 50%; top: 40%; }
}
@media (max-width: 600px) {
  .logo small { display: none; }
  .topbar { gap: 12px; }
  .phone { font-size: 12px; }
  .hud-top span:last-child, .hud-bot span:last-child { display: none; }
  .hud { inset: 76px 12px 16px; }
  .sym-grid { grid-template-columns: 1fr; }
  .sym { height: 220px; }
  .cams { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .term { grid-template-columns: 1fr; gap: 6px; }
  .addon { flex-direction: column; align-items: flex-start; }
  .emf-led { width: 22px; height: 38px; }
  .emf-num b { font-size: 36px; }
  .th-label { font-size: 9.5px; }
  .thermal-legend i { width: 50px; }
  .debunk { font-size: 9.5px; }
  .s3 { display: none; }
  .not-list li { font-size: 21px; }
  .not-list { gap: 4px 20px; }
  .btn { padding: 16px 20px; }
  .cta .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
