/* ============================================================
   AEROPHICS — styles
   ============================================================ */
:root {
  --navy-950: #040b16;
  --navy-900: #06101f;
  --navy-800: #0b1d36;
  --navy-700: #13294a;
  --line: rgba(160, 190, 230, .14);
  --ink: #eef3fa;
  --muted: #9aabc3;
  --accent: #ffd21f;
  --accent-ink: #1a1400;
  --thermal: #ff6a1a;
  --cyan: #35e0c8;
  --radius: 14px;
  --font-head: "Montserrat", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, Consolas, monospace;
  --pad: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--navy-900); color: var(--ink);
  font: 400 17px/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.08; margin: 0; letter-spacing: -.01em; }
p { margin: 0; }
.container { width: min(1200px, 100%); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font: 600 12px/1.2 var(--font-mono); letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.eyebrow--thermal { color: var(--thermal); }
.eyebrow--map { color: var(--cyan); }
.accent-text { color: var(--accent); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: #d5deea; max-width: 34em; }
.wordmark { display: inline-flex; align-items: flex-end; font: 800 22px/1 var(--font-head); letter-spacing: .16em; white-space: nowrap; }
/* the logo "A" stands in for the first letter of AEROPHICS */
.wordmark__a { height: 1.2em; width: auto; margin-right: .05em; margin-bottom: -.02em; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  font: 700 15px/1 var(--font-head); letter-spacing: .02em; text-decoration: none; cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 30px -10px rgba(255, 210, 31, .6); }
.btn--accent:hover { box-shadow: 0 16px 40px -12px rgba(255, 210, 31, .8); }
.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; backdrop-filter: blur(6px); background: rgba(255,255,255,.06); }
.btn--ghost:hover { background: rgba(255,255,255,.14); }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--block { width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ---------- Intro title ---------- */
.intro {
  position: fixed; inset: 0; z-index: 100; background: var(--navy-950);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
}
.js .intro.is-playing { display: flex; }
.intro__card { filter: drop-shadow(0 40px 60px rgba(0,0,0,.6)); }
.intro__logo { width: min(440px, 76vw, 56vh); height: auto; }
.intro__line { width: min(420px, 60vw); height: 2px; background: var(--accent); transform-origin: left; }
.intro__sub { font: 500 12px/1 var(--font-mono); letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad); transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(6, 16, 31, .78); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding-top: 12px; padding-bottom: 12px; border-color: var(--line); }
.nav__brand { display: flex; align-items: center; text-decoration: none; }
.brand-img { width: auto; display: block; }
.brand-img--nav { height: 30px; }
.brand-img--footer { height: 46px; }
@media (max-width: 760px) { .brand-img--nav { height: 24px; } }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a:not(.btn) { text-decoration: none; font: 600 14px/1 var(--font-body); color: #dbe4f0; position: relative; }
.nav__links a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .25s; transform-origin: left; }
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; }
.nav__toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: #fff; transition: transform .3s, top .3s; }
.nav__toggle span:first-child { top: 17px; }
.nav__toggle span:last-child { top: 26px; }
.nav.is-open .nav__toggle span:first-child { top: 21px; transform: rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- ACT I: Flight ---------- */
.flight { position: relative; height: 320vh; }
.flight__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.media { position: absolute; inset: 0; background: #0d2016; transform-origin: 50% 60%; }
.media video, .media canvas { width: 100%; height: 100%; object-fit: cover; }
.shade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4,11,22,.55) 0%, rgba(4,11,22,0) 30%, rgba(4,11,22,0) 55%, rgba(4,11,22,.8) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(0,0,0,.45) 100%);
}

