/* =========================================================
   ESPER SATELLITE IMAGERY — "SPECTRUM" variant-2
   Vanilla CSS. White, premium, data-forward.
   ========================================================= */

:root {
  /* Color tokens */
  --white: #FFFFFF;
  --black: #000000;
  --accent: #0099FF;
  --accent-press: #007ACC;
  --accent-tint: #E6F5FF;
  --grey-900: #111111;
  --grey-700: #3D3D3D;
  --grey-500: #6B6B6B;
  --grey-300: #C9C9C9;
  --grey-200: #E4E4E4;
  --grey-100: #F4F5F6;
  --grey-050: #FAFAFB;

  --spectral: linear-gradient(90deg,#6A00F4 0%,#0040FF 16%,#00C2D1 33%,#2BD93B 50%,#F2E600 66%,#FF8A00 83%,#FF1F3D 100%);
  --spectral-v: linear-gradient(180deg,#6A00F4 0%,#0040FF 16%,#00C2D1 33%,#2BD93B 50%,#F2E600 66%,#FF8A00 83%,#FF1F3D 100%);

  --focus: 0 0 0 3px var(--accent-tint), 0 0 0 4px var(--accent);

  --maxw: 1240px;
  --gutter: 24px;

  --mono: "Spline Sans Mono", ui-monospace, monospace;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
}

@media (min-width: 1024px) { :root { --gutter: 48px; } }

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

::selection { background: var(--accent-tint); color: var(--grey-900); }

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--white); color: var(--accent);
  padding: 12px 20px; font: 500 15px/1 var(--sans);
  border: 1px solid var(--grey-200);
}
.skip-link:focus { left: 8px; top: 8px; }

/* ----------------- Layout ----------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.section { padding: 56px 0; }
@media (min-width: 600px) { .section { padding: 80px 0; } }
@media (min-width: 1024px) { .section { padding: 128px 0; } }

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.col-5 { grid-column: span 12; }
.col-6 { grid-column: span 12; }
.col-7 { grid-column: span 12; }
.offset-1 { }
@media (min-width: 1024px) {
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
  .offset-1 { grid-column: 7 / span 6; }
}

/* ----------------- Typography ----------------- */
h1, h2, h3, h4 { font-weight: 600; }

h1, .hero__title {
  font-size: clamp(44px, 6.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(20px, 2.3vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h4 { font-size: 18px; font-weight: 500; line-height: 1.25; }

.lead {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--grey-700);
}
.body { font-size: 17px; line-height: 1.6; color: var(--grey-700); }
.caption { font-size: 14px; line-height: 1.55; color: var(--grey-500); }

.eyebrow {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.eyebrow--light { color: var(--grey-300); }

/* Gradient text — limited to two display words */
.spectral-text {
  background: var(--spectral);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .spectral-text { color: var(--accent); }
}

/* ----------------- Spectral rule ----------------- */
.spectral-rule {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--spectral);
  background-size: 200% 100%;
  animation: spectralShift 12s linear infinite;
}
@keyframes spectralShift {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* ----------------- Buttons ----------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 500 15px/1 var(--sans);
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-press); border-color: var(--accent-press); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--black); border: 1px solid var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); transform: translateY(-1px); }
.btn--ghost-light { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn--ghost-light:hover { background: var(--white); color: var(--black); transform: translateY(-1px); }

/* ----------------- Text link ----------------- */
.textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 500;
  position: relative;
}
.textlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--spectral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.textlink:hover::after, .textlink:focus-visible::after { transform: scaleX(1); }

