/* ================================================================
   AXIVELO — Signal in the aisle · v2: the real app, revealed
   Palette: deep navy void · amber-gold signal · profit green · risk red
   ================================================================ */

:root {
  --void: #06080f;
  --void-2: #0a0e1a;
  --void-3: #10162a;
  --panel: #0d1322;
  --line: rgba(180, 200, 255, 0.12);
  --line-strong: rgba(180, 200, 255, 0.22);
  --ink: #f7f9fe;
  --ink-dim: #b7c1d9;
  --ink-faint: #8089a3;
  --gold: #f5a623;
  --gold-hi: #ffd37e;
  --gold-deep: #8a5a10;
  --green: #4ade80;
  --red: #f87171;
  --amber: #e0b13e;
  --font-display: 'Clash Display', 'Segoe UI', sans-serif;
  --font-body: 'Satoshi', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: #04060c; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #3a3323, #8a5a10); border-radius: 100px; border: 2.5px solid #04060c; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #8a5a10, var(--gold)); }
body {
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.05; color: #fff; }
h2 { font-size: clamp(2.3rem, 5vw, 4.2rem); letter-spacing: -0.015em; }
h2 em { font-style: normal; background: linear-gradient(100deg, var(--gold-hi) 10%, var(--gold) 60%, #d98d15); -webkit-background-clip: text; background-clip: text; color: transparent; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
figure { margin: 0; }
::selection { background: var(--gold); color: var(--void); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible, .nav-cta:focus-visible { outline-offset: 4px; }

.ok { color: var(--green); } .bad { color: var(--red); } .warn { color: var(--amber); } .gold { color: var(--gold); }

/* ================= GRAIN + PROGRESS ================= */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.045;
  animation: grainShift 0.9s steps(4) infinite;
}
@keyframes grainShift {
  0% { transform: translate(0, 0); } 25% { transform: translate(-2%, 1.4%); }
  50% { transform: translate(1.6%, -1%); } 75% { transform: translate(-1%, -1.8%); } 100% { transform: translate(0, 0); }
}
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 150;
  background: linear-gradient(90deg, var(--gold-hi), var(--gold));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ================= VEIL ================= */
.veil {
  position: fixed; inset: 0; z-index: 200;
  background: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}
.veil.is-done { opacity: 0; visibility: hidden; }
.veil-barcode { position: relative; width: 150px; height: 60px; overflow: hidden; }
.veil-bars {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 3px, transparent 3px 7px,
    var(--ink) 7px 9px, transparent 9px 15px,
    var(--ink) 15px 21px, transparent 21px 24px,
    var(--ink) 24px 26px, transparent 26px 33px);
  opacity: 0.85;
}
.veil-beam {
  position: absolute; top: 0; bottom: 0; width: 3px;
  background: var(--gold);
  box-shadow: 0 0 18px 4px rgba(245, 166, 35, 0.65);
  animation: veilSweep 0.8s var(--ease-out) infinite alternate;
}
@keyframes veilSweep { from { left: 4%; } to { left: 94%; } }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 56px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.75), rgba(6, 8, 15, 0));
}
.nav.is-scrolled {
  background: rgba(6, 8, 15, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 11px; padding-bottom: 11px;
}
.nav.is-scrolled::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: linear-gradient(90deg, transparent 4%, rgba(245, 166, 35, 0.45) 50%, transparent 96%);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-mark { width: auto; height: 36px; border-radius: 9px; box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.35), 0 0 14px rgba(245, 166, 35, 0.18); }
.nav-word { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: 0.01em; color: #fff; }
.nav-word em { font-style: normal; color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); font-size: 0.95rem; color: #dbe1f0; }
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-cta {
  color: var(--void); background: linear-gradient(100deg, var(--gold-hi), var(--gold));
  padding: 9px 20px; border-radius: 100px; font-weight: 700;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245, 166, 35, 0.4); }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px; font-weight: 700; font-size: 1rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s, color 0.25s;
}
.btn-gold { background: linear-gradient(100deg, var(--gold-hi), var(--gold)); color: #241500; box-shadow: 0 4px 30px rgba(245, 166, 35, 0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 44px rgba(245, 166, 35, 0.5); }
.btn-ghost { border: 1px solid var(--line-strong); color: #d7deee; background: rgba(6, 8, 15, 0.35); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold); color: #fff; }
.btn-big { padding: 19px 42px; font-size: 1.1rem; }
.btn-arrow { transition: transform 0.3s; }
.btn-ghost:hover .btn-arrow { transform: translateY(3px); }

/* ================= HERO ================= */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: 110px clamp(20px, 5vw, 72px) 96px;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: 30% 46%;
  transform: scale(1.12);
  filter: brightness(1.12) saturate(1.05);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.12) translate(0, 0); }
  to   { transform: scale(1.05) translate(1.4%, -1%); }
}
.hero-shimmer {
  position: absolute; left: 0; right: 0; top: 51.5%; height: 10px;
  background: linear-gradient(90deg, transparent 2%, rgba(255, 205, 110, 0.5) 30%, rgba(255, 220, 150, 0.75) 55%, rgba(255, 205, 110, 0.4) 80%, transparent 98%);
  filter: blur(7px);
  mix-blend-mode: screen;
  animation: beamBreath 5.5s ease-in-out infinite;
  transform-origin: 30% 50%;
}
@keyframes beamBreath {
  0%, 100% { opacity: 0.30; transform: scaleY(0.8); }
  40% { opacity: 0.75; transform: scaleY(1.35); }
  62% { opacity: 0.45; transform: scaleY(1.0); }
  78% { opacity: 0.85; transform: scaleY(1.5); }
}
.hero-dust { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; }
.hero-grade {
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 70% at 22% 55%, rgba(4, 6, 12, 0.82) 0%, rgba(4, 6, 12, 0.45) 55%, transparent 80%),
    radial-gradient(42% 56% at 76% 52%, rgba(4, 6, 12, 0.55) 0%, rgba(4, 6, 12, 0.22) 55%, transparent 78%),
    linear-gradient(180deg, rgba(6,8,15,0.62) 0%, rgba(6,8,15,0.12) 30%, rgba(6,8,15,0.25) 62%, rgba(6,8,15,0.95) 100%),
    linear-gradient(100deg, rgba(6,8,15,0.7) 0%, rgba(6,8,15,0.2) 46%, rgba(6,8,15,0.08) 100%);
}
.hero-vignette { position: absolute; inset: 0; box-shadow: inset 0 0 200px 50px rgba(3, 4, 9, 0.75); }
.hero-ray {
  position: absolute; top: -30%; left: 4%; width: 46%; height: 130%;
  background: linear-gradient(115deg, rgba(255, 214, 140, 0.10) 0%, rgba(255, 214, 140, 0.03) 42%, transparent 70%);
  transform: skewX(-16deg);
  mix-blend-mode: screen; pointer-events: none;
  animation: rayBreath 11s ease-in-out infinite alternate;
}
@keyframes rayBreath { from { opacity: 0.5; transform: skewX(-16deg) translateX(-1.5%); } to { opacity: 1; transform: skewX(-15deg) translateX(2%); } }