.hud { position: absolute; inset: clamp(76px, 10vh, 100px) clamp(14px, 3vw, 40px) clamp(20px, 4vh, 40px); pointer-events: none; font: 500 12px/1 var(--font-mono); letter-spacing: .12em; color: rgba(255,255,255,.82); text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.hud__corner { position: absolute; width: 28px; height: 28px; border: 2px solid rgba(255,255,255,.7); }
.hud__corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud__corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud__corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hud__corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.hud__row { position: absolute; left: 44px; right: 44px; display: flex; justify-content: space-between; gap: 16px; }
.hud__row--top { top: 8px; }
.hud__row--bottom { bottom: 8px; }
.hud__row b { color: #fff; font-weight: 500; }
.hud__rec { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #ff3b30; margin-right: 8px; animation: blink 1.2s steps(2, start) infinite; vertical-align: 1px; }
@keyframes blink { to { visibility: hidden; } }
.hud__reticle { position: absolute; left: 50%; top: 50%; width: 46px; height: 46px; margin: -23px 0 0 -23px; opacity: .45; }
.hud__reticle::before, .hud__reticle::after { content: ""; position: absolute; background: #fff; }
.hud__reticle::before { left: 50%; top: 0; bottom: 0; width: 1px; box-shadow: 0 0 0 0 transparent; }
.hud__reticle::after { top: 50%; left: 0; right: 0; height: 1px; }
.hud__bug { position: absolute; right: 44px; bottom: 34px; height: 28px; width: auto; opacity: .55; }
@media (max-width: 760px) { .hud__bug { right: 34px; bottom: 30px; height: 20px; } }

.beats { position: absolute; inset: 0; display: grid; place-items: center; padding: 0 var(--pad); }
.beat { grid-area: 1 / 1; text-align: center; display: flex; flex-direction: column; align-items: center; max-width: 900px; }
.beat .lead { margin-top: 22px; }
.hero-title { font-size: clamp(44px, 8.4vw, 118px); font-weight: 800; letter-spacing: -.025em; text-shadow: 0 4px 40px rgba(0,0,0,.35); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 34px; }
.beat__alt { font: 500 14px/1 var(--font-mono); letter-spacing: .3em; color: var(--accent); margin-bottom: 20px; }
.beat__title { font-size: clamp(36px, 6vw, 84px); font-weight: 800; letter-spacing: -.02em; text-shadow: 0 4px 40px rgba(0,0,0,.4); }
.js .beat--2, .js .beat--3 { opacity: 0; visibility: hidden; }

.scroll-cue { position: absolute; left: 50%; bottom: clamp(60px, 9vh, 90px); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 12px; font: 500 11px/1 var(--font-mono); letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.scroll-cue span { width: 1.5px; height: 44px; background: linear-gradient(transparent, #fff); animation: cue 1.8s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- ACT II: Lens ---------- */
.lens { position: relative; height: 420vh; background: var(--navy-950); }
.lens__stage { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.lens__layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.lens__clip { position: absolute; inset: 0; clip-path: inset(0 100% 0 0); }
.lens__layer--thermal { filter: url(#ironbow); }
.lens__clip--thermal::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(12,3,34,.92) 0%, rgba(12,3,34,.55) 22%, rgba(12,3,34,0) 45%); } /* sky reads cold in thermal */
.lens__layer--map { filter: url(#survey) brightness(.85); }
.lens__edge { position: absolute; top: 0; bottom: 0; left: 0; width: 2px; background: var(--thermal); box-shadow: 0 0 24px 4px rgba(255,106,26,.7); opacity: 0; pointer-events: none; }
.lens__edge--map { background: var(--cyan); box-shadow: 0 0 24px 4px rgba(53,224,200,.7); }
.lens__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(4,11,22,.85) 0%, rgba(4,11,22,.35) 45%, rgba(4,11,22,0) 70%); }

.thermal-ui .spot { position: absolute; font: 500 13px/1 var(--font-mono); color: #fff; display: flex; align-items: center; gap: 8px; text-shadow: 0 1px 3px #000; }
.thermal-ui .spot i { width: 26px; height: 26px; border: 2px solid #fff; border-radius: 50%; position: relative; }
.thermal-ui .spot i::after { content: ""; position: absolute; inset: 9px; background: #fff; border-radius: 50%; }
.thermal-ui .spot--hot i { border-color: #fff36b; }
.thermal-ui .spot--cold i { border-color: #7fb4ff; }
.thermal-scale { position: absolute; right: clamp(16px, 3vw, 40px); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font: 500 11px/1 var(--font-mono); color: #fff; }
.thermal-scale b { width: 12px; height: 180px; border-radius: 6px; background: linear-gradient(#fff9d9, #ffd21f, #ff6a1a, #d11c3b, #8c0f8f, #2a0a5e, #05020f); border: 1px solid rgba(255,255,255,.4); }

.map-ui { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-ui .gcp rect { fill: none; stroke: var(--cyan); stroke-width: 2.5; }
.map-ui .gcp path { stroke: var(--cyan); stroke-width: 1.5; }
.map-ui .gcp text, .map-ui .map-area { font: 500 18px var(--font-mono); fill: #fff; letter-spacing: .12em; }
.map-ui .map-area { font-size: 22px; fill: var(--accent); paint-order: stroke; stroke: rgba(0,0,0,.6); stroke-width: 4px; }

.lens__modes { position: absolute; top: clamp(84px, 12vh, 110px); right: var(--pad); display: flex; gap: 6px; padding: 5px; border-radius: 999px; background: rgba(4,11,22,.6); backdrop-filter: blur(10px); border: 1px solid var(--line); font: 500 11px/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; }
.lens__modes span { padding: 9px 14px; border-radius: 999px; color: var(--muted); transition: background .3s, color .3s; }
.lens__modes span.is-on { background: #fff; color: var(--navy-900); }
.lens__modes span[data-mode="1"].is-on { background: var(--thermal); color: #fff; }
.lens__modes span[data-mode="2"].is-on { background: var(--cyan); color: var(--navy-900); }

.lens__captions { position: absolute; left: var(--pad); top: 50%; transform: translateY(-50%); width: min(470px, calc(100% - 2 * var(--pad))); display: grid; }
.cap { grid-area: 1 / 1; }
.cap h2 { font-size: clamp(34px, 4.4vw, 60px); font-weight: 800; margin-bottom: 18px; }
.cap p:not(.eyebrow) { color: #d0dae8; font-size: 18px; }
.js .cap--1, .js .cap--2 { opacity: 0; visibility: hidden; }

/* ---------- Generic sections ---------- */
.section { padding: clamp(90px, 14vh, 160px) 0; position: relative; }
.section__head { max-width: 720px; margin-bottom: clamp(44px, 7vh, 72px); }
.section__title { font-size: clamp(34px, 4.8vw, 62px); font-weight: 800; }
.section__lead { margin-top: 20px; color: var(--muted); font-size: 19px; max-width: 38em; }

/* ---------- Services ---------- */
.services { background: radial-gradient(1200px 600px at 80% 0%, rgba(53,224,200,.07), transparent 60%), var(--navy-900); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  --mx: 50%; --my: 50%;
  position: relative; display: flex; flex-direction: column; gap: 12px; padding: 30px 28px 26px;
  border-radius: var(--radius); background: linear-gradient(180deg, rgba(19,41,74,.65), rgba(11,29,54,.55));
  border: 1px solid var(--line); text-decoration: none; overflow: hidden; isolation: isolate;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s;
}
.card::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .35s; background: radial-gradient(360px circle at var(--mx) var(--my), rgba(255,210,31,.14), transparent 60%); }
.card:hover { transform: translateY(-6px); border-color: rgba(255,210,31,.45); }
.card:hover::before { opacity: 1; }
.card__icon { width: 40px; height: 40px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 6px; }
.card h3 { font-size: 21px; font-weight: 700; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__more { margin-top: auto; padding-top: 8px; font: 600 14px var(--font-body); color: var(--accent); opacity: .85; }
.card__tag { position: absolute; top: 22px; right: 22px; font: 500 10.5px/1 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; padding: 6px 9px; border-radius: 6px; border: 1px solid rgba(255,255,255,.25); color: #cfd8e5; }
.tag--thermal { border-color: rgba(255,106,26,.6); color: #ffab7a; }
.tag--map { border-color: rgba(53,224,200,.6); color: #8ff0e2; }

/* ---------- Process ---------- */
.process { background: var(--navy-950); overflow: hidden; }
.flightpath { position: relative; }
.flightpath__svg { width: 100%; height: 220px; overflow: visible; }
#fpTrack { stroke: rgba(255,255,255,.14); stroke-width: 2; stroke-dasharray: 2 10; stroke-linecap: round; }
#fpLine { stroke: var(--accent); stroke-width: 2.5; }
.flightpath__drone { position: absolute; left: 0; top: 0; width: 56px; height: 56px; fill: none; stroke: #fff; stroke-width: 2.5; }
.flightpath__drone .body { fill: var(--accent); stroke: none; }
.steps { list-style: none; margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step__num { display: block; font: 500 13px/1 var(--font-mono); color: var(--accent); letter-spacing: .2em; margin-bottom: 14px; }
.step h3 { font-size: 24px; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); }
.about__grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about__badge { display: grid; place-items: center; }
.about__badge img { width: min(220px, 60vw); filter: drop-shadow(0 30px 60px rgba(0,0,0,.5)); }
.badge-fallback { width: min(300px, 70vw); aspect-ratio: 1; border-radius: 50%; display: grid; place-content: center; text-align: center; gap: 10px; border: 3px dashed rgba(255,255,255,.3); background: radial-gradient(circle, var(--navy-700), var(--navy-800)); }
.badge-fallback b { font: 800 56px/1 var(--font-head); letter-spacing: .1em; }
.badge-fallback span { font: 500 12px/1.5 var(--font-mono); letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.checks { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.checks li { position: relative; padding-left: 36px; font-size: 17px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 50%; background: rgba(255,210,31,.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd21f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/14px no-repeat; }

/* ---------- Quote ---------- */
.quote { background: radial-gradient(900px 500px at 10% 100%, rgba(255,210,31,.08), transparent 60%), var(--navy-900); }
.quote__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 32px 0 0; display: grid; gap: 12px; }
.contact-list a { color: var(--accent); text-decoration: none; font-weight: 600; }
.contact-list span { color: var(--muted); font: 500 12px var(--font-mono); letter-spacing: .15em; text-transform: uppercase; display: block; }
.form { background: rgba(19,41,74,.5); border: 1px solid var(--line); border-radius: 20px; padding: clamp(22px, 3vw, 36px); display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 8px; font: 600 13px var(--font-body); color: #cfd8e5; }
.form label em { font-style: normal; color: var(--muted); font-weight: 400; }
.form input, .form select, .form textarea {
  width: 100%; font: 400 16px var(--font-body); color: var(--ink);
  background: rgba(4,11,22,.55); border: 1px solid rgba(160,190,230,.22); border-radius: 10px; padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s; color-scheme: dark;
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,210,31,.18); }
.form .is-invalid { border-color: #ff6b6b; }
.form__status { min-height: 1.4em; font-size: 15px; color: var(--muted); text-align: center; }
.form__status.ok { color: #7ee2a8; }
.form__status.err { color: #ff8a8a; }
.hp { position: absolute; left: -9999px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 0; background: var(--navy-950); }
.footer__grid { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 24px; }
.footer__tag { color: var(--muted); font-size: 14px; margin-top: 8px; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__links a { color: #cfd8e5; text-decoration: none; font-size: 14px; }
.footer__links a:hover { color: var(--accent); }
.footer__legal { color: var(--muted); font-size: 13px; }

/* ---------- Tablet ---------- */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .quote__grid, .about__grid { grid-template-columns: 1fr; }
  .about__badge { order: -1; }
}

/* ---------- Mobile ---------- */
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__toggle { display: block; z-index: 2; }
  .nav__links {
    position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(4,11,22,.97); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s;
  }
  .nav__links a:not(.btn) { font-size: 22px; font-family: var(--font-head); }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
  .flight { height: 260vh; }
  .hud__row { left: 36px; right: 36px; font-size: 10px; }
  .hud__row--top > span:nth-child(2), .hud__row--bottom > span:nth-child(3) { display: none; }
  .hud__corner { width: 20px; height: 20px; }
  .cta-row { flex-direction: column; width: 100%; max-width: 320px; }
  .lens { height: 360vh; }
  .lens__shade { background: linear-gradient(0deg, rgba(4,11,22,.92) 0%, rgba(4,11,22,.5) 45%, rgba(4,11,22,0) 70%); }
  .lens__captions { top: auto; bottom: 7vh; transform: none; }
  .cap h2 { font-size: 32px; margin-bottom: 12px; }
  .cap p:not(.eyebrow) { font-size: 16px; }
  .lens__modes { left: 50%; right: auto; transform: translateX(-50%); top: 80px; }
  .lens__modes span { padding: 8px 11px; font-size: 10px; }
  .thermal-scale { top: 36%; }
  .thermal-scale b { height: 110px; }
  .cards { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 24px 22px; }
  .flightpath__svg, .flightpath__drone { display: none; }
  .steps { grid-template-columns: 1fr; gap: 0; margin: 0; border-left: 2px dashed rgba(255,255,255,.18); padding-left: 26px; }
  .step { position: relative; padding-bottom: 34px; }
  .step::before { content: ""; position: absolute; left: -34px; top: 0; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--navy-950); }
  .form__row { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion: calm, static version ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flight, .lens { height: auto; }
  .flight__stage, .lens__stage { position: relative; }
  .js .beat--2, .js .beat--3 { display: none; }
  .lens__clip--thermal { clip-path: inset(0 0 0 33.3%) !important; }
  .lens__clip--map { clip-path: inset(0 0 0 66.6%) !important; }
  .scroll-cue span, .hud__rec { animation: none; }
}
