:root {
  color-scheme: dark;
  --brand: #de3c05;
  --brand-bright: #ff4b0f;
  --brand-dark: #9f2600;
  --brand-soft: #fff0e9;
  --ink: #fff8f4;
  --muted: #bca49b;
  --line: rgba(255, 105, 45, .18);
  --surface: #1d0b07;
  --surface-2: #130704;
  --night: #100503;
  --night-soft: #1b0905;
  --motion-ease: cubic-bezier(.2, .84, .24, 1);
  --motion-fast: 200ms;
  --motion-exit: 190ms;
  --motion-enter: 440ms;
  --motion-portal: 680ms;
  --motion-stagger: 60ms;
}

@view-transition { navigation: auto; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.matrix-canvas { view-transition-name: site-matrix-canvas; }
.site-matrix-shade { view-transition-name: site-matrix-shade; }
.launch-main,
.legal-shell,
.content-shell,
.redirect-shell { view-transition-name: site-content; }

::view-transition-group(root),
::view-transition-group(site-content),
::view-transition-group(site-matrix-canvas),
::view-transition-group(site-matrix-shade) {
  animation-duration: var(--motion-enter);
  animation-timing-function: var(--motion-ease);
}
::view-transition-old(site-content) { animation: site-route-out var(--motion-exit) ease both; }
::view-transition-new(site-content) { animation: site-route-in var(--motion-enter) var(--motion-ease) both; }
::view-transition-old(site-matrix-canvas),
::view-transition-old(site-matrix-shade) {
  animation: none;
  opacity: 1;
}
::view-transition-new(site-matrix-canvas),
::view-transition-new(site-matrix-shade) {
  animation: none;
  opacity: 0;
}

html.is-page-leaving { cursor: progress; }
html.is-page-leaving .launch-main,
html.is-page-leaving .legal-shell,
html.is-page-leaving .content-shell,
html.is-page-leaving .inner-site-header,
html.is-page-leaving .inner-site-footer {
  opacity: .16;
  transform: translateY(-8px) scale(.994);
  transition:
    opacity var(--motion-exit) ease,
    transform var(--motion-exit) var(--motion-ease);
}

.has-motion [data-motion-reveal] {
  opacity: 0;
  transform: translateY(14px) scale(.992);
  transition:
    opacity var(--motion-enter) ease,
    transform var(--motion-enter) var(--motion-ease);
  transition-delay: calc(var(--motion-order, 0) * var(--motion-stagger));
  will-change: opacity, transform;
}
.has-motion [data-motion-reveal].is-motion-reveal-ready {
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  color: #20100b;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.launch-page {
  min-height: 100svh;
  overflow-x: hidden;
  background: var(--night);
}

.launch-main { position: relative; }

.network-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 47%, rgba(85, 19, 3, .24), transparent 34%),
    linear-gradient(180deg, rgba(16, 5, 3, .2) 0%, rgba(18, 6, 3, .34) 67%, rgba(25, 8, 5, .5) 100%);
}

.network-hero::before,
.network-hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.network-hero::before {
  inset: 0;
  opacity: .65;
  background-image:
    linear-gradient(rgba(222, 60, 5, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 60, 5, .025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.network-hero::after {
  left: 50%;
  bottom: -150px;
  width: min(850px, 86vw);
  height: 280px;
  border-radius: 50%;
  background: rgba(222, 60, 5, .14);
  filter: blur(78px);
  transform: translateX(-50%);
}

.matrix-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  filter: contrast(1.08) saturate(1.16);
}
.site-matrix-shade {
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(87, 20, 4, .08), transparent 34%),
    radial-gradient(circle at center, transparent 25%, rgba(7, 1, 0, .34) 100%);
}

.network-vignette {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, transparent 20%, rgba(9, 2, 1, .08) 58%, rgba(6, 1, 0, .46) 100%),
    linear-gradient(180deg, rgba(9, 2, 1, .08), transparent 25%, transparent 72%, rgba(10, 2, 1, .46));
}

.hero-brand {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform var(--motion-portal) var(--motion-ease), filter .3s ease;
}
.hero-brand::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 5px;
  border-radius: 16px;
  background: rgba(222, 60, 5, .2);
  box-shadow: 0 0 34px 12px rgba(222, 60, 5, .32);
  opacity: .42;
  pointer-events: none;
  transform: scale(.92);
  transition: opacity .35s ease, transform .45s var(--motion-ease);
}
.hero-brand img {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(222, 60, 5, .34);
  transition: box-shadow .3s ease, transform .45s var(--motion-ease);
}
.hero-brand:hover { filter: brightness(1.08); }
.hero-brand:focus-visible { outline: 2px solid #ff7847; outline-offset: 10px; }
.is-launch-expanded .hero-brand { transform: translateY(0) scale(.96); }
.is-launch-expanded .hero-brand::before { opacity: .24; transform: scale(.86); }

.launch-shell {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 40px));
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 48px 0 78px;
  text-align: center;
}

