:root {
  --bg: #07090c;
  --ink: #f4f1e9;
  --muted: rgba(244, 241, 233, 0.64);
  --faint: rgba(244, 241, 233, 0.13);
  --line: rgba(244, 241, 233, 0.22);
  --accent: #f4b860;
  --accent-rgb: 244, 184, 96;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background: var(--bg);
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.backgrounds,
.background,
.background-shade,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.background {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.1s var(--ease), transform 8s ease-out;
  will-change: opacity, transform;
}

.background.is-active {
  opacity: 1;
  transform: scale(1);
}

.background--primary {
  background-image: url("assets/backgrounds/08-you.jpg");
}

.background-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 9, 0.91) 0%, rgba(5, 6, 9, 0.68) 35%, rgba(5, 6, 9, 0.1) 68%),
    linear-gradient(180deg, rgba(5, 6, 9, 0.48) 0%, transparent 30%, rgba(5, 6, 9, 0.62) 100%),
    radial-gradient(circle at 62% 42%, transparent 0%, rgba(5, 6, 9, 0.15) 48%, rgba(5, 6, 9, 0.48) 100%);
}

.grain {
  opacity: 0.09;
  background:
    repeating-radial-gradient(circle at 18% 26%, rgba(255,255,255,.22) 0 .4px, transparent .7px 3px),
    repeating-radial-gradient(circle at 72% 63%, rgba(255,255,255,.16) 0 .35px, transparent .65px 2.6px);
  background-size: 7px 9px, 11px 8px;
  mix-blend-mode: overlay;
}

.app {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand-mark {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.brand-mark i {
  width: 3px;
  border-radius: 3px;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(var(--accent-rgb), 0.5);
}

.brand-mark i:nth-child(1) {
  height: 8px;
}

.brand-mark i:nth-child(2) {
  height: 23px;
}

.brand-mark i:nth-child(3) {
  height: 14px;
}

.topbar-meta {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 22px);
}

.position-label {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.autoplay-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease;
}

.autoplay-button:hover,
.autoplay-button[aria-pressed="true"] {
  color: var(--ink);
}

.autoplay-status {
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--accent);
  filter: drop-shadow(0 0 5px rgba(var(--accent-rgb), 0.7));
}

.autoplay-button[aria-pressed="true"] .autoplay-status {
  width: 7px;
  height: 8px;
  border: 0;
  background: linear-gradient(
    90deg,
    var(--accent) 0 2px,
    transparent 2px 5px,
    var(--accent) 5px 7px
  );
  animation: autoplay-pulse 1.4s ease-in-out infinite;
}

.design-credit {
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 200ms ease;
}

.design-credit:hover {
  color: var(--accent);
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(7, 9, 12, 0.18);
  cursor: pointer;
  transition: border-color 200ms ease, background 200ms ease;
}

.icon-button:hover {
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.12);
}

.experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(220px, 0.62fr) minmax(270px, 0.6fr);
  align-items: center;
  gap: clamp(28px, 4vw, 78px);
  width: min(100%, 1600px);
  margin: 0 auto;
  padding: 2vh clamp(22px, 4vw, 68px) 3vh;
}

.title-block {
  max-width: 610px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 22px;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 14px currentColor;
}

.eyebrow-count {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.38);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(64px, 8.4vw, 146px);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-wrap: balance;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  transform-origin: left center;
}

.dimension {
  margin: 25px 0 0;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(14px, 1.15vw, 18px);
  letter-spacing: 0.03em;
}

.description {
  max-width: 470px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.55;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: clamp(24px, 4vh, 44px);
}

.primary-button {
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid rgba(var(--accent-rgb), 0.52);
  border-radius: 3px;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: background 200ms ease, transform 200ms ease;
}

.primary-button span {
  margin-left: 17px;
  color: var(--accent);
  font-size: 17px;
}

.primary-button:hover {
  background: rgba(var(--accent-rgb), 0.24);
  transform: translateY(-2px);
}

.text-button {
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 200ms ease;
}

.text-button:hover {
  color: var(--ink);
}

.shuffle {
  margin-right: 7px;
  color: var(--accent);
}

.scale-visual {
  position: relative;
  justify-self: center;
  width: clamp(220px, 25vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.88;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.21);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 15px rgba(var(--accent-rgb), 0.9);
}

.orbit::before {
  top: 15%;
  left: 17%;
}

.orbit::after {
  right: 4%;
  bottom: 32%;
}

.orbit--outer {
  animation: spin 32s linear infinite;
}

