/* PatrolWave | patrolwave.com
   Pure black. One cold light. Grayscale UI; color lives only inside the rendered imagery. */

:root {
  --bg: #000;
  --text: #ededee;
  --text-2: rgba(237, 237, 238, .62);
  --text-3: rgba(237, 237, 238, .5);
  --text-4: rgba(237, 237, 238, .42);
  --line: rgba(255, 255, 255, .13);
  --line-2: rgba(255, 255, 255, .24);
  --gridline: rgba(255, 255, 255, .03);
  --redact: #ededee;
  --lit: #fff;

  --container: 1180px;
  --pad: 48px;
  --gutter: 24px;
  --nav-h: 64px;
  --section-y: clamp(80px, 14vh, 170px);
  /* Scroll length of the Products → PatrolWave AI dissolve (both pinned). */
  --xf: 50vh;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-reveal: cubic-bezier(.22, 1, .36, 1);
  --ease-slam: cubic-bezier(.7, 0, .2, 1);
  --dur-reveal: .82s;
  --stagger: .14s;

  --f-display: "Inter Tight", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-body: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --f-mono: "Space Grotesk", "Inter", ui-sans-serif, system-ui, sans-serif;

  --em-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 443.21 443.21'%3E%3Cpath d='M321.65,121.48L200.17,0l-64.22.03C60.86.05,0,60.94,0,136.03v189.4l121.56,117.78V163.97c0-23.43,18.99-42.42,42.41-42.43l157.68-.06Z'/%3E%3Cpath d='M321.72,121.55h121.48v-46.96C443.2,33.41,409.82.03,368.65.03h-46.96v121.48l-.03-.03v157.8c0,23.44-19.01,42.44-42.45,42.43l-157.65-.06,121.48,121.56h64.17c75.11,0,136.01-60.89,136.01-136.01v-64.25l-121.49-121.41Z'/%3E%3C/svg%3E");
}

