/* ==========================================================================
   Anuswaryaa Enterprises — pinned-canvas scrollytelling
   --------------------------------------------------------------------------
   Layer order (bottom → top):
     0  #stage      the pinned canvas, direct child of <body>
     1  .fx         vignette / fog / grain
     2  .hud        X-ray overlays, X-ray beats only
     3  .story      cross-faded caption panels
     4  .landing    solid closing section that scrolls over everything
     5  .contact    floating contact, always reachable
   ========================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --red: #c4161c;
  --red-bright: #ff5a52;
  --cyan: #39d3ff;

  /* Body copy never sits at --red on black; these carry the contrast. */
  --text: #ffffff;
  --text-dim: #d2d2d2;
  --text-faint: #8e8e8e;
  --line: rgba(255, 255, 255, 0.16);

  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  --rail-w: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Written every frame by the scrub engine. */
  --progress: 0;
  --hotspot-x: 50vw;
  --hotspot-y: 60vh;
  --xray: 0; /* 0 = plain exterior, 1 = X-ray beat */
  --parallax-x: 0px;
  --parallax-y: 0px;
}

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

html {
  background: var(--black);
  scroll-behavior: auto; /* scroll drives the animation; never animate scroll */
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
}

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

/* ── Preloader ───────────────────────────────────────────────────────────── */

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 0.7s ease, visibility 0.7s;
}

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

.loader__inner {
  width: min(22rem, 78vw);
  text-align: center;
}

.loader__mark {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  fill: var(--red);
}

.loader__mark-band {
  fill: var(--white);
}

.loader__mark-wheel {
  fill: var(--text-faint);
}

.loader__brand {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.loader__track {
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.loader__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--cyan));
  transition: width 0.2s linear;
}

.loader__pct {
  margin: 0.9rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ── Scroll progress ─────────────────────────────────────────────────────── */

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--red-bright));
  will-change: width;
}

/* ── The pinned stage ────────────────────────────────────────────────────── */

.stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  /* Shows through before the first frame decodes, and is the whole visual
     when JavaScript never runs. */
  background: var(--black) url("assets/poster.jpg") center / cover no-repeat;
}

/* ── Depth: fog, vignette, grain ─────────────────────────────────────────── */

.fx {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.fx > * {
  position: absolute;
  inset: 0;
}

/* Copy sits in the left column on desktop, so the canvas is darkened from the
   left. Without it, body text lands on the bright cyan X-ray machinery and
   loses all contrast. Deliberately inside .fx (below the HUD) so it darkens
   the frame only — putting it on the story layer dimmed the HUD's own text. */
.fx__scrim {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.8) 24%,
    rgba(0, 0, 0, 0.4) 42%,
    rgba(0, 0, 0, 0) 62%
  );
}

/* Volumetric haze that thickens during X-ray beats ("scanned in a chamber"). */
.fx__fog {
  background:
    radial-gradient(120% 80% at 50% 120%, rgba(57, 211, 255, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(6, 14, 22, 0.5), transparent 45%);
  opacity: calc(0.25 + var(--xray) * 0.75);
  transition: opacity 0.6s ease;
}

.fx__vignette {
  background:
    radial-gradient(105% 75% at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 22%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 30%);
}

/* Film grain + scanlines, deliberately near-invisible. */
.fx__grain {
  opacity: 0.055;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.5) 0px,
      rgba(255, 255, 255, 0.5) 1px,
      transparent 1px,
      transparent 3px
    ),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='140' height='140' filter='url(%23n)' opacity='0.5'/></svg>");
  animation: grain-shift 900ms steps(3) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(-2%, 1%, 0); }
  66% { transform: translate3d(1%, -2%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* ── X-ray HUD ───────────────────────────────────────────────────────────── */

.hud {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: var(--xray);
  transition: opacity 0.5s ease;
  /* Fastest parallax layer — foreground. */
  transform: translate3d(calc(var(--parallax-x) * 1.6), calc(var(--parallax-y) * 1.6), 0);
}

.hud__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 211, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 211, 255, 0.13) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: radial-gradient(80% 70% at 50% 55%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(80% 70% at 50% 55%, #000 25%, transparent 80%);
}

.hud__scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 26vh;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(57, 211, 255, 0.08) 42%,
    rgba(57, 211, 255, 0.5) 50%,
    rgba(57, 211, 255, 0.08) 58%,
    transparent
  );
  animation: scan-sweep 4.2s linear infinite;
}

@keyframes scan-sweep {
  0% { transform: translate3d(0, -30vh, 0); }
  100% { transform: translate3d(0, 100vh, 0); }
}

.hud__bracket {
  position: absolute;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(57, 211, 255, 0.85);
}

