:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0b1017;
  --panel-2: #101722;
  --line: rgba(135, 180, 235, 0.18);
  --line-strong: rgba(78, 169, 255, 0.5);
  --text: #f4f7fb;
  --muted: rgba(244, 247, 251, 0.7);
  --soft: rgba(244, 247, 251, 0.5);
  --blue: #4aa8ff;
  --orange: #f6a12a;
  --navy: #203d7a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 8%, rgba(74, 168, 255, 0.14), transparent 28rem),
    radial-gradient(circle at 16% 34%, rgba(246, 161, 42, 0.08), transparent 26rem),
    linear-gradient(180deg, #05070a, #080d13 48%, #040609);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.is-loading {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: break-word;
}

img {
  display: block;
  max-width: 100%;
}

.ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(74, 168, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 50% 52%, rgba(246, 161, 42, 0.1), transparent 22rem),
    #05070a;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loader::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(74, 168, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 168, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 68%);
  pointer-events: none;
}

.loader > * {
  position: relative;
  z-index: 1;
}

.loader.is-complete {
  visibility: hidden;
  opacity: 0;
}

.loader__orb {
  position: relative;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(74, 168, 255, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 237, 255, 0.72), rgba(74, 168, 255, 0.16) 34%, transparent 62%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 70px rgba(74, 168, 255, 0.3), inset 0 0 34px rgba(246, 161, 42, 0.12);
}

.loader__orb::before,
.loader__orb::after,
.loader__orb span {
  position: absolute;
  inset: 12px;
  content: "";
  border: 1px solid rgba(216, 237, 255, 0.28);
  border-radius: 50%;
  animation: orb-spin 2.6s linear infinite;
}

.loader__orb::after {
  inset: 22px;
  border-color: rgba(246, 161, 42, 0.42);
  animation-duration: 3.8s;
  animation-direction: reverse;
}

.loader__orb span {
  inset: -7px;
  border-color: transparent;
  border-top-color: var(--blue);
  border-bottom-color: rgba(246, 161, 42, 0.72);
  filter: drop-shadow(0 0 12px rgba(74, 168, 255, 0.7));
}

.loader__orb span::after {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: #d7edff;
  box-shadow: 0 0 18px rgba(216, 237, 255, 0.9);
}

.loader__eyebrow {
  margin: 14px 0 0;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader h2 {
  width: min(12ch, 100%);
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
}

.loader p:not(.loader__eyebrow) {
  width: min(36rem, 100%);
  max-width: 36rem;
  margin: 0;
  color: rgba(244, 247, 251, 0.78);
}

.loader__track {
  width: min(420px, 82vw);
  height: 6px;
  overflow: hidden;
  border: 1px solid rgba(74, 168, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.loader__track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #d7edff, var(--orange));
  box-shadow: 0 0 18px rgba(74, 168, 255, 0.6);
  transition: width 160ms ease;
}

.loader strong {
  color: var(--blue);
  letter-spacing: 0.08em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
  font-size: 0.82rem;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 38px;
  object-fit: cover;
  object-position: center 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.8vw, 30px);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 10px 0;
}

.site-nav a:hover,
.site-nav .active {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 850;
}

.nav-cta,
.button.ghost {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.button.primary {
  border: 1px solid rgba(74, 168, 255, 0.6);
  color: #06101b;
  background: linear-gradient(90deg, var(--blue), #d7edff);
}

.hero,
.page-hero,
.section {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(48px, 7vw, 86px) 0;
}

.hero.video-expanded {
  grid-template-columns: 1fr;
}

.hero.video-expanded .hero-copy {
  max-width: 800px;
}

.system-video-section.video-expanded,
.system-page-hero.video-expanded {
  grid-template-columns: 1fr;
}

.system-video-section.video-expanded .section-head,
.system-page-hero.video-expanded .system-page-copy {
  max-width: 800px;
}

.system-video-section.video-expanded .system-player,
.system-page-hero.video-expanded .system-player {
  justify-self: center;
}

.page-hero {
  padding: clamp(70px, 10vw, 132px) 0 clamp(36px, 6vw, 72px);
}

.system-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(48px, 7vw, 86px) 0;
}

.system-page-hero h2 {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 500;
  line-height: 0.98;
}

.hero-copy,
.page-hero {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--text);
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 4.25vw, 4.8rem);
  font-weight: 500;
  line-height: 0.98;
}

