:root {
  color-scheme: dark;
  --taxi: #ffd028;
  --taxi-dark: #ba8816;
  --ink: #07090c;
  --panel: rgba(13, 18, 23, 0.82);
  --panel-solid: #111820;
  --line: rgba(255, 255, 255, 0.13);
  --muted: #9ca8ad;
  --text: #f5f7ee;
  --green: #49d29a;
  --red: #f06b55;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #050608;
  color: var(--text);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.experience {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -15%, rgba(255, 208, 40, 0.2), transparent 34rem),
    linear-gradient(180deg, #080b0d 0%, #050608 100%);
}

.hero {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  overflow: hidden;
  z-index: 5;
  transition: transform 950ms cubic-bezier(0.76, 0, 0.24, 1), opacity 650ms ease, filter 850ms ease;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1200ms cubic-bezier(0.76, 0, 0.24, 1);
  animation: kenburns 26s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1.04) translate(0, 0);
  }
  to {
    transform: scale(1.13) translate(-1.6%, -1.1%);
  }
}

.hero__weather {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.5) 34%, rgba(0, 0, 0, 0.16) 64%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 92vh;
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 36px 0 12vh;
}

.kicker,
.cab__eyebrow,
.panel-heading p,
.screen-top span,
.ticket-lines span,
.field span,
.shipping-progress__copy span,
.peptide-card p,
.taxi-meter span {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 10px 0 14px;
  max-width: 900px;
  color: #fff8c6;
  font-size: clamp(3rem, 10vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.78);
}

.hero__copy {
  max-width: 520px;
  margin: 0 0 28px;
  color: #dce5df;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

.enter-button,
.submit-button,
.add-button,
.filter-button,
.icon-button,
.quantity-controls button {
  border: 0;
  border-radius: 8px;
}

.enter-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 24px;
  background: var(--taxi);
  color: #151006;
  font-weight: 900;
  box-shadow: 0 14px 44px rgba(255, 208, 40, 0.3);
}

.enter-button__arrow {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #151006;
  color: var(--taxi);
}

.is-entered .hero {
  pointer-events: none;
  opacity: 0;
  transform: scale(1.28) translateY(8vh);
  filter: blur(16px);
}

/* Camera push: the image rushes in faster than its frame, like driving into the cab. */
.is-entered .hero__image {
  animation: none;
  transform: scale(1.95) translateY(-2%);
}

.transition-flash {
  position: fixed;
  inset: 0;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 58%, rgba(255, 238, 176, 0.92), rgba(255, 208, 40, 0) 58%);
}

.is-entered .transition-flash {
  animation: bloom 900ms ease-out;
}

@keyframes bloom {
  0% {
    opacity: 0;
  }
  22% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
  }
}

.cab {
  min-height: 100vh;
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  pointer-events: none;
  transition: opacity 620ms ease 380ms, transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 320ms;
}

.is-entered .cab {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cab__glass {
  position: fixed;
  inset: 0 0 auto;
  height: 44vh;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(21, 34, 43, 0.28), rgba(5, 6, 8, 0.92)),
    url("./assets/cinematic-taxi.png") center 32% / cover;
  filter: saturate(0.9);
}

.cab__glass::after {
  content: "";
  position: absolute;
  inset: auto 4vw 0;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 0;
  border-radius: 48% 48% 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
}

.city-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 208, 40, 0.18), transparent 30%, rgba(82, 210, 169, 0.15) 68%, transparent),
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 8, 0.78) 100%);
}

.rain {
  position: absolute;
  inset: -120px 0 0;
  opacity: 0.36;
  background-image: repeating-linear-gradient(102deg, transparent 0 18px, rgba(255, 255, 255, 0.28) 19px 20px, transparent 21px 44px);
  animation: rainSweep 1.5s linear infinite;
}

.rain--two {
  opacity: 0.18;
  animation-duration: 2.2s;
  transform: scaleX(-1);
}

@keyframes rainSweep {
  to {
    transform: translate3d(-72px, 120px, 0);
  }
}

.cab__header,
.cab__layout {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100vw - 32px));
  margin: 0 auto;
}

.cab__header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 28px 0 18px;
}

.cab__header h2 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 2.8vw, 2.6rem);
  line-height: 1.05;
}

.icon-button {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 1.8rem;
}

.status-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 12, 15, 0.68);
  color: #dce5df;
  font-size: 0.85rem;
  font-weight: 800;
}

.status-light span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.cab__layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(360px, 1fr) minmax(280px, 340px);
  gap: 16px;
  align-items: stretch;
  padding: 0 0 28px;
}