.hero-grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(24px, 3vw, 54px);
  align-items: center;
  max-width: 1340px; margin: 0 auto; width: 100%;
}
.kicker { font-size: 12.5px; color: #c3cce2; letter-spacing: 0.16em; margin-bottom: 24px; text-shadow: 0 1px 8px rgba(0,0,0,0.8); }
.kicker span { color: var(--gold-hi); }
.hero-title {
  font-size: clamp(3rem, 7.2vw, 6.6rem);
  font-weight: 600; letter-spacing: -0.02em; line-height: 0.98;
  margin-bottom: 26px; color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.55);
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-hi) 0%, var(--gold) 32%, #d98d15 50%, var(--gold) 68%, var(--gold-hi) 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 26px rgba(245, 166, 35, 0.35));
  animation: goldShine 7s ease-in-out infinite;
}
@keyframes goldShine { 0%, 100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }
.ht-line { display: block; overflow: hidden; }
.ht-line > span { display: inline-block; transform: translateY(110%); padding-bottom: 0.08em; margin-bottom: -0.08em; }
.hero-sub { max-width: 530px; color: #dde3f0; font-size: clamp(1.06rem, 1.4vw, 1.22rem); line-height: 1.65; margin-bottom: 34px; text-shadow: 0 1px 10px rgba(0,0,0,0.75); }
.hero-sub, .hero-actions { position: relative; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof { margin-top: 26px; font-size: 12px; letter-spacing: 0.12em; color: #a6b1ca; }

/* --- hero device + chips --- */
.hero-device-zone { position: relative; display: flex; justify-content: center; }
.frame {
  position: relative; width: min(352px, 80vw); aspect-ratio: 9 / 18.6;
  background: #05070d;
  border-radius: 40px;
  border: 1px solid rgba(200, 214, 245, 0.30);
  box-shadow:
    inset 0 0 0 4px #05070d,
    inset 0 0 0 5px rgba(200, 214, 245, 0.14),
    0 30px 90px rgba(0, 0, 0, 0.85),
    0 0 80px rgba(245, 166, 35, 0.12);
  padding: 10px; z-index: 2;
}
.frame-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 11px; height: 11px; border-radius: 50%; background: #10141f; z-index: 5; box-shadow: inset 0 0 4px #000; }
.frame-screen { position: relative; width: 100%; height: 100%; border-radius: 31px; overflow: hidden; background: #04060b; }
.frame-screen::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 16%;
  background: linear-gradient(180deg, transparent, rgba(4, 6, 11, 0.95) 80%);
  pointer-events: none; z-index: 2;
}
.fs-img { position: absolute; inset: 0; width: 100%; height: auto; transition: opacity 0.35s; }
.fs-hidden { opacity: 0; }
.fs-beam {
  position: absolute; left: 6%; right: 6%; height: 3px; top: 18%;
  background: linear-gradient(90deg, transparent, var(--gold-hi), transparent);
  box-shadow: 0 0 18px 4px rgba(245, 166, 35, 0.6);
  opacity: 0;
}
.fs-flash { position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 45%, rgba(255, 211, 126, 0.9), rgba(245, 166, 35, 0.25) 60%, transparent 85%); opacity: 0; }
.frame-glow {
  position: absolute; inset: 6% -18% -8%; z-index: -1;
  background: radial-gradient(50% 45% at 50% 55%, rgba(245, 166, 35, 0.34), transparent 70%);
  filter: blur(14px);
}
/* highlight passes over the real result values — outlines only, never redrawing UI */
.fs-hi {
  position: absolute; z-index: 3; pointer-events: none;
  border: 1.5px solid var(--gold-hi); border-radius: 10px;
  box-shadow: 0 0 18px rgba(255, 211, 126, 0.45), inset 0 0 14px rgba(255, 211, 126, 0.12);
  opacity: 0;
}
.fs-hi-roi { left: 2.5%; top: 6.5%; width: 46%; height: 7.6%; }
.fs-hi-net { left: 51.5%; top: 6.5%; width: 46%; height: 7.6%; }
.fs-hi-max { left: 2.5%; top: 18%; width: 95%; height: 4.6%; }
.chip {
  position: absolute; z-index: 3;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(10, 14, 26, 0.88); backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6);
  opacity: 0; transform: translateY(14px) scale(0.9);
  white-space: nowrap;
}
.chip b { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; line-height: 1.1; }
.chip-label { font-size: 9.5px; letter-spacing: 0.08em; color: var(--ink-faint); }
.chip-roi { top: 13%; left: -10%; border-color: rgba(74, 222, 128, 0.4); }
.chip-net { top: 34%; right: -9%; border-color: rgba(74, 222, 128, 0.35); }
.chip-max { bottom: 30%; left: -11%; border-color: rgba(245, 166, 35, 0.5); box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 30px rgba(245,166,35,0.15); }
.chip-risk { bottom: 12%; right: -10%; border-color: rgba(248, 113, 113, 0.4); }
.chip-risk b { font-size: 0.95rem; }
.chip.chip-in { opacity: 1; transform: none; }
.rescan {
  position: absolute; bottom: -44px; left: 50%; transform: translateX(-50%);
  background: none; border: 1px solid var(--line); border-radius: 100px;
  color: var(--ink-faint); font-size: 11px; letter-spacing: 0.12em;
  padding: 8px 18px; opacity: 0; transition: opacity 0.5s, color 0.3s, border-color 0.3s;
}
.rescan.is-in { opacity: 1; }
.rescan:hover { color: var(--gold); border-color: var(--gold); }

.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(6, 8, 15, 0.7); backdrop-filter: blur(8px);
  overflow: hidden; padding: 12px 0;
}
.ticker-track { display: flex; gap: 56px; opacity: 0.82; white-space: nowrap; width: max-content; animation: tick 40s linear infinite; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tick { to { transform: translateX(-50%); } }
.tick-item { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: #8b96b5; display: inline-flex; gap: 10px; align-items: center; }
.tick-item b { color: #c6cee2; font-weight: 500; }
.tick-item .up { color: var(--green); }
.tick-item .down { color: var(--red); }

/* --- hero scan environment reaction --- */
.zone-pulse {
  position: absolute; inset: -6% -10%; z-index: 0; pointer-events: none;
  background: radial-gradient(46% 40% at 50% 52%, rgba(245, 166, 35, 0.30), rgba(245, 166, 35, 0.08) 55%, transparent 75%);
  filter: blur(18px); opacity: 0;
}
.scan-telemetry {
  position: absolute; left: -6%; top: 16%; z-index: 4;
  display: flex; flex-direction: column; gap: 14px; pointer-events: none;
}
.scan-telemetry span {
  font-size: 10.5px; letter-spacing: 0.12em; color: var(--gold-hi);
  padding-left: 12px; border-left: 1px solid rgba(245, 166, 35, 0.5);
  text-shadow: 0 0 12px rgba(245, 166, 35, 0.4);
  opacity: 0;
}

/* ================= SCANBAND (the doorway) ================= */
.scanband {
  position: relative; overflow: hidden;
  min-height: clamp(260px, 44vh, 440px);
  display: flex; align-items: center; justify-content: center;
  border-top: 1px solid rgba(180, 200, 255, 0.06);
  border-bottom: 1px solid rgba(180, 200, 255, 0.06);
}
.sb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; opacity: 0.6; }
.sb-grade { position: absolute; inset: 0; background:
  linear-gradient(180deg, var(--void) 0%, rgba(6,8,15,0.35) 30%, rgba(6,8,15,0.35) 70%, var(--void) 100%),
  radial-gradient(70% 80% at 50% 50%, transparent 30%, rgba(6,8,15,0.7) 100%); }
.sb-beam {
  position: absolute; top: 0; bottom: 0; left: 12%; width: 3px; z-index: 2;
  background: linear-gradient(180deg, transparent, var(--gold-hi) 22%, var(--gold-hi) 78%, transparent);
  box-shadow: 0 0 26px 6px rgba(245, 166, 35, 0.5);
  opacity: 0.9;
}
.sb-digits { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sb-digits span {
  position: absolute; font-size: 11px; letter-spacing: 0.2em;
  color: rgba(255, 211, 126, 0.34); text-shadow: 0 0 12px rgba(245, 166, 35, 0.25);
  animation: digitDrift 14s ease-in-out infinite alternate;
}
.sb-digits span:nth-child(1) { left: 8%; top: 22%; }
.sb-digits span:nth-child(2) { right: 10%; top: 30%; animation-delay: -5s; animation-duration: 17s; }
.sb-digits span:nth-child(3) { left: 16%; bottom: 18%; animation-delay: -9s; animation-duration: 20s; }
@keyframes digitDrift { from { transform: translateY(-7px); opacity: 0.55; } to { transform: translateY(9px); opacity: 1; } }
.sb-inner { position: relative; z-index: 3; text-align: center; padding: 40px clamp(20px, 5vw, 72px); }
.sb-kicker { font-size: 12px; letter-spacing: 0.18em; color: var(--gold); margin-bottom: 18px; }
.sb-title { font-size: clamp(2rem, 5.4vw, 4.4rem); letter-spacing: -0.015em; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.7); }
.sb-stroke { color: rgba(6, 8, 15, 0.3); -webkit-text-stroke: 1.5px rgba(255, 211, 126, 0.92); }
.sb-inner::before {
  content: ''; position: absolute; inset: -8% -6%; z-index: -1;
  background: radial-gradient(58% 70% at 50% 50%, rgba(6, 8, 15, 0.62), transparent 75%);
}

/* ================= CHART CURSOR + WAITING CHIPS ================= */
.chart-cursor {
  position: absolute; top: 12%; bottom: 18%; left: 6%; width: 2px; z-index: 3;
  background: linear-gradient(180deg, transparent, var(--gold-hi) 15%, var(--gold-hi) 85%, transparent);
  box-shadow: 0 0 14px 3px rgba(245, 166, 35, 0.45);
  opacity: 0; pointer-events: none;
}
.chip-wait { opacity: 0; transform: translateY(12px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.chip-wait.chip-go { opacity: 1; transform: none; }

/* ================= STRESS HIGHLIGHT ================= */
.stress-scanline {
  position: absolute; left: 2%; right: 2%; height: 13%; top: 14%; z-index: 3;
  border-radius: 10px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(248, 113, 113, 0.14) 20%, rgba(248, 113, 113, 0.14) 80%, transparent);
  box-shadow: 0 0 30px rgba(248, 113, 113, 0.12);
  opacity: 0;
}
.fail-glow {
  position: absolute; left: 2%; bottom: 4%; height: 10%; width: 62%; z-index: 3;
  border-radius: 8px; pointer-events: none;
  background: radial-gradient(60% 100% at 30% 50%, rgba(224, 177, 62, 0.22), transparent 80%);
  opacity: 0;
}

/* ================= SECTION COMMONS ================= */
.sec-tag { font-size: 12px; letter-spacing: 0.16em; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.sec-tag::before {
  content: ''; width: 34px; height: 12px; flex-shrink: 0;
  background: repeating-linear-gradient(90deg,
    var(--gold) 0 2px, transparent 2px 4px, var(--gold) 4px 5px, transparent 5px 9px,
    var(--gold) 9px 12px, transparent 12px 14px, var(--gold) 14px 15px, transparent 15px 19px,
    var(--gold) 19px 20px, transparent 20px 24px, var(--gold) 24px 27px, transparent 27px 29px,
    var(--gold) 29px 30px, transparent 30px 34px);
  opacity: 0.8;
}
.scene-head .sec-tag { justify-content: center; }
.scene-head .sec-tag::before { display: none; }

/* ================= NOISE INTERLUDE ================= */
.noise { position: relative; padding: clamp(64px, 8vh, 110px) clamp(20px, 5vw, 72px); overflow: hidden; box-shadow: 0 -1px 0 rgba(180, 200, 255, 0.06); }
.noise-canvas { position: absolute; inset: 1px 0 0; width: 100%; height: calc(100% - 1px); }
.noise-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.noise-title { font-size: clamp(1.9rem, 4.6vw, 3.8rem); letter-spacing: -0.015em; }
.noise-title span { display: block; }
.nt-stroke { color: rgba(6, 8, 15, 0.35); -webkit-text-stroke: 1.5px rgba(247, 249, 254, 0.75); text-shadow: 0 2px 24px rgba(3, 4, 9, 0.6); }
.noise-punch { margin-top: 26px; color: var(--ink-dim); font-size: 1.15rem; }
.noise-punch em { font-style: normal; color: var(--gold-hi); }

/* ================= SCENES ================= */
.scene { position: relative; padding: clamp(94px, 12vh, 150px) clamp(20px, 5vw, 72px); overflow: hidden; }
.scene-inner {
  position: relative; max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px); align-items: center;
}
.scene-rev .scene-copy { order: 2; }
.scene-rev .scene-shot { order: 1; }
.scene-copy h2 { margin-bottom: 22px; }
.h-or { font-family: var(--font-body); font-style: italic; font-weight: 400; font-size: 0.45em; color: var(--ink-faint); vertical-align: 22%; margin: 0 0.25em; }
.scene-lede { color: var(--ink-dim); font-size: 1.13rem; line-height: 1.68; margin-bottom: 26px; max-width: 580px; }
.scene-lede b { color: var(--ink); }
.scene-lede.centered { margin: 0 auto 26px; }
.tick-list { list-style: none; display: flex; flex-direction: column; }
.tick-list li { padding: 13px 0 13px 30px; border-top: 1px solid var(--line); color: var(--ink-dim); font-size: 1.03rem; line-height: 1.62; position: relative; }
.tick-list li:last-child { border-bottom: 1px solid var(--line); }
.tick-list li::before { content: '▸'; position: absolute; left: 4px; color: var(--gold); }
.tick-list b { color: var(--ink); }
.quote-chip {
  margin-top: 24px; display: inline-block;
  font-size: 12px; letter-spacing: 0.08em; color: var(--gold-hi);
  border: 1px dashed rgba(245, 166, 35, 0.4); border-radius: 12px;
  padding: 12px 18px; background: rgba(245, 166, 35, 0.05);
}

/* --- panels: real screens, treated premium --- */
.panel {
  position: relative; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #04060b;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.7), 0 0 60px rgba(245, 166, 35, 0.07);
  transform-style: preserve-3d;
}
.panel img { width: 100%; transition: transform 0.7s var(--ease-out); }
.panel:hover img { transform: scale(1.02); }
.panel figcaption {
  padding: 12px 18px; font-size: 12.5px; letter-spacing: 0.1em;
  color: var(--ink-dim); border-top: 1px solid var(--line);
  background: rgba(10, 14, 26, 0.8);
  display: flex; align-items: center; gap: 10px;
}
.panel figcaption::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px rgba(74, 222, 128, 0.8); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: 0.3; } }
.panel::before {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 20%), rgba(245, 166, 35, 0.08), transparent 60%);
  opacity: 0; transition: opacity 0.4s;
}
.panel:hover::before { opacity: 1; }
.panel::after { /* light sweep on reveal */
  content: ''; position: absolute; top: -40%; bottom: -40%; width: 34%;
  left: -60%; z-index: 3; pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255, 220, 150, 0.14), transparent);
  transform: skewX(-14deg);
}
.panel-lit::after { animation: sweep 1.3s var(--ease-out) 0.15s forwards; }
@keyframes sweep { to { left: 130%; } }
.panel-tall { max-width: 400px; margin: 0 auto; }
.panel-wide { width: 100%; }
.panel-hero { max-width: 880px; margin: 0 auto; }
.panel-settings { max-width: 480px; }

