/* =============================================================
   Hailstorm Software — main.css
   Dark, icy, digital. Blues/greys over an overwhelming black.
   ============================================================= */

/* ----------------------------- Tokens ----------------------------- */
:root {
  /* Surfaces — overwhelming dark, faint blue bias */
  --void:        #03050a;
  --bg:          #05070e;
  --bg-soft:     #080c16;
  --panel:       rgba(14, 21, 36, 0.55);
  --panel-solid: #0a0f1b;

  /* Ink */
  --text:        #dfe9f6;
  --muted:       #8a9bb6;
  --faint:       #56657f;
  --ghost:       #34405421;

  /* Ice / digital accents */
  --ice:         #7ee3ff;   /* electric ice highlight   */
  --ice-deep:    #38bdf8;
  --azure:       #2f6bff;   /* deep digital blue        */
  --steel:       #43597a;
  --frost:       #bfe9ff;
  --warn:        #f6c177;   /* anomaly amber — used sparingly */

  /* Lines & glow */
  --hair:        rgba(126, 168, 214, 0.12);
  --hair-strong: rgba(126, 168, 214, 0.22);
  --glow-ice:    0 0 24px rgba(126, 227, 255, 0.45);
  --glow-soft:   0 0 40px rgba(47, 107, 255, 0.18);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body:    system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono:    ui-monospace, "SFMono-Regular", "Cascadia Code", Consolas, "Liberation Mono", monospace;

  /* Layout */
  --maxw:   1180px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --header-h: 4.75rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------- Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.075rem);
  line-height: 1.6;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; }
button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

::selection {
  background: rgba(126, 227, 255, 0.22);
  color: #ffffff;
}

:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 2px;
}

.mono { font-family: var(--font-mono); }

/* --------------------------- Background ---------------------------- */
/* A static, painted storm sky beneath the live canvas. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 50% -10%, #0c1726 0%, rgba(12, 23, 38, 0) 55%),
    radial-gradient(90% 60% at 85% 8%,  rgba(47, 107, 255, 0.10) 0%, rgba(47, 107, 255, 0) 60%),
    radial-gradient(80% 70% at 12% 100%, rgba(56, 189, 248, 0.06) 0%, rgba(56, 189, 248, 0) 55%),
    linear-gradient(180deg, #04060d 0%, #05070e 45%, #03050a 100%);
}

/* ------------------------- Storm canvas --------------------------- */
.storm-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

/* --------------------- Atmospheric overlays ----------------------- */
/* Vignette + faint digital scanlines, layered as one element. */
.fx-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(127, 170, 215, 0.025) 0px,
      rgba(127, 170, 215, 0.025) 1px,
      transparent 1px,
      transparent 3px
    ),
    radial-gradient(130% 100% at 50% 30%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
  mix-blend-mode: normal;
}