.page-hero h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.lead {
  max-width: 38rem;
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(18px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(74, 168, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(16, 23, 34, 0.92), rgba(7, 11, 16, 0.94));
  box-shadow: inset 0 0 42px rgba(74, 168, 255, 0.06), 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero-video {
  position: relative;
  justify-self: end;
  min-width: 0;
  width: 100%;
  max-width: 680px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #020406;
  box-shadow: inset 0 0 42px rgba(74, 168, 255, 0.08), 0 34px 90px rgba(0, 0, 0, 0.34);
}

.hero.video-expanded .hero-video {
  justify-self: stretch;
  max-width: none;
}

.system-video-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.system-player {
  justify-self: end;
  width: min(100%, 360px);
}

.system-player video {
  aspect-ratio: 406 / 680;
  width: 100%;
  max-height: 680px;
}

.system-player .video-frame {
  aspect-ratio: 406 / 680;
}

.system-player .video-frame video {
  height: 100%;
  object-fit: cover;
}

.clean-player {
  background: #020406;
}

.clean-player .video-controls {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  grid-template-columns: auto auto minmax(0, 1fr) auto auto;
  border: 1px solid rgba(135, 180, 235, 0.16);
  border-radius: 8px;
  padding: 8px;
  background: rgba(5, 7, 10, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
  backdrop-filter: blur(14px);
}

.clean-player.controls-visible .video-controls {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.clean-player .video-volume,
.clean-player .video-speed,
.clean-player #fitToggle {
  display: none;
}

.clean-player .video-button,
.clean-player .video-speed {
  min-width: 34px;
  height: 34px;
}

.clean-player figcaption {
  display: none;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #020406;
}

.hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #020406;
}

.video-center-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: clamp(58px, 7vw, 82px);
  height: clamp(58px, 7vw, 82px);
  place-items: center;
  border: 1px solid rgba(216, 237, 255, 0.76);
  border-radius: 50%;
  color: var(--text);
  background: rgba(5, 7, 10, 0.52);
  box-shadow: 0 0 34px rgba(74, 168, 255, 0.36);
  cursor: pointer;
  font-size: 1.45rem;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-player.is-playing .video-center-play {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.94);
}

.video-controls {
  display: grid;
  grid-template-columns: auto auto minmax(120px, 1fr) auto auto minmax(70px, 0.28fr) auto auto auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid rgba(135, 180, 235, 0.18);
  padding: 12px;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.94), rgba(5, 7, 10, 0.96));
}

.video-button,
.video-speed {
  min-width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.video-button {
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1rem;
}

.video-button:hover,
.video-speed:hover {
  border-color: var(--line-strong);
}

.video-speed {
  padding: 0 8px;
  color: var(--text);
  font-weight: 800;
}

.video-speed option {
  color: #05070a;
}

.video-time {
  color: var(--soft);
  font-size: 0.78rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.video-seek,
.video-volume {
  width: 100%;
  accent-color: var(--blue);
  cursor: pointer;
}

.hero-video figcaption {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  border-top: 1px solid rgba(135, 180, 235, 0.18);
  padding: 12px 14px;
  background: rgba(5, 7, 10, 0.72);
}

.hero-video figcaption span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-video figcaption strong {
  font-size: 0.92rem;
}

.hero-panel::before {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(74, 168, 255, 0.12);
  border-radius: 6px;
  pointer-events: none;
}

.flow-card,
.decision-map div,
.source-grid article,
.capability-list article,
.proof-grid div,
.signal-board article,
.measure-grid article,
.layer-grid article,
.plans-clean article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 23, 34, 0.9), rgba(9, 14, 20, 0.9));
}

.flow-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 24px;
}

.flow-card span,
.section-number,
.capability-list span {
  color: var(--blue);
  font-weight: 950;
  letter-spacing: 0.08em;
}

.flow-card strong {
  display: block;
  margin: 8px 0 6px;
  font-size: 1.35rem;
}

.flow-card p,
.intro-grid p,
.decision-map p {
  margin-bottom: 0;
}

.flow-line {
  width: 1px;
  height: 32px;
  margin-left: 32px;
  background: linear-gradient(var(--blue), transparent);
}

.section {
  padding: clamp(58px, 9vw, 112px) 0;
}

.intro-grid,
.compare-grid,
.source-grid,
.capability-list,
.proof-grid,
.measure-grid,
.layer-grid,
.plans-clean {
  display: grid;
  align-items: stretch;
  gap: 18px;
}