/* ----------------- Chips ----------------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.chip {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--grey-200);
  position: relative;
  color: var(--grey-700);
}
.chip::after {
  content: "";
  position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 2px; background: var(--spectral);
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.nav__inner {
  height: 72px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 24px; width: auto; }
.nav__links { display: none; gap: 28px; margin-left: auto; }
.nav__links a {
  font: 500 15px/1 var(--sans);
  color: var(--grey-900);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 2px; background: var(--spectral);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.nav__links a:hover::after, .nav__links a:focus-visible::after { transform: scaleX(1); }
.nav__cta { display: none; }
.nav__rule { height: 2px; position: absolute; left: 0; bottom: -2px; }
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: block; }
}

.nav__burger {
  margin-left: auto;
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: none; cursor: pointer;
}
.nav__burger span { display: block; height: 2px; width: 24px; background: var(--black); margin: 0 auto; transition: transform .2s ease; }
@media (min-width: 1024px) { .nav__burger { display: none; } }

/* ============ MOBILE OVERLAY ============ */
.overlay {
  position: fixed; inset: 0; z-index: 150;
  background: var(--white);
  display: flex; flex-direction: column;
  padding: 24px;
}
.overlay[hidden] { display: none; }
.overlay__rule { position: absolute; top: 0; left: 0; height: 3px; }
.overlay__close {
  align-self: flex-end;
  font-size: 40px; line-height: 1;
  background: none; border: none; cursor: pointer; color: var(--black);
  width: 48px; height: 48px;
}
.overlay__links {
  display: flex; flex-direction: column; gap: 28px;
  margin-top: 8vh; padding: 0 8px;
}
.overlay__links a {
  font-size: clamp(20px, 6vw, 24px); font-weight: 600; letter-spacing: -0.01em;
}
.overlay__btn { align-self: flex-start; font-size: 15px; font-weight: 500; margin-top: 8px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.30) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw);
  margin: 0 auto; padding: 80px var(--gutter);
}
.hero__content { max-width: 720px; }
.hero__title { margin: 18px 0 24px; }
.hero__lead { color: var(--grey-700); max-width: 640px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero__statrule { height: 3px; margin: 40px 0 18px; max-width: 640px; }
.hero__stats { color: var(--grey-700); letter-spacing: 0.12em; }

/* ============ POSITIONING ============ */
.positioning__body .body + .body { margin-top: 20px; }

/* ============ STATS BAND ============ */
.stats {
  position: relative;
  background: var(--grey-050);
  padding: 80px 0;
  border-top: 4px solid transparent;
}
.stats::before, .stats__rule {
  content: "";
  position: absolute; left: 0; width: 100%; height: 4px;
  background: var(--spectral);
  background-size: 200% 100%;
  animation: spectralShift 12s linear infinite;
}
.stats::before { top: 0; }
.stats__rule { bottom: 0; }
.stats__head { text-align: center; margin-bottom: 48px; }
.stats__head h2 { margin-top: 12px; }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 1024px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: 24px 16px;
  border-bottom: 1px solid var(--grey-200);
  position: relative;
}
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 24px; bottom: 24px;
  width: 1px; background: var(--grey-200);
}
@media (min-width: 1024px) {
  .stat { border-bottom: none; }
  .stat:nth-child(2n)::after { display: block; }
}
@media (max-width: 1023px) {
  .stat:nth-child(2n)::after { display: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}
.stat__tick { display: block; width: 40px; height: 1px; background: var(--spectral); margin: 0 auto 12px; }
.counter {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.stat__unit {
  display: block;
  font-family: var(--mono);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 10px;
}
.stat__label { font-size: 14px; line-height: 1.55; color: var(--grey-500); margin-top: 10px; }

/* ============ TECHNOLOGY ============ */
.tech__copy .eyebrow { margin-bottom: 16px; }
.tech__copy h2 { margin-bottom: 20px; }
.tech__cards { margin-top: 36px; display: grid; gap: 16px; }
.minicard {
  border: 1px solid var(--grey-200);
  padding: 20px 24px;
}
.minicard h3 { font-size: 18px; margin-bottom: 6px; }
.minicard p { font-size: 14px; color: var(--grey-500); line-height: 1.55; }

.tech__viz { margin-top: 16px; }
@media (min-width: 1024px) { .tech__viz { margin-top: 0; } }
.viz {
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 32px 24px 24px;
  position: relative;
  overflow: hidden;
}
.viz__bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 200px;
}
@media (min-width: 600px) { .viz__bars { height: 280px; } }
.viz__bars i {
  display: block;
  flex: 1 1 auto;
  height: 100%;
  transform: scaleY(0.06);
  transform-origin: bottom;
  transition: transform .5s cubic-bezier(.22,.61,.36,1);
}
.in-view .viz__bars i { transform: scaleY(var(--h, 1)); }
.viz__scan {
  position: absolute;
  top: 32px; left: 24px;
  width: 64px;
  height: 200px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55) 50%, transparent);
  mix-blend-mode: overlay;
  opacity: 0;
}
@media (min-width: 600px) { .viz__scan { height: 280px; } }
.in-view .viz__scan { opacity: 1; animation: vizScan 4s linear infinite; }
@keyframes vizScan {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100% + 900px)); }
}
.viz__brackets {
  display: flex;
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.viz__region { text-align: center; border-top: 1px solid var(--grey-300); padding-top: 6px; }
.viz__region--vis { flex: 0 0 33%; }
.viz__region--nir { flex: 0 0 17%; }
.viz__region--swir { flex: 1; }
.viz__axis {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--grey-500);
}

