:root {
  --ink: #f4f0e8;
  --muted: rgba(236, 233, 224, 0.54);
  --faint: rgba(236, 233, 224, 0.28);
  --line: rgba(232, 228, 216, 0.14);
  --gold: #ffc864;
  --blue: #76b7ff;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  background: #020207;
}

body {
  min-width: 320px;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 64% 52%, rgba(27, 25, 45, 0.72), transparent 38%),
    linear-gradient(125deg, #020207 0%, #070712 55%, #020207 100%);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  cursor: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 0 150px rgba(0, 0, 0, 0.62),
    inset 0 -90px 100px rgba(0, 0, 0, 0.32);
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: none;
}

#universe {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.aurora {
  position: fixed;
  z-index: 1;
  top: 9%;
  right: 5%;
  width: 60vw;
  height: 70vh;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 65% 30%, rgba(54, 88, 167, 0.12), transparent 54%),
    conic-gradient(
      from 180deg at 50% 50%,
      transparent,
      rgba(83, 70, 166, 0.1),
      transparent 38%
    );
  filter: blur(42px);
  transform: translate(
    calc((var(--pointer-x) - 50vw) * -0.007),
    calc((var(--pointer-y) - 50vh) * -0.007)
  );
}

.grain {
  position: fixed;
  inset: -50%;
  z-index: 35;
  opacity: 0.028;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.82'/%3E%3C/svg%3E");
  animation: grain 0.22s steps(2) infinite;
}