.intro-grid,
.plans-clean {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.intro-grid h2 {
  min-height: 2.12em;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

.decision-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.decision-map div {
  display: grid;
  align-content: start;
  min-height: 160px;
  padding: 22px;
}

.decision-map span,
.source-grid span,
.proof-grid span,
.layer-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 900;
}

.compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.compare-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(12, 18, 26, 0.74);
}

.compare-grid .highlight {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(19, 39, 60, 0.86), rgba(10, 15, 22, 0.9));
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.source-grid,
.measure-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.source-grid article,
.measure-grid article,
.layer-grid article {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.system-diagram {
  display: grid;
  grid-template-columns: 1.2fr 0.3fr repeat(4, 1fr) 1.2fr;
  align-items: center;
  gap: 10px;
}

.node {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  color: var(--text);
  background: rgba(12, 18, 26, 0.86);
  font-weight: 900;
}

.node.large {
  min-height: 150px;
  border-color: var(--line-strong);
}

.rail {
  display: grid;
  gap: 12px;
}

.rail span {
  height: 1px;
  background: var(--blue);
}

.capability-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-list article {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.capability-list article p,
.proof-grid p,
.signal-board p,
.measure-grid p,
.layer-grid p,
.plans-clean p {
  margin-bottom: 0;
}

.proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-grid div {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.signal-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.signal-board article {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.signal-board span {
  color: var(--blue);
  font-weight: 900;
}

.signal-board strong {
  display: block;
  margin: 12px 0 10px;
  font-size: 1.1rem;
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.journey-line div {
  position: relative;
  display: grid;
  min-height: 108px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(12, 18, 26, 0.74);
  font-weight: 900;
  text-align: center;
}

.journey-line div:not(:last-child)::after {
  position: absolute;
  right: -12px;
  color: var(--blue);
  content: ">";
}

.layer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plans-clean article {
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.plans-clean article:nth-child(2) {
  border-color: var(--line-strong);
  box-shadow: 0 0 42px rgba(74, 168, 255, 0.13);
}

.plans-clean strong {
  display: block;
  margin-top: 18px;
  color: var(--blue);
}

.decision-path {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 54px);
  background: linear-gradient(180deg, rgba(16, 23, 34, 0.88), rgba(8, 12, 18, 0.92));
}

.decision-path ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0;
  padding: 0;
  counter-reset: path;
  list-style: none;
}

.decision-path li {
  min-height: 142px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 52px 16px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  counter-increment: path;
}

.decision-path li::before {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  content: counter(path);
  font-size: 1.4rem;
  font-weight: 950;
}

.win-eoi-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.win-eoi-form {
  display: grid;
  gap: 14px;
}

.win-eoi-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.win-eoi-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
}

.win-eoi-form input:focus {
  outline: 1px solid var(--line-strong);
}

.form-note {
  min-height: 1.4em;
  margin: 0;
  color: var(--blue);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 26px clamp(18px, 5vw, 70px);
  color: var(--soft);
}

.site-footer span:first-child {
  color: var(--blue);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    display: flex;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    padding: 2px 0 8px;
    font-size: 0.76rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .system-page-hero,
  .split-section,
  .compare-grid,
  .win-eoi-section {
    grid-template-columns: 1fr;
  }

  .source-grid,
  .proof-grid,
  .signal-board,
  .measure-grid,
  .layer-grid,
  .decision-path ol,
  .journey-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-controls {
    grid-template-columns: auto auto minmax(150px, 1fr) auto auto auto;
  }

  .video-volume,
  .video-speed {
    grid-column: span 2;
  }

  .system-diagram {
    grid-template-columns: 1fr;
  }

  .rail {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 76px;
  }

  .brand {
    min-width: auto;
  }

  .brand span {
    display: inline;
    font-size: 0.72rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero,
  .page-hero,
  .section {
    width: min(100% - 28px, 1160px);
  }

  h1,
  .page-hero h1 {
    max-width: 10ch;
    font-size: clamp(2.55rem, 12vw, 3.4rem);
  }

  .nav-cta {
    display: none;
  }

  .lead {
    max-width: 32ch;
  }

  .video-controls {
    grid-template-columns: auto auto 1fr auto;
  }

  .video-seek {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .video-volume {
    grid-column: 1 / 3;
  }

  .video-speed {
    grid-column: 3 / -1;
  }

  .intro-grid,
  .decision-map,
  .source-grid,
  .capability-list,
  .proof-grid,
  .signal-board,
  .measure-grid,
  .layer-grid,
  .plans-clean,
  .decision-path ol,
  .journey-line {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}

@keyframes orb-spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .ambient-canvas {
    display: none;
  }
}