.scene-shot { position: relative; }
.mini-callouts { display: flex; gap: 12px; margin-top: 18px; flex-wrap: wrap; }
.chip-static { position: static; flex-direction: row; align-items: center; gap: 10px; opacity: 1; transform: none; padding: 10px 14px; }
.chip-static b { font-size: 1.05rem; }

/* --- decision scene bg --- */
.decision { background: var(--void); padding-top: clamp(80px, 10vh, 130px); }
.scene-bg { position: absolute; inset: 0; }
.scene-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
  -webkit-mask-image: radial-gradient(90% 90% at 70% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(90% 90% at 70% 40%, #000 20%, transparent 75%);
}
.scene-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, var(--void) 0%, rgba(6,8,15,0.45) 30%, rgba(6,8,15,0.55) 70%, var(--void) 100%); }
.decision .scene-inner { position: relative; }

/* --- market scene --- */
.market { background: radial-gradient(60% 46% at 82% 8%, rgba(61, 110, 247, 0.07), transparent 70%), var(--void); }

/* --- stress scene --- */
.stress-scene { text-align: center; background:
  radial-gradient(50% 40% at 50% 30%, rgba(245, 166, 35, 0.06), transparent 70%), var(--void); }
.scene-head { max-width: 860px; margin: 0 auto clamp(32px, 5vh, 52px); }
.scene-head h2 { margin-bottom: 20px; }
.stress-punch { margin: 36px auto 0; max-width: 760px; font-size: clamp(1.1rem, 2vw, 1.5rem); color: var(--ink); }
.stress-punch .mono { display: block; font-size: 12px; letter-spacing: 0.12em; color: var(--ink-faint); margin-bottom: 10px; }
.stress-punch em { font-style: normal; color: var(--amber); font-family: var(--font-display); }