@media (max-width: 719px) {
  :root { --pad: 20px; --gutter: 16px; }
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  background: var(--bg);
  color: var(--text);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.55 var(--f-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-kerning: normal;
}

main { display: block; overflow-x: clip; }
main:focus { outline: none; }

h1, h2, h3, p, ol, ul { margin: 0; }
a { color: inherit; }
img, svg, canvas { display: block; }
button { font: inherit; color: inherit; }

::selection { background: #ededee; color: #000; }

:focus-visible {
  outline: 1px solid #ededee;
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.defs { position: absolute; width: 0; height: 0; overflow: hidden; pointer-events: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: max(var(--pad), env(safe-area-inset-left, 0px)) max(var(--pad), env(safe-area-inset-right, 0px));
}

section { position: relative; scroll-margin-top: 64px; }

.display {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: var(--text);
  text-shadow: 0 2px 28px rgba(0, 0, 0, .4);
  text-wrap: balance;
}
.display .line { display: block; }

.h2 {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--text);
  text-wrap: balance;
}

.kicker {
  display: flex;
  align-items: baseline;
  gap: 14px;
  line-height: 1.2;
}
.kicker__i {
  font: 500 11px/1 var(--f-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  color: var(--text-4);
}
.kicker__l {
  font: 500 12.5px/1.2 var(--f-body);
  letter-spacing: .02em;
  color: var(--text-3);
}

.actions { display: flex; flex-wrap: wrap; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 11px 16px 11px 18px;
  border: 0;
  border-radius: 2px;
  font: 500 .9rem/1.2 var(--f-body);
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.btn svg { width: 10px; height: 10px; flex: none; transition: transform .3s var(--ease); }
.btn--solid { background: #ededee; color: #0a0a0b; }
.btn--solid:hover { background: #fff; }
.btn--solid:hover svg { transform: translateX(2px); }
.btn--solid:focus-visible { box-shadow: 0 0 0 3px #000; }
.btn--ghost {
  background: rgba(255, 255, 255, .15);
  color: #ededee;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .22); }
.btn--ghost:hover svg { transform: translate(2px, -2px); }
.btn--ghost.btn--down:hover svg { transform: translateY(2px); }
.btn[disabled] { opacity: .62; cursor: progress; }
.btn[disabled]:hover { background: #ededee; }
.btn[disabled]:hover svg { transform: none; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 7px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font: 500 10.5px/1.35 var(--f-mono);
  letter-spacing: .06em;
  color: var(--text-2);
  white-space: nowrap;
  text-decoration: none;
}

.skip {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  transition: transform .2s var(--ease);
}
.skip:focus, .skip:focus-visible { transform: none; }

.js .reveal {
  opacity: 0;
  filter: blur(11px);
  transform: translate3d(0, 18%, 0);
  transition:
    opacity var(--dur-reveal) var(--ease-reveal),
    filter var(--dur-reveal) var(--ease-reveal),
    transform var(--dur-reveal) var(--ease-reveal);
  transition-delay: calc(var(--r, 0) * var(--stagger));
}
.js .is-in .reveal,
.js .reveal.is-in,
.js .access.t1 .reveal[data-t="1"],
.js .access.t2 .reveal[data-t="2"],
.js .access.t3 .reveal[data-t="3"] {
  opacity: 1;
  filter: none;
  transform: none;
}

/* Keyboard focus inside a block that hasn't revealed yet shows it at once. */
.js [data-reveal]:focus-within .reveal,
.js [data-reveal]:focus-within.reveal {
  opacity: 1;
  filter: none;
  transform: none;
  transition-delay: 0s;
}

.js .access .reveal[data-t] {
  transition-duration: .45s, .45s, .45s;
  transition-delay: 0s;
}
.js .access.t1 .reveal[data-t="1"],
.js .access.t2 .reveal[data-t="2"],
.js .access.t3 .reveal[data-t="3"] {
  transition-duration: var(--dur-reveal), var(--dur-reveal), var(--dur-reveal);
  transition-delay: calc(var(--r, 0) * var(--stagger));
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  pointer-events: none;
}
.nav__bands {
  position: absolute;
  inset: 0 0 auto 0;
  height: 96px;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.nav__bands::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .66) 0%, rgba(0, 0, 0, .3) 55%, rgba(0, 0, 0, 0) 100%);
}
.nav__bands i { position: absolute; inset: 0; display: none; }
.nav.is-past .nav__bands { opacity: 1; }

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  @media (hover: hover) and (pointer: fine) {
    .nav__bands { height: 104px; }
    .nav__bands::before { background: linear-gradient(180deg, rgba(0, 0, 0, .86) 0, rgba(0, 0, 0, .62) 48%, rgba(0, 0, 0, 0) 100%); }
    .nav__bands i { display: block; }
    .nav__bands i:nth-child(1) { -webkit-backdrop-filter: blur(1px); backdrop-filter: blur(1px); -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 100%); mask-image: linear-gradient(to bottom, #000 0%, transparent 100%); }
    .nav__bands i:nth-child(2) { -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 75%); mask-image: linear-gradient(to bottom, #000 0%, transparent 75%); }
    .nav__bands i:nth-child(3) { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 50%); mask-image: linear-gradient(to bottom, #000 0%, transparent 50%); }
    .nav__bands i:nth-child(4) { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 25%); mask-image: linear-gradient(to bottom, #000 0%, transparent 25%); }
  }
}

.nav__inner {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  --wm-h: 15px;
  --wm-s: 1.2;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 40px;
  color: var(--text);
  text-decoration: none;
  pointer-events: auto;
}
.brand__wm {
  position: relative;
  display: block;
  flex: none;
  height: var(--wm-h);
  width: calc(var(--wm-h) * 8.6370);
  clip-path: inset(0 0 0 0);
  transform-origin: left center;
  transition: clip-path .52s var(--ease), transform .52s var(--ease);
}
.brand__img { width: 100%; height: 100%; }
.brand__text {
  display: none;
  font: 500 15px/var(--wm-h) var(--f-body);
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand.is-text .brand__img { display: none; }
.brand.is-text .brand__text { display: block; }
.brand.is-text .brand__wm { width: auto; clip-path: none; }

/* Retracted: the wordmark clips to its emblem (185.81 / 1604.84 of the width) and stays white, no chip. */
.nav.is-retracted .brand:not(.is-text) {
  width: calc(var(--wm-h) * var(--wm-s) + 28px);
  min-width: 44px;
  margin-left: -14px;
  padding-left: 14px;
}
.nav.is-retracted .brand:not(.is-text) .brand__wm {
  clip-path: inset(0 88.42% 0 0);
  transform: scale(var(--wm-s));
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  pointer-events: auto;
}
.nav__links a {
  display: inline-block;
  padding: 8px 0;
  font: 400 13px/1.2 var(--f-body);
  letter-spacing: .02em;
  color: var(--text-2);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.nav__links a:hover { color: var(--text); }
.nav__links .nav__cta { color: var(--text); }
.nav__links .nav__cta:hover { color: #fff; }

.js .nav__links li {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-3px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.js .nav.is-past .nav__links li {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
  transition-delay: calc(var(--i, 0) * 50ms);
}

.js .nav:focus-within .nav__links li { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.still .nav__links { display: none; }

@media (max-width: 719px) {
  .brand { --wm-h: 13px; --wm-s: 1.3; }
  .nav__links li:not(:last-child) { display: none; }
}

/* ---------- Media + posters ---------- */
.media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}
.media__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .7s var(--ease);
}
.media.is-live .media__canvas { opacity: 1; }
.media.is-fallback .media__canvas { display: none; }
.media.is-live .poster { visibility: hidden; transition: visibility 0s linear .8s; }

.shade { position: absolute; inset: 0; pointer-events: none; }
.shade--hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0, rgba(0, 0, 0, .42) 28%, rgba(0, 0, 0, .12) 52%, transparent 78%),
    linear-gradient(180deg, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, .08) 22%, rgba(0, 0, 0, .15) 70%, rgba(0, 0, 0, .85) 100%);
}

.poster {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}
.poster__sky { position: absolute; inset: 0; }
.poster__stage {
  position: absolute;
  width: var(--sz);
  height: var(--sz);
  left: calc(var(--cx) - var(--sz) / 2);
  top: calc(var(--hy) - var(--sz));
}
.poster__emblem {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: #030304;
  stroke: rgba(160, 178, 224, .28);
  stroke-width: 1.2px;
  stroke-linejoin: round;
}
.poster__halo {
  position: absolute;
  inset: 0;
  filter: blur(calc(var(--sz) * .035));
  opacity: .9;
}
.poster__halo::before {
  content: "";
  position: absolute;
  inset: -1.5%;
  background: radial-gradient(70% 70% at 50% 40%, rgba(176, 194, 240, .5), rgba(120, 142, 204, .22) 70%);
  -webkit-mask: var(--em-mask) center / 100% 100% no-repeat;
  mask: var(--em-mask) center / 100% 100% no-repeat;
}
.poster__horizon {
  position: absolute;
  left: 0; right: 0;
  top: var(--hy);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, transparent 36%, rgba(158, 178, 234, .1) 46%, rgba(190, 204, 240, .42) var(--cx), rgba(158, 178, 234, .08) 94%, transparent 100%);
  box-shadow: 0 0 18px 2px rgba(120, 142, 204, .16);
}

.poster--hero {
  --sz: min(58vh, 40vw);
  --cx: 62%;
  --hy: 75%;
}
@supports (height: 1svh) {
  .poster--hero { --sz: min(58svh, 40vw); }
}
.poster--hero .poster__sky {
  background:
    radial-gradient(calc(var(--sz) * .95) calc(var(--sz) * .62) at var(--cx) calc(var(--hy) - var(--sz) * .34), rgba(143, 163, 214, .2), rgba(143, 163, 214, .06) 55%, transparent 78%),
    radial-gradient(calc(var(--sz) * 1.9) calc(var(--sz) * .42) at var(--cx) var(--hy), rgba(52, 70, 122, .34), transparent 72%),
    radial-gradient(120% 60% at var(--cx) var(--hy), rgba(9, 24, 65, .6), transparent 70%),
    linear-gradient(180deg, #000 0%, #01030a 55%, #030713 var(--hy), #010205 100%);
}
.poster__reflect {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: scaleY(-1);
  transform-origin: 50% 0;
  fill: rgba(40, 54, 92, .18);
  stroke: rgba(160, 178, 224, .16);
  stroke-width: 1px;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 38%);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, transparent 38%);
  opacity: .7;
}
.poster--hero .poster__emblem {
  filter: drop-shadow(0 0 1px rgba(170, 188, 236, .35));
}

.poster__scan {
  position: absolute;
  inset: 0;
  overflow: hidden;
  -webkit-mask: var(--em-mask) center / 100% 100% no-repeat;
  mask: var(--em-mask) center / 100% 100% no-repeat;
  pointer-events: none;
}
.poster__scan i {
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(242, 244, 248, .55), #f2f4f8 50%, rgba(242, 244, 248, .55));
  box-shadow: 0 0 10px 1px rgba(242, 244, 248, .45);
  will-change: transform, opacity;
  transform: translate3d(0, calc(var(--sz) * -.6), 0);
}
.poster__scan i::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 2px;
  height: calc(var(--sz) * .2);
  background: linear-gradient(180deg, rgba(158, 178, 234, .14), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .js .poster__scan i { animation: scan-rise 9s linear infinite, scan-fade 9s linear infinite; }
  .js .hero.is-off .poster__scan i,
  .js .media.is-live .poster__scan i { animation-play-state: paused; }
}
.still .poster__scan i { animation: none !important; transform: translate3d(0, calc(var(--sz) * -.55), 0); opacity: 1; }
@keyframes scan-rise {
  0% { transform: translate3d(0, 0, 0); animation-timing-function: cubic-bezier(.37, 0, .63, 1); }
  62.2% { transform: translate3d(0, calc(var(--sz) * -1.02), 0); }
  100% { transform: translate3d(0, calc(var(--sz) * -1.02), 0); }
}
@keyframes scan-fade {
  0% { opacity: 0; }
  4% { opacity: 1; }
  58% { opacity: 1; }
  66% { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Hero ---------- */
.hero {
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 240px;
  background: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
  z-index: 1;
}
.hero__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding-bottom: clamp(28px, 7vh, 72px);
}
.hero__title { max-width: 12ch; }
.hero__sub {
  margin-top: 20px;
  max-width: 30ch;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: rgba(237, 237, 238, .82);
  text-wrap: balance;
}
.hero .actions { margin-top: 28px; }

.basebar {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin-top: clamp(56px, 9vh, 110px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.basebar__label {
  font: 500 12.5px/1.4 var(--f-body);
  letter-spacing: .02em;
  color: var(--text-3);
}
.basebar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  list-style: none;
  padding: 0;
  font: 400 13px/1.4 var(--f-body);
  letter-spacing: .01em;
  color: var(--text-2);
}
.basebar__list a {
  position: relative;
  color: var(--text-2);
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color .3s var(--ease);
}
.basebar__list a:hover { color: var(--text); text-decoration: underline; text-decoration-color: var(--line-2); }

/* ---------- 01 Brief ---------- */
.brief {
  min-height: 150vh;
  padding-block: var(--section-y);
  background: #000;
}
.brief__sticky {
  position: sticky;
  top: 22vh;
}
.statement {
  margin-top: 28px;
  max-width: 24ch;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem);
  line-height: 1.22;
  letter-spacing: -.027em;
  color: var(--text);
  text-wrap: pretty;
}
@media (min-width: 720px) and (max-width: 1023px) {
  .statement { max-width: 27ch; }
}
.js .statement .w {
  color: rgba(237, 237, 238, .38);
  transition: color .35s var(--ease);
}
.js .statement .w.is-lit { color: var(--lit); }
.js .statement .redact .w { color: var(--lit); }
.js .statement .redact:not(.is-clear) .w { color: transparent; transition: none; }

.redact { white-space: nowrap; }
.js .redact { position: relative; }
.js .redact::after {
  content: "";
  position: absolute;
  top: .12em; bottom: .08em;
  left: -.06em; right: -.06em;
  background: var(--redact);
  border-radius: 1px;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform .4s var(--ease-reveal);
}
.js .redact::before {
  content: "";
  position: absolute;
  top: .12em; bottom: .08em;
  right: -.06em;
  width: 1px;
  background: #ededee;
  opacity: 0;
}
.js .redact.is-clear::after {
  transform: scaleX(0);
  transition: transform .62s var(--ease-reveal) .06s;
}
.js .redact.is-clear::before { animation: caret .82s var(--ease) both; }
@keyframes caret {
  0% { opacity: 0; }
  12% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; }
}

/* ---------- 02 Signal ---------- */
.signal { height: 320vh; background: #000; }
.signal__sticky,
.products__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.shade--signal {
  background:
    linear-gradient(180deg, #000 0, transparent 160px, transparent calc(100% - 160px), #000 100%),
    linear-gradient(90deg, #000 0%, #000 26%, rgba(0, 0, 0, .78) 40%, transparent 60%);
}
.signal__content,
.products__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}
.signal__content > .container,
.products__content > .container { position: relative; }
.signal__col { max-width: 470px; }
.signal .h2 { margin-top: 20px; }

.steps {
  margin-top: 40px;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 22px 0;
  border-top: 1px solid var(--line);
  transition: border-color .45s var(--ease);
}
.step__i,
.prow__i {
  padding-top: .5em;
  font: 500 11px/1 var(--f-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  color: var(--text-4);
  transition: color .45s var(--ease);
}
.step__t {
  font: 400 1.3rem/1.2 var(--f-display);
  letter-spacing: -.015em;
  color: var(--text);
  transition: color .45s var(--ease);
}
.step__b { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .45s var(--ease); }
.step__b p {
  min-height: 0;
  overflow: hidden;
  padding-top: 8px;
  max-width: 34ch;
  font: 400 15px/1.55 var(--f-body);
  color: var(--text-2);
  transition: color .45s var(--ease);
}
.step__fill {
  position: absolute;
  left: 0; right: 0;
  top: -1px;
  height: 1px;
  background: #ededee;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 1;
}
.js .step__t { color: var(--text-3); }
.js .step__b p { color: var(--text-3); }
.js .step.is-active { border-top-color: var(--line-2); }
.js .step.is-active .step__t { color: var(--text); }
.js .step.is-active .step__b p { color: var(--text-2); }
.js .step.is-active .step__i { color: var(--text-3); }
.js .step.is-done .step__fill,
.js .prow.is-done .step__fill { transform: scaleX(1); opacity: .35; }

.poster--signal {
  --sz: min(64vh, 42vw);
  --cx: 71%;
  --hy: calc(50% + var(--sz) / 2 + var(--nav-h) / 2);
  --k: 0;
}
@supports (height: 1svh) { .poster--signal { --sz: min(64svh, 42vw); } }
.poster--signal .poster__sky {
  background: radial-gradient(calc(var(--sz) * 1.1) calc(var(--sz) * .9) at var(--cx) calc(var(--hy) - var(--sz) / 2), rgba(9, 24, 65, .42), transparent 72%);
}
.poster--signal[data-s="1"] { --k: .42; }
.poster--signal[data-s="2"] { --k: .8; }
.poster--signal[data-s="3"] { --k: 1; }
.sig {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.sig__frags { fill: rgba(237, 237, 238, .62); transition: opacity .9s var(--ease); }
.sig__frags g {
  transform: translate(calc(var(--dx) * var(--k) * 1px), calc(var(--dy) * var(--k) * 1px));
  transition: transform 1.5s var(--ease-reveal) var(--d, 0s);
}
.sig__links {
  stroke: rgba(237, 237, 238, .11);
  stroke-width: 1px;
  fill: none;
  opacity: 0;
  transition: opacity .7s var(--ease);
}
.poster--signal[data-s="2"] .sig__links { opacity: 1; }
.poster--signal[data-s="3"] .sig__frags { opacity: 0; }

/* Final poster state: four hubs joined by curved links, satellites around them. */
.sig__net { opacity: .85; }
.sig__net-l { fill: none; stroke: rgba(237, 237, 238, .1); stroke-width: 1px; stroke-linecap: round; }
.sig__net-l--hub { stroke: rgba(206, 218, 248, .24); }
.sig__net-n { fill: rgba(237, 237, 238, .86); }
.js .sig__net {
  opacity: 0;
  transform: scale(.97);
  transform-box: view-box;
  transform-origin: 221.6px 221.6px;
  transition: opacity 1s var(--ease) .2s, transform 1.6s var(--ease-reveal) .1s;
}
.js .sig__net-l { opacity: 0; transition: opacity 1.2s var(--ease) .1s; }
.js .poster--signal[data-s="3"] .sig__net { opacity: 1; transform: none; }
.js .poster--signal[data-s="3"] .sig__net-l { opacity: 1; transition-delay: .7s; }

/* ---------- 03 Products ---------- */
.products { --ph: 300vh; height: var(--ph); background: #000; }
/* The pin holds the last product for --xf more scroll while the finale dissolves in over it. */
.js .products { height: calc(var(--ph) + var(--xf)); isolation: isolate; }
.pmedia {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 62%;
  overflow: hidden;
  background: #000;
}
.pmedia__layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s var(--ease);
}
.pmedia__layer.is-active { opacity: 1; }
.pmedia__inner {
  position: absolute;
  inset: 0;
  transform: scale(1.06);
  will-change: transform;
}
.pmedia__pic, .pmedia__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.pmedia__img { object-fit: cover; object-position: 50% 50%; }
/* One shared cold grade so the three stills read as a set in the site's navy. */
.pmedia__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b1a46;
  mix-blend-mode: soft-light;
  opacity: .35;
  pointer-events: none;
}
.shade--products {
  z-index: 1;
  background:
    linear-gradient(180deg, #000 0, transparent 160px, transparent calc(100% - 160px), #000 100%),
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .8) 16%, rgba(0, 0, 0, .3) 42%, transparent 66%);
}

/* Procedural placeholder: black, a soft cold navy glow, a very faint grid. */
.ph {
  --gx: 60%;
  --gy: 48%;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(26% 24% at var(--gx) var(--gy), rgba(158, 178, 234, .09), transparent 72%),
    radial-gradient(72% 64% at var(--gx) var(--gy), rgba(9, 24, 65, .92), rgba(9, 24, 65, .32) 46%, transparent 76%),
    #000;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: calc(50% - 28px) calc(50% - 28px);
  -webkit-mask-image: radial-gradient(56% 54% at var(--gx) var(--gy), #000, transparent 82%);
  mask-image: radial-gradient(56% 54% at var(--gx) var(--gy), #000, transparent 82%);
}
.ph::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: calc(var(--gy) + 18%);
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(158, 178, 234, .12) var(--gx), transparent 96%);
}
.ph--2 { --gx: 46%; --gy: 56%; }
.ph--3 { --gx: 68%; --gy: 40%; }

.products__col { max-width: 480px; }
.products .h2 { margin-top: 20px; }
.products__sub {
  margin-top: 14px;
  font: 400 16px/1.5 var(--f-body);
  color: var(--text-2);
}
.prows {
  margin-top: 32px;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid var(--line);
}
.prow {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 18px 0;
  border-top: 1px solid var(--line);
  transition: border-color .45s var(--ease);
}
.prow:focus { outline: none; }
.prow__h {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 16px;
}
.prow__t {
  font: 400 1.3rem/1.2 var(--f-display);
  letter-spacing: -.015em;
  color: var(--text);
  transition: color .45s var(--ease);
}
.prow__cat {
  font: 400 13px/1.3 var(--f-body);
  color: var(--text-3);
}
.prow__b { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .55s var(--ease); }
.prow__bi { min-height: 0; overflow: hidden; }
.prow__lead {
  padding-top: 14px;
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
}
.prow__desc {
  margin-top: 14px;
  max-width: 40ch;
  font: 400 15px/1.55 var(--f-body);
  color: var(--text-2);
  text-wrap: pretty;
}
.prow__note {
  margin-top: 10px;
  max-width: 50ch;
  font: 400 12px/1.5 var(--f-body);
  color: var(--text-3);
}
.prow__chip { margin-top: 16px; padding-bottom: 2px; }

.js .prow__t { color: var(--text-3); }
.js .prow.is-active { border-top-color: var(--line-2); }
.js .prow.is-active .prow__t { color: var(--text); }
.js .prow.is-active .prow__i { color: var(--text-3); }
.js .prow__b { grid-template-rows: 0fr; }
.js .prow.is-active .prow__b { grid-template-rows: 1fr; }
.js .prow__bi { opacity: 0; transition: opacity .3s var(--ease); }
.js .prow.is-active .prow__bi { opacity: 1; transition: opacity .6s var(--ease) .15s; }

html:not(.js) .products { height: auto; }
html:not(.js) .products__sticky { position: relative; height: auto; min-height: 100vh; }
html:not(.js) .products__content { position: relative; padding-block: calc(var(--nav-h) + 40px) 80px; }

/* Cycling line (Products rows + PatrolWave AI) */
.cycle {
  display: grid;
  margin-top: 6px;
  font: 400 15px/1.45 var(--f-body);
  color: var(--text-2);
}
.cycle__line { grid-area: 1 / 1; }
html:not(.js) .cycle__line:not(.is-on) { visibility: hidden; }
.js .cycle__line {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 40%, 0);
  transition: opacity .6s var(--ease-reveal), filter .6s var(--ease-reveal), transform .6s var(--ease-reveal);
}
.js .cycle__line.is-out { transform: translate3d(0, -40%, 0); }
.js .cycle__line.is-on { opacity: 1; filter: none; transform: none; }

/* ---------- 05 Who we serve ---------- */
.serve {
  padding: clamp(12px, 2vh, 24px) 0 var(--section-y);
  background: #000;
}
/* Tuck the wave hairline into the finale's empty bottom padding so it arrives while the finale dims. */
.js .serve { position: relative; margin-top: -8vh; }
@media (max-width: 719px) { .js .serve { margin-top: -4vh; } }
@media (max-height: 520px) and (orientation: landscape) { .js .serve { margin-top: 0; } }
.gridlines {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.gridlines > div {
  height: 100%;
  background-image: linear-gradient(90deg, var(--gridline) 0 1px, transparent 1px);
  background-size: calc((100% + var(--gutter)) / 12) 100%;
  border-right: 1px solid var(--gridline);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}
.serve > .container { position: relative; }

.wave { height: 72px; margin-bottom: 48px; }
.wave svg { width: 100%; height: 72px; overflow: visible; }

.serve-head .h2 { margin-top: 20px; }
.serve-head__body {
  margin-top: 24px;
  max-width: 44ch;
  font: 400 16px/1.55 var(--f-body);
  color: var(--text-2);
  text-wrap: pretty;
}

.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  column-gap: clamp(24px, 5vw, 72px);
  margin-top: 64px;
  list-style: none;
  padding: 0;
}
.audience__item {
  --k: 1;
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.audience__item:nth-child(4n + 1) { border-top: 1px solid var(--line); }
.audience__item::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: #ededee;
  opacity: calc(var(--k) * .22);
}
.audience__i {
  font: 500 11px/1 var(--f-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  color: rgba(237, 237, 238, calc(.3 + var(--k) * .2));
}
.audience__n {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  color: rgba(237, 237, 238, calc(.34 + var(--k) * .66));
}
.js .audience__item { --k: 0; }
.js .audience .audience__item {
  opacity: 0;
  filter: blur(8px);
  transition: opacity .7s var(--ease-reveal), filter .7s var(--ease-reveal);
  transition-delay: calc(var(--i) * 80ms);
}
.js .audience.is-in .audience__item { opacity: 1; filter: none; }

/* ---------- 04 PatrolWave AI ---------- */
.access { --ah: 200vh; height: var(--ah); background: #000; }

/* Overlap the tail of the Products pin by one screen plus --xf, so both are pinned while main.js
   fades the finale in over the held QuickPermit state. Transparent so the section box never covers Products. */
.js .access {
  height: calc(var(--ah) + var(--xf));
  margin-top: calc(-100vh - var(--xf));
  margin-top: calc(-100svh - var(--xf));
  background: transparent;
  isolation: isolate;
}
.js .access::before { display: none; }

.access::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 240px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, .6) 45%, transparent);
  pointer-events: none;
  z-index: 3;
}
.access:focus { outline: none; }

.js .access:focus-within .reveal[data-t] { opacity: 1; filter: none; transform: none; }
.access__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
}
.access__sticky::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, #000);
  pointer-events: none;
  z-index: 1;
}
.media--finale { transition: opacity .8s var(--ease); }

.access.is-dim .media--finale:not(.is-live) { opacity: .4; }

.access__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding-bottom: 12vh;
}
.access .display { margin-top: 20px; }
.access .hero__sub { margin-top: 20px; }
.access__sub { max-width: none; }
.nobr { display: inline-block; }
.access__cycle { margin-top: 14px; font-size: 16px; max-width: 46ch; }
.access__desc {
  margin-top: 16px;
  max-width: 46ch;
  font: 400 15.5px/1.55 var(--f-body);
  color: var(--text-2);
  text-wrap: pretty;
}
.access__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 28px;
}

.poster--finale {
  --sz: min(60vh, 40vw);
  --cx: 66%;
  --hy: 74%;
  --split: 0;
}
@supports (height: 1svh) { .poster--finale { --sz: min(60svh, 40vw); } }

@media (min-width: 720px) and (min-aspect-ratio: 1/1) {
  .poster--finale { --sz: min(46vh, 28vw); --cx: max(64%, calc(var(--acc-clear, 0px) + 48px + var(--sz) * .622)); }
  @supports (height: 1svh) { .poster--finale { --sz: min(46svh, 28vw); } }
}
.poster--finale .poster__sky {
  background:
    radial-gradient(calc(var(--sz) * 1.05) calc(var(--sz) * .7) at var(--cx) calc(var(--hy) - var(--sz) * .42), rgba(143, 163, 214, calc(.16 + var(--split) * .16)), rgba(143, 163, 214, .04) 58%, transparent 80%),
    radial-gradient(120% 60% at var(--cx) var(--hy), rgba(9, 24, 65, .62), transparent 70%),
    linear-gradient(180deg, #000 0%, #01030a 55%, #030713 var(--hy), #010205 100%);
}
.poster__glow {
  position: absolute;
  left: 50%; top: 50%;
  width: 56%; height: 56%;
  margin: -28% 0 0 -28%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(200, 214, 250, .45), rgba(158, 178, 234, .2) 34%, rgba(120, 142, 204, .07) 64%, transparent);
  opacity: calc(var(--split) * .9);
  transform: scale(calc(.5 + var(--split) * .7));
}

.poster__beam {
  position: absolute;
  left: -18%; right: -18%;
  top: 50%;
  height: 1.6%;
  margin-top: -.8%;
  background: linear-gradient(90deg, transparent, rgba(214, 224, 252, .5) 35%, rgba(214, 224, 252, .5) 65%, transparent);
  filter: blur(calc(var(--sz) * .008));
  opacity: calc(var(--split) * .12);
  transform: rotate(45deg);
}
.poster--finale .poster__halo { opacity: calc(.75 + var(--split) * .25); }
.half { transition: none; }

.half--a { transform: translate(calc(var(--split) * -54px), calc(var(--split) * -22px)); }
.half--b { transform: translate(calc(var(--split) * 54px), calc(var(--split) * 22px)); }

/* ---------- 06 Contact ---------- */
.contact {
  padding: var(--section-y) 0;
  background: #000;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--gutter);
  row-gap: 56px;
  align-items: start;
}
.contact__intro { grid-column: 1 / 6; }
.contact__form { grid-column: 7 / 13; }
.contact .h2 { margin-top: 20px; }
.contact__body {
  margin-top: 24px;
  max-width: 40ch;
  font: 400 16px/1.55 var(--f-body);
  color: var(--text-2);
  text-wrap: pretty;
}
.clist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 40px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.clist__item { display: inline-flex; align-items: center; gap: 12px; }
.clist__link {
  position: relative;
  font: 400 15px/1.4 var(--f-body);
  letter-spacing: .01em;
  color: var(--text);
  text-decoration: none;
  text-underline-offset: 4px;
  -webkit-user-select: text;
  user-select: text;
  transition: color .3s var(--ease);
}
.clist__link:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--line-2); }
.clist__link--tel { color: var(--text-2); }
.copy {
  position: relative;
  min-width: 58px;
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: transparent;
  font: 500 10.5px/1.35 var(--f-mono);
  letter-spacing: .06em;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.copy:hover { border-color: #ededee; color: var(--text); }
.copy.is-copied { color: var(--text); border-color: var(--line-2); }

.form { position: relative; }
.form__trap {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field--full { grid-column: 1 / -1; }
.field__label {
  font: 500 12.5px/1.3 var(--f-body);
  letter-spacing: .02em;
  color: var(--text-2);
}
.field__opt { margin-left: 6px; font-weight: 400; color: var(--text-3); }
.field__input {
  width: 100%;
  min-height: 48px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: rgba(255, 255, 255, .025);
  color: var(--text);
  font: 400 16px/1.4 var(--f-body);
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.field__input:hover { border-color: rgba(255, 255, 255, .36); }
.field__input:focus { outline: 1px solid #ededee; outline-offset: 2px; border-color: rgba(255, 255, 255, .42); background-color: rgba(255, 255, 255, .04); }
.field__input[aria-invalid="true"] { border-color: rgba(237, 237, 238, .72); }
.field__input:-webkit-autofill {
  -webkit-text-fill-color: #ededee;
  caret-color: #ededee;
  box-shadow: 0 0 0 100px #0a0a0b inset;
}
.field__select {
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath d='M2 3.8 5 6.8 8 3.8' fill='none' stroke='%23ededee' stroke-opacity='.62' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px 10px;
}
.field__select option { background: #0b0b0c; color: #ededee; }
.field__area { min-height: 136px; resize: vertical; line-height: 1.5; }
.field__err {
  display: flex;
  align-items: center;
  gap: 8px;
  font: 400 12.5px/1.4 var(--f-body);
  color: var(--text);
}
.field__err::before { content: ""; width: 5px; height: 5px; flex: none; background: #ededee; }
.form__foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}
.form__legal { font: 400 12px/1.5 var(--f-body); color: var(--text-3); }
.form__legal a { color: var(--text-2); text-underline-offset: 3px; text-decoration-color: var(--line-2); transition: color .3s var(--ease); }
.form__legal a:hover { color: var(--text); }
.form__status:empty { display: none; }
.form__status:focus { outline: none; }
.form__status.is-error {
  margin-top: 22px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  font: 400 14px/1.5 var(--f-body);
  color: var(--text);
}
.form__status.is-error a { color: #fff; text-underline-offset: 3px; text-decoration-color: var(--line-2); }
.form__status.is-sent {
  padding-top: 22px;
  border-top: 1px solid var(--line-2);
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: #fff;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  min-height: 34vh;
  padding: 72px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  overflow: clip;
  background: #000;
}
.site-footer .media__canvas,
.site-footer__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%);
  mask-image: linear-gradient(to bottom, transparent, #000 18%);
  pointer-events: none;
}
.site-footer__dots {
  background-image: radial-gradient(circle at center, rgba(255, 255, 255, .15) 0 .75px, transparent 1.1px);
  background-size: 14px 14px;
  background-position: 7px 7px;
  transition: opacity .7s var(--ease);
}
.site-footer.is-live .site-footer__dots { opacity: 0; }
.site-footer.is-live .media__canvas { opacity: 1; }
.site-footer.is-fallback .media__canvas { display: none; }

.foot { position: relative; z-index: 1; }
.foot__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: var(--gutter);
  row-gap: 16px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 13px/1.4 var(--f-body);
  letter-spacing: .01em;
  color: var(--text);
}
.foot__brand img { width: 18px; height: 18px; }
.foot__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
}
.foot__link {
  position: relative;
  font: 400 13px/1.4 var(--f-body);
  letter-spacing: .01em;
  color: var(--text-2);
  text-decoration: none;
  transition: color .3s var(--ease);
}
.foot__link:hover { color: var(--text); }
.foot__micro {
  margin-top: 40px;
  font: 500 10.5px/1.4 var(--f-mono);
  letter-spacing: .06em;
  color: var(--text-3);
}

@media (min-width: 1024px) {
  .site-footer { min-height: 36vh; padding-top: 96px; }
}

/* ---------- Responsive ---------- */
@media (max-aspect-ratio: 1/1) {
  .poster--hero,
  .poster--finale {
    --cx: 50%;
  }
  .poster--hero { --sz: min(66vw, 32vh); --hy: calc(var(--nav-h) + 2.5vh + var(--sz)); }
  .poster--finale { --sz: min(68vw, 36vh); --hy: calc(var(--nav-h) + 6vh + var(--sz)); }
  @supports (height: 1svh) {
    .poster--hero { --sz: min(66vw, 32svh); --hy: calc(var(--nav-h) + 2.5svh + var(--sz)); }
    .poster--finale { --sz: min(68vw, 36svh); --hy: calc(var(--nav-h) + 6svh + var(--sz)); }
  }
  .poster__horizon {
    background: linear-gradient(90deg, transparent 0%, rgba(158, 178, 234, .1) 18%, rgba(190, 204, 240, .42) 50%, rgba(158, 178, 234, .1) 82%, transparent 100%);
  }
  .shade--hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, .04) 20%, rgba(0, 0, 0, .1) 44%, rgba(0, 0, 0, .78) 66%, rgba(0, 0, 0, .94) 100%);
  }
}

@media (max-width: 899px) {
  .contact__intro, .contact__form { grid-column: 1 / -1; }
  .contact__grid { row-gap: 48px; }
}

@media (max-width: 719px) {
  .hero__content { padding-bottom: max(22px, env(safe-area-inset-bottom, 0px)); }
  .hero .basebar { margin-top: 36px; padding-top: 16px; }
  .hero__sub { max-width: 26ch; }
  .display--long { font-size: clamp(1.85rem, 8vw, 2.6rem); }

  .access { --ah: 195vh; }
  .access::before { height: 96px; }
  .access__content { padding-bottom: max(6vh, 24px); }
  .access .display { margin-top: 14px; }
  .access .hero__sub { margin-top: 14px; }
  .access__cycle { margin-top: 10px; font-size: 15px; }
  .access__desc { margin-top: 10px; font-size: 14.5px; }
  .access__row { margin-top: 20px; }

  .serve-head__body { font-size: 15px; }
  .contact__body { font-size: 15px; }
  .form__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .form__foot .btn { width: 100%; justify-content: space-between; }

  .foot__links { gap: 20px; }
  .foot__micro { margin-top: 28px; }
  .site-footer { min-height: 30vh; padding-top: 64px; }
  .site-footer__dots { background-size: 12px 12px; background-position: 6px 6px; }
}

@media (max-width: 719px), (max-aspect-ratio: 9/10) {
  .signal { height: 240vh; }
  .shade--signal {
    background:
      linear-gradient(180deg, #000 0, transparent 120px),
      linear-gradient(0deg, #000 0%, #000 40%, rgba(0, 0, 0, .7) 50%, transparent 62%);
  }
  .signal__content { align-items: flex-end; padding-top: 0; padding-bottom: max(24px, env(safe-area-inset-bottom, 0px)); }
  .signal__col { max-width: 560px; }
  .signal .h2 { margin-top: 14px; }
  .steps { margin-top: 22px; }
  .step { padding: 14px 0; grid-template-columns: 36px minmax(0, 1fr); }
  .step__t { font-size: 1.12rem; }
  .step__b p { font-size: 14px; padding-top: 6px; }
  .js .step__b { grid-template-rows: 0fr; }
  .js .step.is-active .step__b { grid-template-rows: 1fr; }
  .poster--signal {
    --cx: 50%;
    --sz: min(76vw, 40vh);
    --hy: calc(var(--nav-h) + (56vh - var(--nav-h)) / 2 + var(--sz) / 2);
  }
  @supports (height: 1svh) {
    .poster--signal { --sz: min(76vw, 40svh); --hy: calc(var(--nav-h) + (56svh - var(--nav-h)) / 2 + var(--sz) / 2); }
  }

  :root { --xf: 40vh; }
  .products { --ph: 260vh; }
  .pmedia { left: 0; bottom: auto; width: auto; height: 46vh; height: 46svh; }
  .shade--products {
    background:
      linear-gradient(180deg, #000 0, transparent 120px),
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, .72) 22%, transparent 64%);
  }
  .products__content { align-items: flex-end; padding-top: 0; padding-bottom: max(22px, env(safe-area-inset-bottom, 0px)); }
  .products__col { max-width: 560px; }
  .products .h2 { margin-top: 12px; }
  .products__sub { margin-top: 8px; font-size: 14.5px; }
  .prows { margin-top: 18px; }
  .prow { padding: 12px 0; grid-template-columns: 36px minmax(0, 1fr); }
  .prow__i { padding-top: .45em; }
  .prow__t { font-size: 1.12rem; }
  .prow__cat { font-size: 12px; }
  .prow__lead { padding-top: 10px; }
  .cycle { font-size: 14px; margin-top: 4px; }
  .prow__desc { margin-top: 8px; font-size: 14px; line-height: 1.5; }
  .prow__note { margin-top: 8px; }
  .prow__chip { margin-top: 12px; }
}

@media (max-width: 759px) {
  .audience { grid-template-columns: minmax(0, 1fr); grid-template-rows: none; grid-auto-flow: row; margin-top: 44px; }
  .audience__item { grid-template-columns: 36px minmax(0, 1fr); padding: 18px 0; }
  .audience__item:nth-child(4n + 1) { border-top: 0; }
  .audience__item:first-child { border-top: 1px solid var(--line); }
  .wave { margin-bottom: 48px; }
}

@media (min-width: 720px) and (max-height: 860px) {
  .products .h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
  .prows { margin-top: 24px; }
  .prow { padding: 14px 0; }
  .prow__desc { margin-top: 10px; }
}

@media (min-width: 560px) and (max-width: 900px) {
  .basebar__list { display: grid; grid-template-columns: repeat(4, max-content); gap: 8px 28px; }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: 0; }
  .hero .display { font-size: clamp(1.9rem, 10vh, 2.5rem); }
  .hero .basebar { margin-top: 16px; padding-top: 12px; }
  .hero .actions { margin-top: 18px; }
  .hero__sub { margin-top: 12px; }

  .poster--hero {
    --sz: min(52vh, 34vw);
    --cx: min(calc(98% - var(--sz) / 2), max(62%, calc(var(--hero-clear, 0px) + 32px + var(--sz) / 2)));
  }
  @supports (height: 1svh) { .poster--hero { --sz: min(52svh, 34vw); } }

  .signal__content { align-items: flex-end; padding-top: 0; padding-bottom: 16px; }
  .signal .h2 { font-size: clamp(1.5rem, 7vh, 2.1rem); margin-top: 10px; }
  .steps { margin-top: 14px; max-width: 42vw; }
  .step { padding: 10px 0; }
  .step__t { font-size: 1.05rem; }
  .step__b p { font-size: 13.5px; padding-top: 4px; }

  /* Pinned Products on a landscape phone: top-anchored below the nav, compact, image on the right. */
  .pmedia { top: 0; right: 0; bottom: 0; left: auto; width: 62%; height: auto; }
  .shade--products {
    background:
      linear-gradient(180deg, #000 0, transparent 96px, transparent calc(100% - 96px), #000 100%),
      linear-gradient(90deg, #000 0%, rgba(0, 0, 0, .88) 30%, rgba(0, 0, 0, .4) 58%, transparent 80%);
  }
  .products__content { align-items: flex-start; padding-top: calc(var(--nav-h) + 4px); padding-bottom: 8px; }
  .products .kicker, .products__sub, .products .cycle { display: none; }
  .products .h2 { font-size: clamp(1.2rem, 6vh, 1.6rem); margin-top: 0; }
  .products__col { max-width: none; }
  .prows { margin-top: 10px; max-width: 54vw; }
  .prow { padding: 8px 0; grid-template-columns: 30px minmax(0, 1fr); }
  .prow__t { font-size: 1rem; }
  .prow__cat { font-size: 11.5px; }
  .prow__lead { font-size: 1rem; padding-top: 4px; }
  .prow__desc { max-width: none; font-size: 12.5px; line-height: 1.45; margin-top: 3px; }
  .prow__note { max-width: none; font-size: 10.5px; line-height: 1.4; margin-top: 4px; }
  .prow__chip { margin-top: 6px; }
  .js .step__b { grid-template-rows: 0fr; }
  .js .step.is-active .step__b { grid-template-rows: 1fr; }

  .access .display { font-size: clamp(1.6rem, 9vh, 2.4rem); margin-top: 12px; }
  .access__content .container > * { max-width: 52%; }
  .access__content { padding-bottom: 20px; }
  .access .hero__sub { margin-top: 10px; }
  .access__desc { margin-top: 8px; font-size: 13.5px; }
  .access__row { margin-top: 14px; }
}

@media (pointer: coarse) {
  .btn { min-height: 48px; }
  .brand { height: 44px; }
  .nav__links a { display: inline-flex; align-items: center; min-height: 44px; padding: 0; }
  .copy::after, .clist__link::after, .foot__link::after, .basebar__list a::after {
    content: "";
    position: absolute;
    inset: -12px -6px;
  }
  .clist { gap: 20px; }
  .clist__item { gap: 16px; }
  .basebar__list { row-gap: 12px; }

  .nav__bands { height: 88px; }
  .nav__bands::before { background: linear-gradient(180deg, rgba(0, 0, 0, .94) 0, rgba(0, 0, 0, .82) 58%, rgba(0, 0, 0, 0) 100%); }
}

@media (max-width: 559px) {
  .basebar { gap: 12px; }
  .basebar__label { width: 100%; }
  .basebar__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; width: 100%; }
}

@media (max-width: 719px) {
  .actions { flex-wrap: nowrap; }
  .actions .btn { flex: 1 1 auto; justify-content: space-between; padding-inline: 14px 12px; gap: 8px; }
}
@media (max-width: 359px) {
  .actions { flex-wrap: wrap; }
  .actions .btn { flex: 1 1 100%; }
}
/* Landscape phones: buttons keep their natural width so the hero emblem has room beside them. */
@media (max-height: 520px) and (orientation: landscape) {
  .actions { flex-wrap: wrap; }
  .actions .btn { flex: 0 0 auto; }
}

/* Short portrait phones: a shorter, darker media strip so the heading stays legible. */
@media (max-width: 719px) and (max-height: 740px) and (orientation: portrait) {
  .pmedia { height: 38vh; height: 38svh; }
  .shade--products {
    background:
      linear-gradient(180deg, #000 0, transparent 96px),
      linear-gradient(0deg, #000 0%, rgba(0, 0, 0, .82) 34%, rgba(0, 0, 0, .35) 70%, transparent 88%);
  }
  .products .h2 { text-shadow: 0 1px 18px rgba(0, 0, 0, .6); }
}

/* Touch: at least 44px hit areas that don't overlap. */
@media (pointer: coarse) {
  .basebar__list a::after, .foot__link::after { inset: -14px -8px; }
  .basebar__list { row-gap: 28px; }
  .form__legal a { position: relative; }
  .form__legal a::after { content: ""; position: absolute; inset: -14px -6px; }
}

/* Large displays: scale the text system with the full-bleed scenes. */
@media (min-width: 1920px) {
  :root { --container: 1400px; }
  .display { font-size: clamp(2.4rem, 3.7vw, 5.4rem); }
  .h2 { font-size: clamp(2rem, 3vw, 4.2rem); }
}

@media (max-aspect-ratio: 1/1) and (max-height: 740px) {
  .poster--hero { --sz: min(60vw, 25vh); --hy: calc(var(--nav-h) + 2vh + var(--sz)); }
  @supports (height: 1svh) {
    .poster--hero { --sz: min(60vw, 25svh); --hy: calc(var(--nav-h) + 2svh + var(--sz)); }
  }
}

@media (max-height: 700px) and (min-width: 720px) {
  .hero .basebar { margin-top: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .access .reveal[data-t],
  .js .access.t1 .reveal[data-t="1"],
  .js .access.t2 .reveal[data-t="2"],
  .js .access.t3 .reveal[data-t="3"] {
    filter: none;
    transform: none;
    transition: opacity .25s linear;
    transition-delay: 0s;
  }
  .js .statement .w { transition: none; }
  .js .redact::after,
  .js .redact.is-clear::after { transform: none; transition: opacity .2s linear; }
  .js .redact.is-clear::after { opacity: 0; }
  .js .redact.is-clear::before { animation: none; }
  .brand__wm, .nav__bands, .js .nav__links li { transition-duration: .01s !important; transition-delay: 0s !important; }
  .sig__frags g { transition: none; }
  .js .sig__net { transform: none; transition: opacity .3s linear; }
  .js .sig__net-l { transition: opacity .3s linear; }
  .media__canvas { transition-duration: .3s; }
  .step__b, .step__t, .step__b p, .step, .prow__b, .prow__t, .prow { transition-duration: .01s; }
  .js .prow__bi, .js .prow.is-active .prow__bi { transition: opacity .2s linear; }
  .pmedia__layer { transition-duration: .2s; }
  .pmedia__inner { transform: none !important; will-change: auto; }
  .js .cycle__line { transition: none; filter: none; transform: none; }
  .js .audience .audience__item { filter: none; transition: opacity .25s linear; transition-delay: 0s; }
  .btn svg, .field__input { transition: none; }
}

.still .reveal,
.still .audience .audience__item { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
.still .audience__item { --k: 1 !important; }
.still .pmedia__inner { transform: none !important; }
.still .media__canvas { transition: none; }