.hud__bracket--tl { top: 5.5rem; left: 1.5rem; border-right: 0; border-bottom: 0; }
.hud__bracket--tr { top: 5.5rem; right: calc(var(--rail-w) + 1.5rem); border-left: 0; border-bottom: 0; }
.hud__bracket--bl { bottom: 3rem; left: 1.5rem; border-right: 0; border-top: 0; }
.hud__bracket--br { bottom: 3rem; right: calc(var(--rail-w) + 1.5rem); border-left: 0; border-top: 0; }

.hud__status {
  position: absolute;
  top: 5.5rem;
  left: 4.75rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(57, 211, 255, 0.6);
}

.hud__caret {
  display: inline-block;
  width: 0.5em;
  height: 1em;
  margin-left: 0.35em;
  background: var(--cyan);
  vertical-align: -0.15em;
  animation: caret-blink 1s steps(2) infinite;
}

@keyframes caret-blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.hud__readouts {
  position: absolute;
  bottom: 3rem;
  left: 4.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  color: rgba(57, 211, 255, 0.9);
}

.hud__readouts span::before {
  content: "› ";
  opacity: 0.6;
}

/* Hotspot — placed from the beat's focal point, projected to screen space. */
.hotspot {
  position: absolute;
  top: var(--hotspot-y);
  left: var(--hotspot-x);
  width: 0;
  height: 0;
}

.hotspot__dot,
.hotspot__ring {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hotspot__dot {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(57, 211, 255, 0.9);
}

.hotspot__ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(57, 211, 255, 0.8);
  animation: ring-pulse 2.4s var(--ease) infinite;
}

.hotspot__ring--2 {
  animation-delay: 1.2s;
}

@keyframes ring-pulse {
  0% { width: 20px; height: 20px; opacity: 0.9; }
  100% { width: 108px; height: 108px; opacity: 0; }
}

.hotspot__leader {
  position: absolute;
  left: 8px;
  top: -1px;
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, rgba(57, 211, 255, 0.9), rgba(57, 211, 255, 0.25));
}

.hotspot__callout {
  position: absolute;
  left: 88px;
  top: -1.5rem;
  width: max-content;
  max-width: 15rem;
  padding: 0.55rem 0.8rem;
  border-left: 2px solid var(--cyan);
  background: rgba(0, 10, 16, 0.72);
  backdrop-filter: blur(3px);
}

.hotspot__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--cyan);
}

.hotspot__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--text-dim);
}

/* Flip the callout to the left of the dot when it would leave the viewport. */
.hotspot[data-flip="true"] .hotspot__leader {
  left: auto;
  right: 8px;
  background: linear-gradient(270deg, rgba(57, 211, 255, 0.9), rgba(57, 211, 255, 0.25));
}

.hotspot[data-flip="true"] .hotspot__callout {
  left: auto;
  right: 88px;
  border-left: 0;
  border-right: 2px solid var(--cyan);
  text-align: right;
}

/* ── Scroll track ────────────────────────────────────────────────────────── */

.scrub {
  height: 600svh;
}

/* ── Story panels ────────────────────────────────────────────────────────── */

.story {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}


.story__panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 6rem clamp(1.25rem, 5vw, 5rem);
  padding-right: calc(var(--rail-w) + clamp(1.25rem, 5vw, 5rem));
  opacity: var(--panel-opacity, 0);
  /* Slowest parallax layer sits behind; copy drifts a touch faster. */
  transform: translate3d(
    calc(var(--parallax-x) * 0.5),
    calc(var(--panel-shift, 0px) + var(--parallax-y) * 0.5),
    0
  );
  will-change: opacity, transform;
}

.story__inner {
  width: min(34rem, 100%);
}

.story__cta {
  margin: 2rem 0 0;
  pointer-events: auto;
}

/* ── Type ────────────────────────────────────────────────────────────────── */