/* --- ops scene --- */
.ops { text-align: center; }
.ops-stage {
  position: relative; max-width: 1150px; margin: 0 auto;
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(4px, 2vw, 20px);
  perspective: 1200px;
}
.ops-phone { position: relative; width: clamp(170px, 22vw, 300px); flex-shrink: 0; }
.op-mid { width: clamp(236px, 31vw, 420px); }
.ops-phone img { width: 100%; filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.75)); transition: transform 0.55s var(--ease-out), filter 0.55s; }
.ops-phone figcaption { transition: color 0.4s; }
.ops-phone.is-focus img {
  transform: scale(1.055);
  filter: drop-shadow(0 36px 72px rgba(0, 0, 0, 0.82)) drop-shadow(0 0 42px rgba(245, 166, 35, 0.22)) brightness(1.06);
}
.ops-phone.is-focus figcaption { color: var(--gold-hi); }
.op-left { transform: rotate(-5deg) translateY(34px) scale(0.94); margin-right: -2.5%; z-index: 1; }
.op-right { transform: rotate(5deg) translateY(34px) scale(0.94); margin-left: -2.5%; z-index: 1; }
.op-mid { z-index: 2; }
.ops-phone { transition: transform 0.5s var(--ease-out); }
.op-left:hover { transform: rotate(-2deg) translateY(14px); }
.op-right:hover { transform: rotate(2deg) translateY(14px); }
.op-mid:hover { transform: translateY(-10px); }
.op-mid img { filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 46px rgba(245, 166, 35, 0.12)); }
.ops-phone figcaption { margin-top: 6px; font-size: 12px; letter-spacing: 0.1em; color: var(--ink-dim); }
.ops-points {
  list-style: none; max-width: 860px; margin: clamp(30px, 5vh, 46px) auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; text-align: left;
}
.ops-points li { color: var(--ink-dim); font-size: 1rem; line-height: 1.62; padding-top: 16px; border-top: 1px solid var(--line); }
.ops-points b { color: var(--ink); display: block; font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 6px; }