/* ============ MISSIONS ============ */
.missions__head { max-width: 760px; margin-bottom: 56px; }
.missions__head h2 { margin-top: 12px; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 28px;
  margin-bottom: 56px;
}
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.timeline__rule {
  position: absolute; top: 0; left: 0; height: 2px;
}
.tnode { position: relative; padding-top: 24px; }
.tnode__dot {
  position: absolute; top: -7px; left: 0;
  width: 14px; height: 14px;
  background: var(--white);
  border: 2px solid var(--grey-300);
}
.tnode--active .tnode__dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-tint);
  animation: nodePulse 2.4s ease-out infinite;
}
@keyframes nodePulse {
  0% { box-shadow: 0 0 0 0 rgba(0,153,255,.45); }
  70% { box-shadow: 0 0 0 12px rgba(0,153,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,153,255,0); }
}
.tnode__meta {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-900);
}
.tnode--active .tnode__meta { color: var(--accent); }
.tnode__desc { font-size: 14px; line-height: 1.55; color: var(--grey-500); margin-top: 10px; }

.missions__media { margin-top: 8px; }
.mediacard { grid-column: span 12; overflow: hidden; }
@media (min-width: 768px) { .mediacard { grid-column: span 6; } }
.mediacard img {
  width: 100%; height: 360px; object-fit: cover;
  transition: transform .5s ease;
}
.mediacard:hover img { transform: scale(1.03); }
.mediacard figcaption { margin-top: 12px; }

/* ============ INDUSTRIES ============ */
.industries__head { max-width: 760px; margin-bottom: 48px; }
.industries__head h2 { margin-top: 12px; }
.cards { gap: 24px; }
.card {
  grid-column: span 12;
  background: var(--white);
  border: 1px solid var(--grey-200);
  padding: 32px;
  position: relative;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
  border-top: 3px solid var(--accent);
}
@media (min-width: 600px) { .card { grid-column: span 6; } }
@media (min-width: 1024px) { .card { grid-column: span 4; } }
.card--featured { border-top: 3px solid transparent; }
.card--featured::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--spectral); background-size: 200% 100%;
  animation: spectralShift 12s linear infinite;
}
.card:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(0,0,0,.06); transform: translateY(-2px); }
.card__index {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em;
  color: var(--grey-500); display: block; margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--grey-700); line-height: 1.55; margin-bottom: 20px; }

/* ============ DARK SATELLITE BAND ============ */
.darkband {
  position: relative;
  background: var(--grey-900);
  color: var(--white);
  overflow: hidden;
}
.darkband__rule {
  position: absolute; top: 0; left: 0; height: 4px; z-index: 3;
  filter: saturate(1.3) brightness(1.15);
}
.darkband__grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) { .darkband__grid { grid-template-columns: 6fr 6fr; } }
.darkband__media img {
  width: 100%; height: 100%; min-height: 320px; object-fit: cover;
}
.darkband__copy {
  padding: 56px var(--gutter);
}
@media (min-width: 1024px) { .darkband__copy { padding: 112px 64px; align-self: center; } }
.darkband__wordmark { height: 20px; width: auto; margin-bottom: 28px; }
.darkband__title { color: var(--white); margin: 14px 0 20px; }
.darkband__body { color: var(--grey-300); margin-bottom: 32px; max-width: 520px; }