.display {
  margin: 1.25rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.7rem, 8.5vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.heading {
  margin: 0.9rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.heading--dark {
  color: var(--white);
}

.eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.lede,
.body {
  margin: 1.3rem 0 0;
  max-width: 32rem;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-dim);
}

.pill {
  display: inline-block;
  margin: 0;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue {
  margin: 2.5rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 2.25rem;
  margin-top: 0.6rem;
  background: linear-gradient(180deg, var(--red-bright), transparent);
}

/* ── Landing ─────────────────────────────────────────────────────────────── */

.landing {
  position: relative;
  z-index: 4;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 14%, #000 100%);
  padding: 22vh clamp(1.25rem, 5vw, 5rem) 8rem;
  padding-right: calc(var(--rail-w) + clamp(1.25rem, 5vw, 5rem));
}

.landing__inner {
  max-width: 60rem;
  margin: 0 auto;
}

.landing__sub {
  margin: 3.5rem 0 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1.75rem 1.25rem;
  margin: 2.5rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat__label {
  order: -1;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.stat__value {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat__suffix {
  color: var(--red-bright);
}

.fleet,
.kit,
.reviews {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.fleet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.fleet li {
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0 1.5rem;
}

.kit li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.kit li::before {
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.8rem;
  vertical-align: middle;
  background: var(--red-bright);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.25rem;
}

.review {
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.review blockquote {
  margin: 0;
  font-size: 0.95rem;
}

.review blockquote::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 2px;
  margin-bottom: 0.9rem;
  background: var(--red);
}

.review cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.7rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.cta {
  margin: 3.5rem 0 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.cta__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  text-transform: uppercase;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border: 1px solid var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.btn--primary {
  background: var(--red);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  color: var(--black);
}

.footer {
  margin: 3.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-faint);
}

.footer p {
  margin: 0 0 0.4rem;
}

/* ── Floating contact ────────────────────────────────────────────────────── */

.contact {
  position: fixed;
  z-index: 50;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.contact__link {
  display: grid;
  place-items: center;
  gap: 0.3rem;
  width: var(--rail-w);
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 0.25s ease;
}

.contact__link:hover {
  background: var(--red);
}

.contact__link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__link[data-label="WhatsApp"] svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.contact__text {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══ Mobile ═══════════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  :root {
    --rail-w: 0rem;
  }

  /* Copy occupies the upper safe zone; the engine seats the sharp frame in
     the lower band so the two never meet. */
  .story__panel {
    align-items: flex-start;
    padding: 4.5rem 1.25rem 9rem;
  }

  .story__inner {
    width: 100%;
  }

  /* Portrait puts the copy above the frame rather than beside it, so the
     scrim runs top-to-bottom instead of left-to-right. */
  .fx__scrim {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.93) 0%,
      rgba(0, 0, 0, 0.86) 34%,
      rgba(0, 0, 0, 0.35) 56%,
      rgba(0, 0, 0, 0) 72%
    );
  }

  .lede,
  .body {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-top: 1.05rem;
  }

  /* The whole HUD moves down to frame the lower band. Up top it would print
     straight over the panel eyebrow and heading. */
  .hud__status {
    top: auto;
    bottom: 8.75rem;
    left: 1.25rem;
    font-size: 0.6rem;
    letter-spacing: 0.16em;
  }

  .hud__bracket {
    width: 30px;
    height: 30px;
  }

  .hud__bracket--tl { top: 52svh; left: 0.85rem; }
  .hud__bracket--tr { top: 52svh; right: 0.85rem; }
  .hud__bracket--bl { bottom: 5.25rem; left: 0.85rem; }
  .hud__bracket--br { bottom: 5.25rem; right: 0.85rem; }

  .hud__readouts {
    bottom: 6.25rem;
    left: 1.25rem;
    font-size: 0.58rem;
  }

  /* A tethered callout cannot fit beside a centred hotspot on a 390px screen —
     there is no room on either side — so on portrait it docks to a full-width
     strip above the readouts while the pulsing dot stays on the subject. */
  .hotspot__leader {
    display: none;
  }

  .hotspot__callout,
  .hotspot[data-flip="true"] .hotspot__callout {
    position: fixed;
    left: 1.25rem;
    right: 1.25rem;
    top: auto;
    bottom: 11.5rem;
    width: auto;
    max-width: none;
    padding: 0.5rem 0.7rem;
    text-align: left;
    border-left: 2px solid var(--cyan);
    border-right: 0;
  }

  .hotspot__sub { font-size: 0.66rem; }

  .landing {
    padding: 18vh 1.25rem 7rem;
  }

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

  .contact {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    border: none;
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .contact__link {
    flex: 1;
    width: auto;
    border-bottom: none;
    border-right: 1px solid var(--line);
    padding: 0.7rem 0.25rem;
  }

  .contact__link:last-child {
    border-right: none;
  }
}

/* ══ No JavaScript ════════════════════════════════════════════════════════
   The scroll track and the fixed overlays only make sense with the engine
   running. Without it the story becomes an ordinary stack of sections over a
   single poster frame.
   ═══════════════════════════════════════════════════════════════════════ */

html:not(.js) .loader,
html:not(.js) .scrub,
html:not(.js) .hud,
html:not(.js) .progress {
  display: none;
}

html:not(.js) .story {
  position: static;
  pointer-events: auto;
}

html:not(.js) .fx__scrim {
  display: none;
}

html:not(.js) .story__panel {
  position: relative;
  inset: auto;
  min-height: 100svh;
  opacity: 1;
  transform: none;
}

/* ══ Reduced motion ═══════════════════════════════════════════════════════
   No scrub, no sweep, no parallax — the frames stop moving and the story
   reads as a normal document. The engine also skips the whole preload.
   ═══════════════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  .fx__grain,
  .hud__scan,
  .hud__caret,
  .hotspot__ring {
    animation: none;
  }
}

html.reduced .scrub,
html.reduced .hud,
html.reduced .loader {
  display: none;
}

html.reduced .story {
  position: static;
  pointer-events: auto;
}

html.reduced .fx__scrim {
  display: none;
}

html.reduced .story__panel {
  position: relative;
  inset: auto;
  min-height: 100svh;
  opacity: 1 !important;
  transform: none !important;
}