/* Frost building along the bottom edge — the storm settling. */
.fx-frost {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1;
  height: 26vh;
  pointer-events: none;
  background:
    radial-gradient(120% 100% at 50% 130%, rgba(126, 227, 255, 0.10) 0%, rgba(126, 227, 255, 0) 60%),
    linear-gradient(0deg, rgba(8, 16, 28, 0.65) 0%, rgba(8, 16, 28, 0) 100%);
  -webkit-mask-image: linear-gradient(0deg, #000 0%, transparent 100%);
          mask-image: linear-gradient(0deg, #000 0%, transparent 100%);
}

/* Lightning flash — opacity is driven from JS. */
.fx-flash {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(207, 234, 255, 0.9) 0%, rgba(126, 200, 255, 0.35) 35%, rgba(47, 107, 255, 0) 70%);
  mix-blend-mode: screen;
  will-change: opacity;
}

/* ----------------------------- Skip link -------------------------- */
.skip-link {
  position: fixed;
  top: 0.6rem;
  left: 50%;
  transform: translate(-50%, -150%);
  z-index: 50;
  padding: 0.55rem 1rem;
  background: var(--panel-solid);
  border: 1px solid var(--hair-strong);
  border-radius: 6px;
  font-size: 0.85rem;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

/* ------------------------------ Page ------------------------------ */
.page {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

/* ----------------------------- Header ----------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding-inline: var(--gutter);
  background: linear-gradient(180deg, rgba(4, 6, 13, 0.78) 0%, rgba(4, 6, 13, 0) 100%);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(4, 6, 13, 0.82);
  border-bottom-color: var(--hair);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.brand__mark { display: grid; place-items: center; filter: drop-shadow(0 0 10px rgba(95, 208, 255, 0.45)); }
.brand__crystal {
  fill: rgba(126, 227, 255, 0.08);
  stroke: url(#markGrad);
  stroke-width: 1.6;
  stroke-linejoin: round;
}
.brand__facet {
  fill: none;
  stroke: rgba(189, 233, 255, 0.45);
  stroke-width: 0.8;
}
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--ice);
  margin-top: 0.18rem;
  text-shadow: 0 0 12px rgba(126, 227, 255, 0.35);
}

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2rem); }
.nav-link {
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, var(--ice), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
}
.nav-status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.35; transform: scale(0.75); }
}

/* ------------------------------ Hero ------------------------------ */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.6rem;
  max-width: var(--maxw);
  width: 100%;
  margin-inline: auto;
  padding: clamp(3rem, 12vh, 9rem) var(--gutter) clamp(4rem, 10vh, 7rem);
  min-height: calc(100svh - var(--header-h));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: clamp(0.7rem, 0.66rem + 0.2vw, 0.82rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 0.1rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.15s forwards;
}
.hero__eyebrow .x { color: var(--ice); font-size: 0.7em; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}
.hero__word {
  display: block;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #cfe2f6 38%, #6f86a6 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(0.4em);
  animation: rise 1s var(--ease) forwards;
}
.hero__word:nth-child(1) { animation-delay: 0.28s; }
.hero__word--alt {
  background: linear-gradient(180deg, #aee4ff 0%, #5fd0ff 45%, #2f6bff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 6px 40px rgba(47, 107, 255, 0.35));
  animation-delay: 0.42s;
}

/* Light sweeping across each word, like a glint off ice.
   Uses the word's own glyphs (via data-text) so background-clip:text
   has real letterforms to clip the moving highlight to. */
.hero__word::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(214, 240, 255, 0.85) 50%, transparent 58%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  pointer-events: none;
  background-size: 280% 100%;
  background-position: 220% 0;
  animation: sheen 7.5s ease-in-out 1.6s infinite;
}

.hero__tagline {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.4rem);
  color: var(--muted);
  line-height: 1.5;
  opacity: 0;
  animation: rise 1s var(--ease) 0.62s forwards;
}

.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: clamp(1.5rem, 5vh, 3.5rem);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--faint);
  opacity: 0;
  animation: rise 1s var(--ease) 0.85s forwards;
  transition: color 0.3s var(--ease);
}
.scroll-cue:hover { color: var(--ice); }
.scroll-cue__chevron {
  width: 14px; height: 14px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  animation: bob 2.2s ease-in-out infinite;
}

/* --------------------------- Game section ------------------------- */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 16px rgba(126, 227, 255, 0.3);
}

.game {
  padding: clamp(4rem, 14vh, 9rem) var(--gutter) clamp(5rem, 12vh, 8rem);
}
.game__inner {
  max-width: var(--maxw);
  margin-inline: auto;
}