/* ============ TEAM ============ */
.team__head { max-width: 760px; margin-bottom: 48px; }
.team__headrow { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.team__tag {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  border: 1px solid var(--accent-tint); padding: 5px 10px;
}
.team__rule { height: 2px; margin: 16px 0 20px; max-width: 200px; }
.team__head h2 { margin-bottom: 14px; }
.team__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
@media (min-width: 1024px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }
.member__photo { overflow: hidden; aspect-ratio: 1 / 1; }
.member__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transition: filter .35s ease, transform .5s ease;
}
.member:hover .member__photo img { filter: grayscale(0); transform: scale(1.03); }
.member figcaption { margin-top: 14px; display: flex; flex-direction: column; gap: 4px; }
.member__name { font-size: 18px; font-weight: 500; line-height: 1.25; }
.member__role {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--grey-500);
}

/* ============ INVESTORS ============ */
.investors { background: var(--grey-100); }
.investors__head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.investors__head h2 { margin-top: 12px; }
.investors__rule { height: 2px; max-width: 320px; margin: 0 auto 48px; }
.investors__featured { display: flex; flex-direction: column; align-items: center; margin-bottom: 40px; }
.logotile {
  background: var(--white);
  border: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: center;
  min-height: 96px;
  padding: 24px;
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--grey-700);
  position: relative;
  transition: border-color .2s ease, color .2s ease;
}
.logotile--featured { min-height: 140px; min-width: 240px; padding: 32px 48px; }
.logotile--featured img { max-height: 64px; width: auto; filter: grayscale(1); transition: filter .3s ease; }
.logotile--featured:hover img { filter: grayscale(0); }
.logotile__caption {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--grey-500); margin-top: 14px;
}
.logorow {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  max-width: 920px; margin: 0 auto;
}
@media (min-width: 768px) { .logorow { grid-template-columns: repeat(5, 1fr); } }
.logorow .logotile::after {
  content: ""; position: absolute; left: 0; bottom: -1px;
  width: 100%; height: 2px; background: var(--spectral);
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.logorow .logotile:hover { border-color: var(--accent); color: var(--grey-900); }
.logorow .logotile:hover::after { transform: scaleX(1); }

/* ============ CTA ============ */
.cta { position: relative; text-align: center; }
.cta__inner { max-width: 760px; }
.cta__title { margin: 14px 0 20px; }
.cta__inner .lead { margin: 0 auto; max-width: 560px; }
.cta__btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 36px; }
.cta__rule { position: absolute; bottom: 0; left: 0; height: 3px; }

/* ============ FOOTER ============ */
.footer { position: relative; background: var(--grey-900); color: var(--grey-300); padding: 72px 0 40px; }
.footer__rule { position: absolute; top: 0; left: 0; height: 3px; }
.footer__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px 24px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 768px) { .footer__inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer__brand img { height: 24px; width: auto; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__heading {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey-500); margin-bottom: 4px;
}
.footer__col a { color: var(--grey-300); font-size: 15px; transition: color .2s ease; }
.footer__col a:hover { color: var(--white); }
.footer__bottom { padding-top: 28px; }
.footer__meta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey-500); line-height: 1.6;
}

/* ============ SCROLL REVEALS ============ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  .spectral-rule,
  .stats::before, .stats__rule,
  .card--featured::before,
  .tnode--active .tnode__dot {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; transition: none; }
  .viz__bars i { transition: none; transform: scaleY(var(--h, 1)); }
  .viz__scan { display: none; }
  .mediacard:hover img, .member:hover .member__photo img { transform: none; }
  * { scroll-behavior: auto; }
}