.menu-panel,
.checkout-panel,
.dashboard {
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

.menu-panel,
.checkout-panel {
  border-radius: 8px;
  padding: 16px;
}

.panel-heading,
.screen-top,
.ticket-lines div,
.taxi-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.panel-heading strong {
  color: #fff4b1;
  font-size: 0.92rem;
}

.filter-bar {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  overflow-x: auto;
  padding-bottom: 4px;
}

.filter-button {
  flex: 0 0 auto;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #cfd7d0;
  font-size: 0.84rem;
  font-weight: 800;
}

.filter-button.is-active {
  background: var(--taxi);
  color: #16120a;
}

.peptide-list {
  display: grid;
  gap: 10px;
  max-height: calc(100vh - 190px);
  overflow-y: auto;
  padding-right: 3px;
}

.peptide-list__group-label {
  margin: 6px 2px 2px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.peptide-list__group-label:first-child {
  margin-top: 0;
}

.peptide-card {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 180ms ease, background 180ms ease;
}

.peptide-card:hover {
  border-color: color-mix(in srgb, var(--accent), transparent 52%);
  background: rgba(255, 255, 255, 0.075);
}

.vial {
  display: grid;
  place-items: center;
}

.vial span {
  width: 16px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 5px 5px 4px 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 20%),
    linear-gradient(180deg, transparent 36%, color-mix(in srgb, var(--accent), transparent 30%) 37% 88%, transparent 89%);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent), transparent 72%);
}

.peptide-card__body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 0;
}

.peptide-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.peptide-card__title {
  min-width: 0;
}

.peptide-card__tags {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}

.cat-tag {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.popular-tag {
  padding: 2px 7px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--taxi), transparent 80%);
  color: #ffd86a;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.peptide-card h3 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.18;
}

.peptide-card__price {
  flex: 0 0 auto;
  text-align: right;
}

.peptide-card__price strong {
  display: block;
  color: #fff4b1;
  font-size: 1.16rem;
  line-height: 1;
}

.peptide-card__price span {
  display: block;
  margin-top: 4px;
  color: #aeb9b3;
  font-size: 0.74rem;
  white-space: nowrap;
}

.peptide-card__bottom {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.strength-pills {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-width: 0;
}

.strength-pill {
  min-width: 30px;
  padding: 4px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #cfd7d0;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.strength-pill:hover {
  background: rgba(255, 255, 255, 0.16);
}

.strength-pill.is-active {
  background: color-mix(in srgb, var(--accent), transparent 55%);
  border-color: color-mix(in srgb, var(--accent), transparent 28%);
  color: #fff;
}

.dose-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 28%);
  border-radius: 6px;
  background: color-mix(in srgb, var(--accent), transparent 55%);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.peptide-card__bottom .add-button {
  position: relative;
  flex: 0 0 auto;
}

.add-button.is-added {
  background: color-mix(in srgb, var(--taxi), transparent 78%);
  color: #ffe9a6;
}

.add-button__count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: 7px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--taxi);
  color: #16120a;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.add-button {
  min-height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 850;
}

.add-button:hover,
.icon-button:hover,
.quantity-controls button:hover {
  background: rgba(255, 255, 255, 0.19);
}

.dashboard {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: 8px;
  padding: 16px;
}

.dashboard::before {
  content: "";
  position: absolute;
  inset: auto -10% -180px;
  height: 430px;
  border-radius: 48% 48% 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%),
    linear-gradient(90deg, #151a1e, #0b0e11 35%, #191612 52%, #0d1013 72%, #11161a);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.taxi-meter {
  position: relative;
  z-index: 1;
  padding: 14px;
  border: 1px solid rgba(255, 208, 40, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 208, 40, 0.15), rgba(255, 255, 255, 0.055));
}

.taxi-meter strong {
  display: block;
  margin-top: 4px;
  color: #fff4ad;
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
}

.console {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 22px 0 70px;
}

.console__screen {
  width: min(96%, 620px);
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(22, 30, 32, 0.96), rgba(7, 11, 14, 0.96)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.035) 29px 30px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 32px 70px rgba(0, 0, 0, 0.36);
  padding: 16px;
}