/* Frosted-glass card — frost on the window, on-theme for hail. */
.game-card {
  position: relative;
  max-width: 720px;
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 16px;
  border: 1px solid var(--hair-strong);
  background:
    linear-gradient(180deg, rgba(20, 30, 50, 0.55) 0%, rgba(8, 13, 24, 0.5) 100%);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  box-shadow:
    0 1px 0 rgba(189, 233, 255, 0.08) inset,
    0 30px 80px -40px rgba(0, 0, 0, 0.9),
    var(--glow-soft);
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.game-card::before {
  /* faint frost speckle */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(2px 2px at 20% 30%, rgba(189, 233, 255, 0.12), transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 60%, rgba(189, 233, 255, 0.10), transparent 60%),
    radial-gradient(1.5px 1.5px at 45% 80%, rgba(189, 233, 255, 0.08), transparent 60%),
    radial-gradient(2px 2px at 85% 22%, rgba(189, 233, 255, 0.10), transparent 60%);
  pointer-events: none;
}
.game-card:hover, .game-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(126, 227, 255, 0.4);
}

/* HUD corner brackets */
.game-card__corner {
  position: absolute;
  width: 16px; height: 16px;
  border: 1.5px solid var(--ice);
  opacity: 0.55;
}
.game-card__corner--tl { top: 12px; left: 12px;  border-right: 0; border-bottom: 0; }
.game-card__corner--tr { top: 12px; right: 12px; border-left: 0;  border-bottom: 0; }
.game-card__corner--bl { bottom: 12px; left: 12px;  border-right: 0; border-top: 0; }
.game-card__corner--br { bottom: 12px; right: 12px; border-left: 0;  border-top: 0; }

.game-card__meta { display: flex; gap: 0.6rem; margin-bottom: 1.4rem; }
.tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--hair-strong);
  color: var(--muted);
  background: rgba(126, 227, 255, 0.04);
}
.tag--ghost { color: var(--faint); border-style: dashed; }

.game-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}
.redacted {
  display: inline-block;
  background: linear-gradient(180deg, #cfe6ff, #5fd0ff 60%, #2f6bff);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 26px rgba(47, 107, 255, 0.4));
}

.game-card__desc {
  max-width: 52ch;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.game-card__status {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 1.1rem 0 1.4rem;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 1.6rem;
}
.stat { display: flex; flex-direction: column; gap: 0.35rem; }
.stat--grow { flex: 1; min-width: 120px; }
.stat__key {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
}
.stat__val { font-size: 0.98rem; color: var(--text); }

/* Animated "signal" bars */
.signal { display: inline-flex; align-items: flex-end; gap: 4px; height: 22px; }
.signal i {
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--ice), var(--azure));
  box-shadow: 0 0 8px rgba(126, 227, 255, 0.4);
  animation: equalize 1.6s ease-in-out infinite;
}
.signal i:nth-child(1) { height: 35%; animation-delay: 0s;    }
.signal i:nth-child(2) { height: 65%; animation-delay: 0.2s;  }
.signal i:nth-child(3) { height: 45%; animation-delay: 0.4s;  }
.signal i:nth-child(4) { height: 80%; animation-delay: 0.15s; }
.signal i:nth-child(5) { height: 55%; animation-delay: 0.32s; }

.game-card__actions { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--hair-strong);
  background: rgba(126, 227, 255, 0.05);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn--ghost[disabled] { opacity: 0.6; cursor: not-allowed; }
.btn:hover { border-color: rgba(126, 227, 255, 0.45); background: rgba(126, 227, 255, 0.12); transform: translateY(-2px); }
.btn__arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn__soon {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--hair-strong);
  border-radius: 4px;
}
.hint { font-size: 0.78rem; color: var(--faint); letter-spacing: 0.08em; }

/* ===================== Cryptic game teaser ====================== */
/* Live-status pill with a pulsing dot */
.tag--live { color: var(--ice); border-color: rgba(126, 227, 255, 0.3); }
.tag--live .tag__dot {
  display: inline-block;
  width: 7px; height: 7px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  vertical-align: middle;
  animation: pulse 2.4s ease-in-out infinite;
}