.orbit--inner {
  inset: 14%;
  border-style: dashed;
  opacity: 0.55;
  animation: spin-reverse 22s linear infinite;
}

.measure-line {
  position: absolute;
  left: 50%;
  top: 11%;
  bottom: 11%;
  width: 1px;
  background: linear-gradient(transparent, var(--accent) 20%, var(--accent) 80%, transparent);
}

.measure-cap {
  position: absolute;
  left: -15px;
  width: 31px;
  height: 1px;
  background: var(--accent);
}

.measure-cap--top {
  top: 0;
}

.measure-cap--bottom {
  bottom: 0;
}

.measure-figure {
  position: absolute;
  left: -6px;
  top: 28%;
  width: 12px;
  height: 44%;
  border-radius: 50% 50% 35% 35%;
  background: linear-gradient(var(--accent), rgba(var(--accent-rgb), 0.15));
  box-shadow: 0 0 25px rgba(var(--accent-rgb), 0.42);
  opacity: 0.78;
}

.measure-figure::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.scale-readout {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78%;
  color: var(--ink);
  transform: translate(-50%, -47%);
  text-align: center;
  text-shadow: 0 2px 20px #000;
}

.familiar-measure {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.familiar-measure strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(45px, 5.3vw, 82px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.familiar-measure.is-compact strong {
  font-size: clamp(32px, 3.8vw, 58px);
}

.familiar-measure span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(14px, 1.7vw, 23px);
  font-weight: 500;
}

.scale-label {
  margin: 12px 0 15px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.technical-toggle {
  padding: 3px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.technical-toggle span {
  display: inline-block;
  width: 9px;
  margin-left: 4px;
  color: var(--accent);
}

.technical-toggle:hover {
  color: var(--ink);
  border-bottom-color: var(--accent);
}

.technical-value {
  margin: 8px 0 0;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0.03em;
}

.comparison-card {
  align-self: center;
  max-width: 360px;
  padding: 23px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(7, 9, 12, 0.48);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px) saturate(120%);
}

.comparison-topline,
.comparison-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.comparison-topline {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ratio-badge {
  padding: 5px 7px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 2px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 8px;
}

.comparison-lead {
  margin: 27px 0 8px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.comparison-copy {
  min-height: 116px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.7vw, 27px);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.comparison-rule {
  height: 1px;
  margin: 25px 0 16px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.45;
}

.comparison-footer {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-footer strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 500;
}

.scale-deck {
  padding: 18px clamp(22px, 4vw, 68px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(5, 6, 9, 0.7);
  backdrop-filter: blur(16px);
}

.deck-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1464px;
  margin: 0 auto 25px;
}

.realm-tabs {
  display: flex;
  gap: clamp(16px, 3vw, 38px);
}

.realm-tab {
  position: relative;
  padding: 2px 0 10px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.17em;
  cursor: pointer;
}

.realm-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 260ms var(--ease);
}

.realm-tab.active,
.realm-tab:hover {
  color: var(--ink);
}

.realm-tab.active::after {
  right: 0;
}

.hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hint kbd {
  padding: 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
}

.hint span {
  margin: 0 7px;
}

.rail-wrap {
  max-width: 1464px;
  margin: 0 auto;
}

.rail-landmarks {
  position: relative;
  height: 36px;
  color: rgba(255, 255, 255, 0.44);
}

.rail-landmarks > span {
  position: absolute;
  left: var(--x);
  bottom: 7px;
  display: block;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.rail-landmarks > span:first-child {
  transform: none;
  text-align: left;
}

.rail-landmarks > span:last-child {
  transform: translateX(-100%);
  text-align: right;
}

.rail-landmarks b,
.rail-landmarks small {
  display: block;
  font-weight: 500;
}

.rail-landmarks b {
  color: rgba(255, 255, 255, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.rail-landmarks small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rail {
  position: relative;
  height: 30px;
}

.rail-gradient,
.rail-progress,
.rail-ticks {
  position: absolute;
  left: 0;
  right: 0;
  top: 13px;
  height: 2px;
}

.rail-gradient {
  background: linear-gradient(90deg, #ea6376, #ba63bf 20%, #e6b158 43%, #74b79c 60%, #76a6dc 78%, #755bea);
  opacity: 0.36;
}

.rail-progress {
  right: auto;
  width: 36.2%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(var(--accent-rgb), 0.55);
  transition: background 450ms ease;
}

.rail-ticks {
  height: 12px;
  top: 8px;
  background: repeating-linear-gradient(90deg, transparent 0 calc((100% / 42) - 1px), rgba(255, 255, 255, 0.18) calc((100% / 42) - 1px) calc(100% / 42));
}

#scaleSlider {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 30px;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

.thumb-caption {
  position: absolute;
  z-index: 2;
  top: -10px;
  left: 36.2%;
  min-width: 83px;
  padding: 5px 7px;
  border: 1px solid rgba(var(--accent-rgb), 0.6);
  border-radius: 2px;
  background: #0b0c0f;
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.18);
  color: var(--ink);
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.thumb-caption::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 12px;
  background: var(--accent);
}

.thumb-caption strong,
.thumb-caption span {
  display: block;
}

.thumb-caption strong {
  overflow: hidden;
  max-width: 110px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 8px;
  letter-spacing: 0.11em;
}

.thumb-caption span {
  margin-top: 2px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 7px;
}

.about {
  width: min(560px, calc(100% - 36px));
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
  background: rgba(10, 12, 17, 0.94);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.7);
  color: var(--ink);
  backdrop-filter: blur(24px);
}

.about::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  right: 17px;
  top: 14px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 27px;
  cursor: pointer;
}

.dialog-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.about p:not(.dialog-kicker) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.about .dialog-note {
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--faint);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noscript {
  position: fixed;
  z-index: 10;
  inset: auto 20px 20px;
  padding: 16px;
  background: #111;
  color: white;
}

.is-changing h1,
.is-changing .dimension,
.is-changing .description,
.is-changing .comparison-card {
  animation: content-in 520ms var(--ease) both;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(9px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes autoplay-pulse {
  50% {
    opacity: 0.45;
  }
}

@media (max-width: 1050px) {
  .experience {
    grid-template-columns: minmax(300px, 1fr) minmax(230px, 0.72fr);
    grid-template-rows: auto auto;
    gap: 20px 36px;
  }

  .title-block {
    grid-row: 1 / 3;
  }

  .scale-visual {
    position: relative;
    right: auto;
    grid-column: 2;
    grid-row: 1;
    width: clamp(190px, 24vw, 250px);
    opacity: 0.88;
  }

  .comparison-card {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    padding: 18px;
  }

  .comparison-copy {
    min-height: 0;
    font-size: 19px;
  }
}

@media (max-width: 720px) {
  body {
    overflow-y: auto;
  }

  .app {
    min-height: 100svh;
    grid-template-rows: auto minmax(620px, 1fr) auto;
  }

  .topbar {
    height: 70px;
    padding-inline: 18px;
  }

  .position-label {
    display: none;
  }

  .experience {
    display: block;
    padding-top: 9vh;
  }

  .title-block {
    max-width: 94%;
  }

  h1 {
    font-size: clamp(62px, 21vw, 108px);
  }

  .description {
    max-width: 90%;
  }

  .scale-visual {
    position: relative;
    top: auto;
    right: auto;
    width: min(72vw, 300px);
    margin: 38px auto 0;
    opacity: 0.92;
  }

  .comparison-card {
    max-width: none;
    margin-top: 32px;
    padding: 19px;
  }

  .comparison-copy {
    min-height: 0;
    font-size: 21px;
  }

  .scale-deck {
    position: sticky;
    bottom: 0;
    z-index: 5;
  }

  .deck-toolbar {
    margin-bottom: 17px;
  }

  .hint {
    display: none;
  }

  .realm-tabs {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .rail-landmarks > span {
    display: none;
  }

  .rail-landmarks > span:nth-child(1),
  .rail-landmarks > span:nth-child(3),
  .rail-landmarks > span:nth-child(5),
  .rail-landmarks > span:nth-child(7),
  .rail-landmarks > span:nth-child(9),
  .rail-landmarks > span:nth-child(11) {
    display: block;
  }

  .background-shade {
    background:
      linear-gradient(90deg, rgba(5, 6, 9, 0.88), rgba(5, 6, 9, 0.4)),
      linear-gradient(180deg, rgba(5, 6, 9, 0.32), transparent 24%, rgba(5, 6, 9, 0.8));
  }
}

@media (max-width: 390px) {
  .brand > span:last-child {
    display: none;
  }

  .topbar-meta {
    gap: 10px;
  }

  .design-credit {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .autoplay-button {
    gap: 6px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .topbar {
    height: 68px;
  }

  .experience {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  h1 {
    font-size: clamp(60px, 7vw, 100px);
  }

  .description {
    margin-top: 12px;
  }

  .actions {
    margin-top: 20px;
  }

  .scale-deck {
    padding-top: 12px;
    padding-bottom: 15px;
  }

  .deck-toolbar {
    margin-bottom: 17px;
  }
}

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