.screen-top {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.screen-top strong {
  color: var(--green);
}

.cart-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.empty-cart {
  display: grid;
  place-items: center;
  min-height: 270px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.empty-cart__icon {
  width: 80px;
  height: 54px;
  border: 3px solid rgba(255, 208, 40, 0.42);
  border-top-width: 12px;
  border-radius: 8px;
  box-shadow: inset 0 -14px 0 rgba(255, 208, 40, 0.12);
}

.cart-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.cart-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span {
  margin-top: 3px;
  color: #aeb9b3;
  font-size: 0.84rem;
}

.quantity-controls {
  display: grid;
  grid-template-columns: 30px 28px 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-controls button {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.quantity-controls b {
  text-align: center;
  font-size: 0.84rem;
}

.ticket-lines {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticket-lines strong {
  color: #fff4ad;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.field input,
.field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 12px;
  outline: none;
}

.field select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, #fff4ad 50%) right 17px center / 7px 7px no-repeat,
    linear-gradient(135deg, #fff4ad 50%, transparent 50%) right 12px center / 7px 7px no-repeat,
    rgba(255, 255, 255, 0.08);
}

.field select option,
.field select optgroup {
  background: #111820;
  color: #f5f7ee;
}

.field input:focus,
.field select:focus {
  border-color: rgba(255, 208, 40, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 208, 40, 0.14);
}

.shipping-progress {
  display: grid;
  gap: 9px;
  margin: -4px 0 16px;
  padding: 12px;
  border: 1px solid rgba(255, 208, 40, 0.2);
  border-radius: 8px;
  background: rgba(255, 208, 40, 0.07);
}

.shipping-progress__copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shipping-progress__copy strong {
  color: #fff4ad;
  font-size: 0.82rem;
  white-space: nowrap;
}

.shipping-progress__track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
}

.shipping-progress__track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--taxi), var(--green));
  box-shadow: 0 0 18px rgba(73, 210, 154, 0.42);
  transition: width 260ms ease;
}

.submit-button {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  background: var(--taxi);
  color: #151006;
  font-weight: 950;
}

.submit-button:disabled {
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.12);
  color: #818a86;
}

.research-note {
  margin: 14px 0 0;
  color: #9ba5a0;
  font-size: 0.78rem;
  line-height: 1.55;
}

.order-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 12px;
  width: min(420px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid rgba(73, 210, 154, 0.3);
  border-radius: 8px;
  background: rgba(10, 16, 18, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.order-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.order-toast__light {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.order-toast strong,
.order-toast p {
  margin: 0;
}

.order-toast p {
  margin-top: 4px;
  color: #b8c5bf;
  line-height: 1.45;
}

.fly-vial {
  position: fixed;
  z-index: 30;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 7px 7px 5px 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent 24%),
    color-mix(in srgb, var(--accent), transparent 28%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent), transparent 56%);
  pointer-events: none;
  will-change: transform, opacity;
}

.sound-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(9, 12, 15, 0.72);
  backdrop-filter: blur(10px);
  color: #dce5df;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: border-color 200ms ease, color 200ms ease, background 200ms ease;
}

.sound-toggle:hover {
  background: rgba(15, 20, 24, 0.85);
}

.sound-toggle.is-on {
  border-color: rgba(255, 208, 40, 0.55);
  color: #fff4ad;
}

.sound-toggle__icon {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 2px 0 0 2px;
  background: currentColor;
  clip-path: polygon(0 32%, 38% 32%, 70% 0, 70% 100%, 38% 68%, 0 68%);
}

.sound-toggle__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 84%;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border: 2px solid currentColor;
  border-left: 0;
  border-radius: 0 8px 8px 0;
  opacity: 0;
  transition: opacity 200ms ease;
}

.sound-toggle.is-on .sound-toggle__icon::after {
  opacity: 1;
}

@media (max-width: 1120px) {
  .cab__layout {
    grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  }

  .checkout-panel {
    grid-column: 1 / -1;
  }

  .peptide-list {
    max-height: 540px;
  }
}

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

  .hero__content {
    width: min(100vw - 28px, 1180px);
    justify-content: flex-end;
    min-height: 100vh;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 17vw, 5.6rem);
  }

  .cab__header {
    width: min(100vw - 24px, 1440px);
    grid-template-columns: 42px 1fr;
  }

  .status-light {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .cab__layout {
    width: min(100vw - 24px, 1440px);
    grid-template-columns: 1fr;
  }

  .dashboard {
    min-height: 560px;
    order: -1;
  }

  .taxi-meter {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .console {
    min-height: 430px;
    padding-bottom: 44px;
  }

  .console__screen {
    width: 100%;
    min-height: 330px;
  }

  .peptide-list {
    max-height: none;
  }

  .peptide-card__body {
    display: grid;
  }

  .peptide-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
  }
}

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