.launch-reveal { width: 100%; }
.launch-copy { max-width: 940px; margin-inline: auto; }

.launch-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #d5a493;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.launch-eyebrow i {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 18px rgba(255, 76, 15, .9);
}

.launch-copy h1 {
  margin: 0;
  color: #fffaf7;
  font-size: clamp(49px, 7vw, 88px);
  line-height: .98;
  font-weight: 810;
  letter-spacing: -.065em;
  text-wrap: balance;
  text-shadow: 0 20px 55px rgba(0, 0, 0, .45);
}
.launch-copy h1 strong {
  display: block;
  margin-top: 8px;
  background: linear-gradient(100deg, #ff7a43 0%, #f04a0f 45%, #c92d00 100%);
  color: transparent;
  font-weight: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 14px 28px rgba(222, 60, 5, .18));
}

.store-section {
  width: min(690px, 100%);
  margin: 70px auto 0;
}
.store-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.store-heading h2 {
  margin: 0;
  color: #d2bcb4;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.store-rule { height: 1px; background: linear-gradient(90deg, transparent, rgba(255, 111, 53, .28)); }
.store-rule:last-child { background: linear-gradient(90deg, rgba(255, 111, 53, .28), transparent); }

.store-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.store-card {
  position: relative;
  min-height: 86px;
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 114, 55, .22);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(43, 17, 10, .9), rgba(24, 8, 4, .88));
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 22px 50px rgba(0, 0, 0, .27);
  text-align: left;
  user-select: none;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.store-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 16%, rgba(255, 255, 255, .045) 46%, transparent 72%);
  transform: translateX(-110%);
}
.store-card:hover::after { transform: translateX(110%); transition: transform .9s ease; }
.store-icon-shell {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}
.store-icon { width: 27px; height: 27px; color: #fff; }
.play-icon { padding: 1px; }
.store-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.store-copy small {
  color: #a88c82;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.store-copy strong {
  overflow: hidden;
  color: #fffaf7;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store-status {
  padding: 6px 8px;
  border: 1px solid rgba(255, 103, 43, .18);
  border-radius: 999px;
  background: rgba(222, 60, 5, .12);
  color: #ff8c5e;
  font-size: 9px;
  font-weight: 780;
}

.network-scroll-cue {
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.network-scroll-cue span {
  width: 6px;
  height: 6px;
  border-right: 1px solid #d58e73;
  border-bottom: 1px solid #d58e73;
  transform: translateY(-2px) rotate(45deg);
}

.launch-footer {
  position: relative;
  z-index: 3;
  padding: 22px 24px 30px;
  background:
    radial-gradient(circle at 15% 5%, rgba(222, 60, 5, .16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(136, 31, 0, .11), transparent 30%),
    linear-gradient(180deg, #190805, #100503 48%, #0c0302);
}
.launch-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(720px, 78vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(222, 60, 5, .34), transparent);
  transform: translateX(-50%);
}
.launch-footer a:visited,
.launch-footer a {
  color: inherit;
  text-decoration-line: none;
}
.launch-footer-panel {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 34px 36px 22px;
  border: 1px solid rgba(255, 101, 42, .2);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(36, 13, 7, .92), rgba(21, 7, 4, .95));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 24px 70px rgba(0, 0, 0, .3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.launch-footer-grid {
  display: grid;
  grid-template-columns: minmax(205px, 1.15fr) minmax(155px, .9fr) minmax(180px, 1fr) minmax(180px, 1fr);
  align-items: start;
  gap: clamp(26px, 3.2vw, 52px);
}
.launch-footer-brand {
  min-width: 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-content: start;
}
.launch-footer-brand img {
  grid-row: 1 / 3;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(222, 60, 5, .18);
}
.launch-footer-brand h2 {
  align-self: end;
  margin: 1px 0 3px;
  color: #fff7f3;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 790;
  letter-spacing: -.04em;
}
.launch-footer-brand p {
  min-width: 0;
  margin: 0;
  color: #a88f86;
  font-size: 11px;
  line-height: 1.45;
}
.launch-footer-column { min-width: 0; }
.launch-footer-column h2 {
  margin: 2px 0 14px;
  color: #d8b3a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.launch-footer-column nav { display: grid; gap: 9px; }
.launch-footer-column a,
.launch-footer-bottom a {
  width: fit-content;
  max-width: 100%;
  color: #b7a099;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 570;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}
.launch-footer-column a:hover,
.launch-footer-column a:focus-visible,
.launch-footer-bottom a:hover,
.launch-footer-bottom a:focus-visible {
  color: var(--brand);
  outline: none;
}
.launch-footer-column a:hover { transform: translateX(2px); }
.launch-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 119, 62, .13);
  color: #8e746b;
  font-size: 10px;
  letter-spacing: .03em;
}
.launch-footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

@media (scripting: enabled) {
  .launch-reveal {
    display: grid;
    grid-template-rows: 0fr;
    overflow: clip;
    opacity: 0;
    pointer-events: none;
    transform: translateY(26px) scale(.985);
    transform-origin: top center;
    clip-path: inset(0 0 100% 0 round 26px);
    transition:
      opacity .45s ease,
      transform .75s cubic-bezier(.2, .8, .2, 1),
      clip-path .75s cubic-bezier(.2, .8, .2, 1),
      grid-template-rows .75s cubic-bezier(.2, .8, .2, 1);
  }
  .launch-reveal-inner { min-height: 0; overflow: hidden; }
  .launch-reveal .launch-eyebrow,
  .launch-reveal .launch-copy h1,
  .launch-reveal .store-heading,
  .launch-reveal .store-card,
  .network-scroll-cue,
  .launch-footer {
    opacity: 0;
    transform: translateY(22px);
  }
  .launch-reveal .launch-eyebrow,
  .launch-reveal .launch-copy h1,
  .launch-reveal .store-heading,
  .launch-reveal .store-card,
  .network-scroll-cue {
    transition:
      opacity .42s cubic-bezier(.2, .7, .2, 1),
      transform .48s cubic-bezier(.2, .7, .2, 1);
  }
  .network-scroll-cue,
  .launch-reveal .store-card:nth-child(2) { transition-delay: 0s; }
  .launch-reveal .store-card:nth-child(1) { transition-delay: .05s; }
  .launch-reveal .store-heading { transition-delay: .1s; }
  .launch-reveal .launch-copy h1 { transition-delay: .16s; }
  .launch-reveal .launch-eyebrow { transition-delay: .22s; }
  .launch-footer {
    display: none;
    overflow: clip;
    pointer-events: none;
    clip-path: inset(0 0 100% 0 round 30px);
    transition:
      opacity .65s ease,
      transform .8s cubic-bezier(.2, .8, .2, 1),
      clip-path .8s cubic-bezier(.2, .8, .2, 1),
      display .8s;
    transition-behavior: allow-discrete;
  }
  .is-launch-expanded .launch-reveal {
    grid-template-rows: 1fr;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    clip-path: inset(0);
    transition-delay: .08s, .08s, .08s, .08s;
  }
  .is-launch-expanded .launch-reveal .launch-eyebrow,
  .is-launch-expanded .launch-reveal .launch-copy h1,
  .is-launch-expanded .launch-reveal .store-heading,
  .is-launch-expanded .launch-reveal .store-card,
  .is-launch-expanded .network-scroll-cue,
  .is-launch-expanded .launch-footer {
    opacity: 1;
    transform: translateY(0);
  }
  .is-launch-expanded .launch-reveal .launch-eyebrow { transition-delay: .18s; }
  .is-launch-expanded .launch-reveal .launch-copy h1 { transition-delay: .32s; }
  .is-launch-expanded .launch-reveal .store-heading { transition-delay: .5s; }
  .is-launch-expanded .launch-reveal .store-card:nth-child(1) { transition-delay: .62s; }
  .is-launch-expanded .launch-reveal .store-card:nth-child(2) { transition-delay: .72s; }
  .is-launch-expanded .network-scroll-cue { transition-delay: .88s; }
  .is-launch-expanded .launch-footer {
    display: block;
    pointer-events: auto;
    clip-path: inset(0);
    transition:
      opacity .65s ease,
      transform .8s cubic-bezier(.2, .8, .2, 1),
      clip-path .8s cubic-bezier(.2, .8, .2, 1),
      display .8s;
    transition-behavior: allow-discrete;
    transition-delay: .78s, .88s, .88s, .88s;
  }
  .is-launch-collapsing .launch-footer { display: block; }
  @starting-style {
    .is-launch-expanded .launch-reveal {
      grid-template-rows: 0fr;
      opacity: 0;
      transform: translateY(26px) scale(.985);
      clip-path: inset(0 0 100% 0 round 26px);
    }
    .is-launch-expanded .launch-footer {
      opacity: 0;
      transform: translateY(22px);
      clip-path: inset(0 0 100% 0 round 30px);
    }
  }
}

.has-motion .hero-brand { opacity: 0; transform: scale(.82); }
.has-motion.is-motion-ready .hero-brand {
  opacity: 1;
  transform: scale(1);
  transition: opacity .7s ease, transform .8s cubic-bezier(.2, .8, .2, 1), filter .3s ease;
}
.has-motion.is-motion-ready.is-launch-expanded .hero-brand { transform: scale(.96); }
.has-motion.is-motion-ready:not(.is-launch-expanded) .hero-brand::before {
  animation: hero-brand-glow-breathe 2.8s ease-in-out infinite;
}
.has-motion.is-motion-ready:not(.is-launch-expanded) .hero-brand img {
  animation: hero-brand-breathe 2.8s ease-in-out infinite;
}

@media (min-width: 901px) {
  .network-scroll-cue span { animation: cue-drop 1.8s ease-in-out infinite; }
}

@keyframes hero-brand-breathe {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
  }
}
@keyframes hero-brand-glow-breathe {
  0%, 100% { opacity: .34; transform: scale(.88); }
  50% { opacity: .62; transform: scale(1.06); }
}
@keyframes cue-drop {
  0%, 100% { opacity: .45; transform: translateY(-3px) rotate(45deg); }
  50% { opacity: 1; transform: translateY(3px) rotate(45deg); }
}

@keyframes site-route-out {
  to { opacity: 0; transform: translateY(-8px) scale(.994); }
}
@keyframes site-route-in {
  from { opacity: 0; transform: translateY(14px) scale(.992); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  :root {
    --motion-exit: 140ms;
    --motion-enter: 320ms;
    --motion-stagger: 38ms;
  }
  .matrix-canvas { filter: none; }
  .network-hero::after {
    background: radial-gradient(ellipse at center, rgba(222, 60, 5, .13), transparent 70%);
    filter: none;
  }
  .store-card,
  .launch-footer-panel {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .store-card {
    background: linear-gradient(145deg, rgba(43, 17, 10, .97), rgba(24, 8, 4, .96));
  }
  .launch-footer-panel {
    background: linear-gradient(145deg, rgba(36, 13, 7, .98), rgba(21, 7, 4, .99));
  }
}

@media (hover: none) {
  .hero-brand:hover { filter: none; }
  .store-card:hover::after { transform: translateX(-110%); transition: none; }
  .launch-footer-column a:hover { transform: none; }
}

@media (max-width: 900px) {
  .network-hero { min-height: 100svh; }
  .launch-footer-panel { padding: 30px 28px 21px; }
  .launch-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px 50px; }
  .launch-footer-brand { grid-column: 1 / -1; max-width: 380px; }
  .launch-footer-column:last-child { grid-column: 1 / -1; }
  .launch-footer-column:last-child nav {
    grid-template-columns: repeat(3, minmax(0, max-content));
    gap: 9px 28px;
  }
}

@media (max-width: 640px) {
  .network-hero { min-height: 100svh; }
  .hero-brand { margin-bottom: 25px; }
  .hero-brand img { width: 64px; height: 64px; border-radius: 18px; }
  .launch-shell { width: calc(100% - 32px); padding: 42px 0 62px; }
  .launch-eyebrow { margin-bottom: 22px; font-size: 9px; }
  .launch-copy h1 { font-size: clamp(43px, 13vw, 61px); line-height: 1; }
  .launch-copy h1 strong { margin-top: 7px; }
  .store-section { margin-top: 54px; }
  .store-heading { gap: 11px; }
  .store-heading h2 { font-size: 9px; }
  .store-list { grid-template-columns: 1fr; gap: 10px; }
  .store-card { min-height: 76px; border-radius: 19px; }
  .launch-footer { padding: 52px 14px 18px; }
  .launch-footer-panel { padding: 25px 21px 19px; border-radius: 23px; }
  .launch-footer-grid { grid-template-columns: 1fr; gap: 27px; }
  .launch-footer-brand,
  .launch-footer-column:last-child { grid-column: auto; max-width: none; }
  .launch-footer-column h2 { margin-bottom: 11px; }
  .launch-footer-column nav,
  .launch-footer-column:last-child nav { display: flex; flex-wrap: wrap; gap: 8px; }
  .launch-footer-column a {
    padding: 7px 9px;
    border: 1px solid rgba(255, 112, 51, .17);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    font-size: 10px;
  }
  .launch-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }
  .launch-footer-bottom nav { gap: 17px; }
}

@media (max-width: 380px) {
  .launch-copy h1 { font-size: 40px; }
  .store-status { display: none; }
  .store-card { grid-template-columns: 45px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .has-motion [data-motion-reveal],
  .has-motion [data-motion-reveal].is-motion-reveal-ready,
  html.is-page-leaving .launch-main,
  html.is-page-leaving .legal-shell,
  html.is-page-leaving .content-shell,
  html.is-page-leaving .inner-site-header,
  html.is-page-leaving .inner-site-footer {
    opacity: 1;
    transform: none;
  }
}