/* ================= UK ================= */
.uk { position: relative; padding: clamp(94px, 12vh, 150px) clamp(20px, 5vw, 72px); overflow: hidden;
  background: linear-gradient(180deg, var(--void) 0%, #080c18 50%, var(--void) 100%); }
.uk-pound {
  position: absolute; right: -3vw; top: 50%; transform: translateY(-50%);
  font-size: clamp(20rem, 40vw, 38rem); line-height: 1; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px rgba(245, 166, 35, 0.18);
  user-select: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 2%, #000 22%, #000 74%, transparent 96%);
  mask-image: linear-gradient(180deg, transparent 2%, #000 22%, #000 74%, transparent 96%);
}
.uk-inner {
  max-width: 1240px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(36px, 6vw, 90px); align-items: center;
}
.uk h2 { margin-bottom: 40px; }
.uk-list { list-style: none; max-width: 620px; display: flex; flex-direction: column; }
.uk-list li { padding: 19px 0; border-top: 1px solid var(--line); color: var(--ink-dim); font-size: 1.05rem; line-height: 1.62; }
.uk-list li:last-child { border-bottom: 1px solid var(--line); }
.uk-list b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 1.12rem; }
.panel-settings { justify-self: center; }

/* ================= PRICING ================= */
.pricing {
  position: relative; padding: clamp(84px, 10.5vh, 132px) clamp(20px, 5vw, 72px);
  text-align: center; overflow: hidden;
  background: radial-gradient(52% 38% at 50% 12%, rgba(245, 166, 35, 0.06), transparent 70%), var(--void);
}
.price-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; max-width: 1180px; margin: 0 auto;
  align-items: stretch; text-align: left;
}
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(165deg, rgba(18, 24, 44, 0.6), rgba(8, 11, 22, 0.92));
  border: 1px solid var(--line-strong); border-radius: 24px;
  padding: 30px 28px 26px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.price-card:hover { transform: translateY(-5px); border-color: rgba(245, 166, 35, 0.35); }
.pc-annual {
  border-color: rgba(245, 166, 35, 0.55);
  background: linear-gradient(165deg, rgba(58, 41, 8, 0.35), rgba(10, 13, 24, 0.95));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(245, 166, 35, 0.14);
  overflow: hidden;
  animation: annualBreath 5.5s ease-in-out infinite;
}
@keyframes annualBreath {
  0%, 100% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(245, 166, 35, 0.12); }
  50% { box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 84px rgba(245, 166, 35, 0.24); }
}
.pc-annual:hover { border-color: rgba(255, 211, 126, 0.8); box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65), 0 0 80px rgba(245, 166, 35, 0.22); }
@media (min-width: 1061px) {
  .pc-annual { transform: scale(1.045); z-index: 2; }
  .pc-annual:hover { transform: scale(1.045) translateY(-5px); }
}
.pc-beam {
  position: absolute; top: -20%; bottom: -20%; width: 30%; left: -55%;
  background: linear-gradient(100deg, transparent, rgba(255, 220, 150, 0.13), transparent);
  transform: skewX(-14deg); pointer-events: none;
}
.pc-annual.pc-lit .pc-beam { animation: sweep 1.2s var(--ease-out) 0.2s forwards; }
.pc-verdict {
  position: absolute; top: 62px; right: 0;
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: 0.18em; color: var(--void);
  background: var(--green); border-radius: 100px 0 0 100px;
  padding: 7px 14px 7px 12px; font-weight: 700;
  box-shadow: 0 8px 26px rgba(74, 222, 128, 0.3);
  opacity: 0; transform: translateX(14px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.pc-annual.pc-lit .pc-verdict { opacity: 1; transform: none; }
.pv-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--void); opacity: 0.7; }
.pc-badges { display: flex; gap: 8px; margin-bottom: 14px; }
.pc-badge { font-size: 9.5px; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 100px; font-weight: 700; }
.pc-badge-gold { color: var(--void); background: linear-gradient(100deg, var(--gold-hi), var(--gold)); }
.pc-badge-green { color: var(--green); border: 1px solid rgba(74, 222, 128, 0.45); }
.pc-name { font-size: 1.6rem; margin-bottom: 6px; }
.pc-name em { font-style: normal; color: var(--gold); }
.pc-tag { font-size: 10.5px; letter-spacing: 0.12em; color: var(--ink-faint); }
.pc-price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin: 22px 0 6px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.pc-amount { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.6rem, 3.4vw, 3.4rem); line-height: 1; color: #fff; }
.pc-annual .pc-amount { background: linear-gradient(100deg, var(--gold-hi) 20%, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 22px rgba(245, 166, 35, 0.3)); }
.pc-per { font-size: 11px; letter-spacing: 0.1em; color: var(--ink-faint); }
.pc-billed { width: 100%; font-size: 1rem; color: var(--ink-dim); }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin: 14px 0 24px; flex: 1; }
.pc-list li { padding: 10px 0 10px 26px; position: relative; color: var(--ink-dim); font-size: 1rem; line-height: 1.55; border-top: 1px dashed rgba(180, 200, 255, 0.08); }
.pc-list li:first-child { border-top: 0; }
.pc-list li::before { content: '✓'; position: absolute; left: 2px; color: var(--green); font-size: 0.85em; }
.pc-annual .pc-list li::before { color: var(--gold); }
.pc-list .pc-plus { color: var(--ink); font-weight: 600; padding-left: 0; }
.pc-list .pc-plus::before { content: none; }
.pc-cta { justify-content: center; width: 100%; padding: 14px 20px; }
.pc-cta-gold { border-color: rgba(245, 166, 35, 0.45); color: var(--gold-hi); }
.pc-cta-gold:hover { border-color: var(--gold); color: #fff; }
.pc-note { margin-top: 12px; font-size: 0.95rem; color: var(--ink-faint); text-align: center; }

.compare-wrap { max-width: 1180px; margin: 40px auto 0; text-align: center; }
.compare-toggle {
  background: none; border: 1px solid var(--line-strong); border-radius: 100px;
  color: var(--ink-dim); font-size: 12px; letter-spacing: 0.12em;
  padding: 12px 26px; transition: color 0.3s, border-color 0.3s;
}
.compare-toggle:hover { color: var(--gold); border-color: var(--gold); }
.compare-toggle .ct-close { display: none; }
.compare-toggle[aria-expanded="true"] .ct-open { display: none; }
.compare-toggle[aria-expanded="true"] .ct-close { display: inline; }
.compare-panel { margin-top: 30px; overflow-x: auto; }
.compare-note { font-size: 1rem; color: var(--ink-dim); margin-bottom: 20px; }
.compare-table {
  width: 100%; max-width: 900px; margin: 0 auto; border-collapse: collapse;
  text-align: left; font-size: 0.93rem;
  background: rgba(8, 11, 22, 0.7); border: 1px solid var(--line);
  border-radius: 18px; overflow: hidden;
}
.compare-table thead th {
  padding: 14px 18px; border-bottom: 1px solid var(--line-strong);
  font-size: 11.5px; letter-spacing: 0.1em; color: var(--ink-faint); font-weight: 500;
}
.compare-table thead th.ct-pro { color: var(--gold); }
.compare-table tbody th { font-weight: 400; color: var(--ink-dim); padding: 10px 18px; }
.compare-table tbody td { padding: 10px 18px; color: var(--ink-dim); width: 120px; }
.compare-table td.ct-no { color: var(--ink-faint); }
.compare-table tbody td.ct-pro { color: var(--gold-hi); }
.compare-table tbody tr { border-top: 1px solid rgba(180, 200, 255, 0.06); }
.compare-table .ct-group th {
  padding: 16px 18px 8px; font-size: 11px; letter-spacing: 0.12em;
  color: var(--gold); border-top: 1px solid var(--line);
}
.ct-soon { font-size: 10px; letter-spacing: 0.08em; color: var(--amber); border: 1px solid rgba(224, 177, 62, 0.4); padding: 3px 8px; border-radius: 100px; white-space: nowrap; }
.pricing-fine { margin-top: 34px; font-size: 12px; letter-spacing: 0.1em; color: var(--ink-faint); }

@media (max-width: 1060px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .pc-annual { order: -1; }
}

/* ================= GET / CTA ================= */
.get { position: relative; padding: clamp(88px, 11vh, 150px) clamp(20px, 5vw, 72px) clamp(84px, 10vh, 130px); overflow: hidden; }
.get-media { position: absolute; inset: 0; }
.get-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
  opacity: 0.4;
  -webkit-mask-image: radial-gradient(80% 84% at 50% 45%, #000 30%, transparent 78%);
  mask-image: radial-gradient(80% 84% at 50% 45%, #000 30%, transparent 78%);
  animation: getBreath 24s ease-in-out infinite alternate;
}
@keyframes getBreath {
  0%   { transform: scale(1.05) translate(0%, 0.5%); }
  50%  { transform: scale(1.1) translate(-0.7%, -0.5%); }
  100% { transform: scale(1.06) translate(0.6%, 0.4%); }
}
.get-embers { position: absolute; inset: 0; width: 100%; height: 100%; mix-blend-mode: screen; }
.get-inner { z-index: 1; }
.get-horizon {
  position: absolute; left: 50%; bottom: -40%; transform: translateX(-50%);
  width: 160vw; height: 80vh; border-radius: 50% 50% 0 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(245, 166, 35, 0.18), rgba(245, 166, 35, 0.04) 45%, transparent 70%);
  border-top: 1px solid rgba(245, 166, 35, 0.35);
}
.get-inner { position: relative; max-width: 1150px; margin: 0 auto; }
.get-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(30px, 5vw, 80px); align-items: center; }
.get-mark { width: auto; height: 64px; margin-bottom: 22px; border-radius: 15px; box-shadow: 0 0 0 1px rgba(245, 166, 35, 0.4), 0 0 26px rgba(245, 166, 35, 0.25); }
.get h2 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 20px; }
.get p { color: #d3daea; max-width: 470px; text-shadow: 0 1px 4px rgba(3, 4, 9, 0.9), 0 2px 22px rgba(3, 4, 9, 0.85); }
.get-actions { margin-top: 30px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.play-badge-link { display: inline-block; margin-top: 24px; }
.get-reassure { margin-top: 18px; font-size: 1.02rem; }
.play-badge { height: 52px; width: auto; display: block; transition: transform 0.25s var(--ease-out), filter 0.25s; }
.play-badge-link:hover .play-badge { transform: translateY(-2px); filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.6)); }
.get-reassure { margin-top: 26px; font-size: 0.98rem; color: #c9d2e6; max-width: 470px; text-shadow: 0 1px 4px rgba(3, 4, 9, 0.9); }
.get-reassure b { color: var(--gold-hi); font-weight: 700; }
.get-fine { font-size: 12px; letter-spacing: 0.1em; color: #9aa6c4; margin-top: 18px; }
.get-phone { max-width: 360px; justify-self: center; }
.get-phone img { width: 100%; filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 60px rgba(245, 166, 35, 0.14)); }

/* ================= FOOTER ================= */
.footer { border-top: 1px solid var(--line); padding: 44px clamp(20px, 5vw, 72px); position: relative; background: var(--void); }
.footer-inner { max-width: 1240px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.footer-brand { font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; color: #fff; }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-note { flex: 1; min-width: 260px; font-size: 0.9rem; line-height: 1.6; color: var(--ink-faint); }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; letter-spacing: 0.08em; color: var(--ink-dim); }
.footer-links a:hover { color: var(--gold); }

/* ================= REVEAL HELPERS ================= */
[data-fade] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
[data-fade].is-in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1060px) {
  .hero-grid { grid-template-columns: 1fr; gap: 54px; }
  .hero { padding-top: 120px; justify-content: flex-start; }
  .hero-device-zone { padding: 0 40px; }
  .chip-roi { left: 0; } .chip-max { left: 0; } .chip-net { right: 0; } .chip-risk { right: 0; }
  .scene-inner, .uk-inner, .get-split { grid-template-columns: 1fr; }
  .scene-rev .scene-copy { order: 1; }
  .scene-rev .scene-shot { order: 2; }
  .ops-points { grid-template-columns: 1fr; }
  .panel-settings { max-width: 340px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding-bottom: 120px; padding-top: 104px; }
  .hero-title { font-size: clamp(2.7rem, 12.5vw, 3.6rem); }
  .hero-sub { font-size: 1rem; }
  .hero-device-zone { padding: 0 8px; margin-top: 6px; }
  .frame { width: min(252px, 66vw); }
  .chip { padding: 8px 12px; border-radius: 12px; }
  .chip b { font-size: 1.05rem; }
  .chip-risk b { font-size: 0.8rem; }
  .chip-roi { top: 8%; }
  .chip-net { top: 30%; }
  .chip-max { bottom: 32%; }
  .chip-risk { bottom: 10%; }
  .scan-telemetry { left: 0; top: 10%; }
  .sb-digits { display: none; }
  .scan-telemetry span { font-size: 8px; }
  .ops-stage { flex-direction: column; align-items: center; gap: 38px; }
  .ops-phone, .op-mid { width: min(302px, 80vw); }
  .op-left, .op-right { transform: rotate(-3deg); }
  .op-right { transform: rotate(3deg); }
  .uk-pound { opacity: 0.45; }
  .get-phone { max-width: 270px; }
  .stress-punch { font-size: 1.05rem; }
  .noise-title { font-size: clamp(1.6rem, 7.4vw, 2.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-fade] { opacity: 1; transform: none; }
  .grain { display: none; }
}