.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.35rem, 2.8vw, 2.6rem) clamp(1.25rem, 3.7vw, 4rem);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mark {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.mark__system {
  position: relative;
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: rotateX(62deg);
}

.mark__system::before,
.mark__system::after {
  position: absolute;
  inset: 3px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
}

.mark__system::after {
  inset: 6px;
  background: var(--gold);
  border: 0;
  box-shadow: 0 0 7px var(--gold);
}

.mission-readout {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
}

.mission-readout__line {
  width: 2.2rem;
  height: 1px;
  background: var(--line);
}

.mission-readout__live {
  width: 0.38rem;
  height: 0.38rem;
  margin-left: 0.3rem;
  border-radius: 50%;
  background: #c4ffe0;
  box-shadow: 0 0 10px #72ffb4;
  animation: signal 1.7s ease-in-out infinite;
}

.intro {
  position: fixed;
  top: clamp(7.5rem, 15vh, 10rem);
  left: clamp(1.25rem, 3.7vw, 4rem);
  z-index: 20;
  width: min(34rem, 38vw);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 1.65rem;
  color: var(--muted);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(3.6rem, 6.1vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.072em;
  line-height: 0.83;
}

h1 span {
  display: block;
}

h1 .outline {
  margin-left: 0.42em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 240, 232, 0.54);
}

.intro__copy {
  max-width: 25rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 300;
  line-height: 1.75;
}

.solar-system {
  position: fixed;
  z-index: 10;
  top: 8vh;
  right: -2vw;
  width: 68vw;
  height: 77vh;
  transform: translate(
    calc((var(--pointer-x) - 50vw) * -0.006),
    calc((var(--pointer-y) - 50vh) * -0.006)
  );
  transition: transform 0.2s linear;
}

.system-plane {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orbit-ring,
.asteroid-belt {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border: 1px solid rgba(227, 225, 220, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-7deg);
}

.orbit-ring::after {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 7px rgba(255, 255, 255, 0.18);
}

.orbit-ring--dwarf {
  border-style: dashed;
  border-color: rgba(227, 225, 220, 0.09);
}

.asteroid-belt {
  border: 0;
  opacity: 0.32;
  background-image: radial-gradient(circle, #c6bca8 0 0.8px, transparent 1px);
  background-size: 7px 5px;
  mask-image: radial-gradient(
    ellipse,
    transparent 0 67%,
    #000 68% 73%,
    transparent 74%
  );
  -webkit-mask-image: radial-gradient(
    ellipse,
    transparent 0 67%,
    #000 68% 73%,
    transparent 74%
  );
}

.sun {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  width: clamp(4.8rem, 7.2vw, 7.6rem);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: none;
  background: transparent;
  transform: translate(-50%, -50%);
}

.sun::before {
  position: absolute;
  inset: -34%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 214, 113, 0.36),
    rgba(255, 153, 48, 0.09) 43%,
    transparent 72%
  );
  filter: blur(7px);
  animation: corona 4s ease-in-out infinite alternate;
}

.sun__surface {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #fff7be 0 5%, transparent 13%),
    radial-gradient(circle at 70% 75%, #ff8c22 0 8%, transparent 17%),
    radial-gradient(circle at 42% 58%, #ffe575, #ffb127 53%, #ff7618 100%);
  box-shadow:
    0 0 10px #fff4ae,
    0 0 35px rgba(255, 178, 53, 0.92),
    0 0 90px rgba(255, 115, 22, 0.42);
  animation: sun-turn 16s linear infinite;
}

.sun__surface::after {
  position: absolute;
  inset: -25%;
  content: "";
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 205, 0.38) 0 1px,
    transparent 1.6px
  );
  background-size: 8px 7px;
  mix-blend-mode: overlay;
}

.sun__label {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  color: rgba(255, 234, 187, 0.72);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.54rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.planet-node {
  --size: 1rem;
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: max(2.7rem, var(--size));
  height: max(2.7rem, var(--size));
  padding: 0;
  border: 0;
  border-radius: 50%;
  outline: none;
  background: transparent;
  transform: translate(-50%, -50%);
  transition:
    filter 0.35s ease,
    opacity 0.35s ease;
}

.planet {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  box-shadow:
    inset -0.24rem -0.06rem 0.4rem rgba(0, 0, 0, 0.48),
    0 0 11px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -50%);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.planet__shade {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent 45%, rgba(0, 0, 0, 0.4));
}

.planet-label {
  position: absolute;
  top: calc(50% + var(--size) * 0.5 + 0.58rem);
  left: 50%;
  color: rgba(239, 237, 230, 0);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.5rem;
  letter-spacing: 0.13em;
  pointer-events: none;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%) translateY(4px);
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.planet-label small {
  margin-left: 0.25rem;
  color: var(--faint);
  font-size: 0.43rem;
}

.planet-node:hover .planet,
.planet-node:focus-visible .planet,
.planet-node.is-active .planet {
  box-shadow:
    inset -0.24rem -0.06rem 0.4rem rgba(0, 0, 0, 0.38),
    0 0 0 5px rgba(255, 255, 255, 0.055),
    0 0 22px rgba(255, 255, 255, 0.23);
  transform: translate(-50%, -50%) scale(1.22);
}

.planet-node:hover .planet-label,
.planet-node:focus-visible .planet-label,
.planet-node.is-active .planet-label {
  color: rgba(239, 237, 230, 0.74);
  transform: translateX(-50%) translateY(0);
}

.sun.is-active::after,
.sun:hover::after,
.sun:focus-visible::after {
  position: absolute;
  inset: -15%;
  content: "";
  border: 1px solid rgba(255, 221, 135, 0.52);
  border-radius: 50%;
}

.mercury {
  --size: clamp(0.55rem, 0.72vw, 0.8rem);
}

.mercury .planet {
  background:
    radial-gradient(circle at 32% 30%, #b7b3aa 0 5%, transparent 6%),
    radial-gradient(circle at 65% 63%, #57544f 0 8%, transparent 9%),
    #89847b;
}

.venus {
  --size: clamp(0.85rem, 1.15vw, 1.3rem);
}

.venus .planet {
  background:
    repeating-linear-gradient(8deg, transparent 0 4px, rgba(255, 240, 183, 0.18) 5px 7px),
    #d69d52;
}

.earth {
  --size: clamp(0.92rem, 1.22vw, 1.42rem);
}

.earth .planet {
  background:
    radial-gradient(ellipse at 35% 38%, #6dab63 0 13%, transparent 14%),
    radial-gradient(ellipse at 70% 62%, #83b76d 0 11%, transparent 12%),
    linear-gradient(145deg, #7cd1e9 0 27%, #2273ba 65%, #0e3e82);
  box-shadow:
    inset -0.3rem -0.06rem 0.45rem rgba(0, 10, 45, 0.55),
    0 0 10px rgba(86, 182, 255, 0.42);
}

.moon {
  position: absolute;
  top: -0.32rem;
  right: -0.42rem;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: #cbc7bd;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
}

.mars {
  --size: clamp(0.68rem, 0.88vw, 1rem);
}

.mars .planet {
  background:
    radial-gradient(circle at 64% 35%, #8e3d28 0 12%, transparent 13%),
    radial-gradient(circle at 38% 68%, #e47d4e 0 7%, transparent 8%),
    #b64f32;
}

.jupiter {
  --size: clamp(2rem, 3.1vw, 3.55rem);
}

.jupiter .planet {
  background: repeating-linear-gradient(
    0deg,
    #c68f69 0 8%,
    #ead4ad 9% 19%,
    #966149 20% 27%,
    #e5c59d 28% 39%
  );
}

.planet__spot {
  position: absolute;
  z-index: 2;
  right: 13%;
  bottom: 27%;
  width: 25%;
  height: 12%;
  border-radius: 50%;
  background: rgba(142, 55, 35, 0.8);
  transform: rotate(-6deg);
}

.saturn {
  --size: clamp(1.65rem, 2.5vw, 2.85rem);
}

.saturn .planet {
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    #cfae72 0 13%,
    #edd9a9 14% 26%,
    #b78b57 27% 33%,
    #dbc28c 34% 45%
  );
}

.saturn-ring,
.uranus-ring {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 178%;
  height: 42%;
  border: max(1px, calc(var(--size) * 0.08)) solid rgba(220, 196, 146, 0.8);
  border-right-color: rgba(143, 116, 74, 0.38);
  border-left-color: rgba(248, 227, 182, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(255, 221, 159, 0.45);
  transform: translate(-50%, -50%) rotate(-13deg);
}

.uranus {
  --size: clamp(1.22rem, 1.85vw, 2.1rem);
}

.uranus .planet {
  background: linear-gradient(135deg, #c6f0ec, #78bfc1 62%, #407a89);
}

.uranus-ring {
  width: 148%;
  height: 16%;
  border-width: 1px;
  border-color: rgba(183, 234, 234, 0.42);
  transform: translate(-50%, -50%) rotate(72deg);
}

.neptune {
  --size: clamp(1.15rem, 1.72vw, 1.95rem);
}

.neptune .planet {
  background:
    radial-gradient(ellipse at 38% 67%, rgba(200, 232, 255, 0.28) 0 9%, transparent 10%),
    linear-gradient(140deg, #5e91f1, #244eb4 61%, #102064);
  box-shadow:
    inset -0.28rem -0.06rem 0.42rem rgba(0, 3, 35, 0.62),
    0 0 12px rgba(72, 125, 255, 0.35);
}

.pluto {
  --size: clamp(0.42rem, 0.58vw, 0.66rem);
}

.pluto .planet {
  background:
    radial-gradient(circle at 35% 32%, #ead7bd 0 17%, transparent 18%),
    #9d826d;
}

.planet-card {
  position: fixed;
  z-index: 25;
  right: clamp(1.25rem, 3.7vw, 4rem);
  bottom: clamp(8.3rem, 18vh, 11.4rem);
  width: min(18.5rem, 22vw);
  padding: 1.2rem 0 0;
  border-top: 1px solid var(--line);
  opacity: 1;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.planet-card.is-changing {
  opacity: 0;
  transform: translateY(7px);
}

.planet-card__index,
.planet-card__type {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
}

.planet-card__index {
  float: right;
  color: var(--faint);
  font-size: 0.52rem;
  letter-spacing: 0.11em;
}

.planet-card__type {
  margin: 0 0 0.75rem;
  color: #c9af77;
  font-size: 0.54rem;
  letter-spacing: 0.13em;
}

.planet-card h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.045em;
}

.planet-card__poem {
  min-height: 3.4em;
  margin: 0.7rem 0 1.1rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 300;
  line-height: 1.65;
}

.planet-card__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.planet-card__facts div {
  min-width: 0;
}

.planet-card dt {
  overflow: hidden;
  margin-bottom: 0.28rem;
  color: var(--faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.planet-card dd {
  margin: 0;
  color: rgba(244, 240, 232, 0.8);
  font-size: 0.65rem;
  white-space: nowrap;
}

.control-deck {
  position: fixed;
  z-index: 50;
  right: clamp(1.25rem, 3.7vw, 4rem);
  bottom: clamp(1.2rem, 2.7vw, 2.5rem);
  left: clamp(1.25rem, 3.7vw, 4rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.3rem);
}

.time-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.round-control,
.speed-control {
  height: 2.55rem;
  border: 1px solid var(--line);
  outline: none;
  background: rgba(8, 8, 18, 0.46);
  backdrop-filter: blur(14px);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}

.round-control:hover,
.round-control:focus-visible,
.speed-control:hover,
.speed-control:focus-visible {
  border-color: rgba(255, 215, 132, 0.45);
  background: rgba(56, 43, 24, 0.32);
}

.round-control {
  width: 2.55rem;
  border-radius: 50%;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.63rem;
}

.speed-control {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 0.9rem;
  border-radius: 100px;
  color: var(--faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.48rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.speed-control strong {
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 500;
}

.planet-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(0.6rem, 1.15vw, 1.4rem);
  overflow-x: auto;
  scrollbar-width: none;
}

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

.planet-nav__item {
  position: relative;
  flex: 0 0 auto;
  padding: 0.7rem 0 0.55rem;
  border: 0;
  outline: none;
  color: rgba(239, 236, 227, 0.4);
  background: transparent;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.51rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.planet-nav__item span {
  margin-right: 0.28rem;
  color: rgba(244, 202, 118, 0.48);
  font-size: 0.42rem;
}

.planet-nav__item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: #e3c17d;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.planet-nav__item:hover,
.planet-nav__item:focus-visible,
.planet-nav__item.is-active {
  color: rgba(247, 244, 235, 0.9);
}

.planet-nav__item.is-active::after {
  transform: scaleX(1);
}

.planet-nav__item--dwarf {
  opacity: 0.62;
}

.scale-note {
  color: var(--faint);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.46rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cursor {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(240, 234, 219, 0.68);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s ease,
    height 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.cursor::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  content: "";
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
}

.cursor.is-hovering {
  width: 2.9rem;
  height: 2.9rem;
  border-color: rgba(255, 202, 100, 0.58);
  background: rgba(255, 197, 86, 0.08);
}

@keyframes grain {
  0% {
    transform: translate(2%, -3%);
  }
  50% {
    transform: translate(-3%, 2%);
  }
  100% {
    transform: translate(1%, 3%);
  }
}

@keyframes signal {
  50% {
    opacity: 0.25;
    transform: scale(0.64);
  }
}

@keyframes corona {
  from {
    opacity: 0.64;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1.12);
  }
}

@keyframes sun-turn {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .intro {
    top: 7rem;
    width: 46vw;
  }

  h1 {
    font-size: clamp(3.3rem, 8.2vw, 5.4rem);
  }

  .solar-system {
    top: 15vh;
    right: -15vw;
    width: 84vw;
    height: 68vh;
  }

  .planet-card {
    right: auto;
    bottom: 8rem;
    left: 4vw;
    width: 31vw;
  }

  .scale-note {
    display: none;
  }

  .control-deck {
    grid-template-columns: auto minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  body {
    overflow: hidden;
  }

  .mission-readout__line,
  .mission-readout span:nth-child(3) {
    display: none;
  }

  .intro {
    top: 6.4rem;
    width: calc(100vw - 2.5rem);
  }

  .eyebrow {
    margin-bottom: 1rem;
  }

  h1 {
    max-width: 7.6ch;
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .intro__copy {
    display: none;
  }

  .solar-system {
    top: 24vh;
    right: -39vw;
    width: 138vw;
    height: 59vh;
    opacity: 0.88;
  }

  .planet-card {
    right: 1.25rem;
    bottom: 6.6rem;
    left: 1.25rem;
    width: auto;
    padding: 0.75rem 0 0;
    background: linear-gradient(90deg, rgba(2, 2, 7, 0.82), transparent);
  }

  .planet-card__type,
  .planet-card__poem {
    display: none;
  }

  .planet-card h2 {
    margin-bottom: 0.7rem;
  }

  .planet-card__facts {
    width: min(23rem, 100%);
  }

  .control-deck {
    right: 1.25rem;
    bottom: 1.1rem;
    left: 1.25rem;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.8rem;
  }

  .speed-control span {
    display: none;
  }

  .speed-control {
    padding: 0 0.75rem;
  }

  .planet-nav {
    gap: 1rem;
  }
}

@media (pointer: coarse) {
  body,
  button,
  a {
    cursor: auto;
  }

  .cursor {
    display: none;
  }
}

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