/* Glitch flicker on the decoded title (its glow stays via .redacted's filter) */
.game-card__title .glitch { will-change: transform; animation: glitch 7s steps(1, end) infinite; }
@keyframes glitch {
  0%, 90%, 96%, 100% { transform: none; text-shadow: none; }
  91% { transform: translateX(-2px); text-shadow: 2px 0 rgba(95, 208, 255, 0.85), -2px 0 rgba(255, 90, 150, 0.6); }
  93% { transform: translateX(2px);  text-shadow: -2px 0 rgba(95, 208, 255, 0.85), 2px 0 rgba(255, 90, 150, 0.5); }
  95% { transform: translateX(-1px); text-shadow: 1px 0 rgba(95, 208, 255, 0.7); }
}

/* Diagnostic terminal log */
.termlog {
  margin: 0 0 1.8rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--hair);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(4, 9, 18, 0.55), rgba(4, 9, 18, 0.3));
  font-family: var(--font-mono);
  font-size: clamp(0.72rem, 0.68rem + 0.25vw, 0.84rem);
  line-height: 1.95;
  color: var(--muted);
  overflow: hidden;
}
.termlog__line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.termlog__line.is-in { opacity: 1; transform: none; }
.termlog__k { color: var(--muted); }
.termlog__lead {
  flex: 1 1 auto;
  height: 0;
  min-width: 1.5rem;
  border-bottom: 1px dotted var(--hair-strong);
}
.termlog__v { flex: 0 0 auto; color: var(--ice); }
.termlog__v.ok  { color: var(--faint); }
.termlog__v.hot { font-weight: 600; text-shadow: 0 0 12px rgba(126, 227, 255, 0.55); }
.termlog__line.warn { color: var(--warn); text-shadow: 0 0 14px rgba(246, 193, 119, 0.22); }
.termlog__cursor {
  display: inline-block;
  width: 0.55em; height: 1.05em;
  margin-left: 0.15rem;
  background: var(--ice);
  box-shadow: 0 0 10px var(--ice);
  transform: translateY(0.16em);
  animation: blink 1.05s steps(1, end) infinite;
}
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

@media (max-width: 520px) {
  .termlog { font-size: 0.72rem; line-height: 1.85; }
  .termlog__line { white-space: normal; }
  .termlog__lead { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .termlog__line { opacity: 1 !important; transform: none !important; }
}

/* ----------------------------- Footer ----------------------------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--gutter) 2.5rem;
  border-top: 1px solid var(--hair);
  color: var(--faint);
  font-size: 0.84rem;
}
.site-footer__brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.footer-mark .brand__crystal { fill: rgba(126, 227, 255, 0.06); stroke: var(--steel); stroke-width: 1.6; stroke-linejoin: round; }
.site-footer__note { letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.72rem; }

/* --------------------------- Animations --------------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(0.9rem); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sheen {
  0%, 18% { background-position: 220% 0; }
  40%, 100% { background-position: -120% 0; }
}
@keyframes bob {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.6; }
  50%      { transform: rotate(45deg) translate(3px, 3px); opacity: 1; }
}
@keyframes equalize {
  0%, 100% { transform: scaleY(0.4); }
  50%      { transform: scaleY(1); }
}

/* --------------------------- Responsive --------------------------- */
@media (max-width: 720px) {
  :root { --header-h: 4rem; }
  .brand__sub { letter-spacing: 0.34em; }
  .nav-status { display: none; }
  .hero { gap: 1.3rem; }
  .game-card__status { gap: 1rem 1.4rem; }
}

@media (max-width: 420px) {
  .nav-link { font-size: 0.85rem; }
  .hero__tagline { font-size: 1.05rem; }
}

/* ----------------------- Reduced motion --------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__word, .hero__eyebrow, .hero__tagline, .scroll-cue { opacity: 1; transform: none; }
  .scroll-cue__chevron { animation: none; }
  .nav-status__dot { animation: none; }
}
