:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.11);
  --text: #fff8ec;
  --muted: rgba(255, 248, 236, 0.62);
  --soft: rgba(255, 248, 236, 0.36);
  --gold: #ffd54f;
  --amber: #ff9800;
  --orange: #ff5f2e;
  --cyan: #63d9ff;
  --green: #70f0a2;
  --violet: #c88cff;
  --red: #ff596f;
  --curve: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(255, 213, 79, 0.15), transparent 60%),
    radial-gradient(ellipse at -20% 80%, rgba(99, 217, 255, 0.15), transparent 50%),
    radial-gradient(ellipse at 120% 40%, rgba(255, 89, 111, 0.1), transparent 50%),
    linear-gradient(90deg, rgba(255, 213, 79, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    #050200;
  background-size: 100% 100%, 100% 100%, 100% 100%, 78px 78px, 78px 78px;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0%, rgba(99, 217, 255, 0.08) 28%, transparent 44%),
    linear-gradient(250deg, transparent 12%, rgba(255, 95, 46, 0.1) 42%, transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #030303 84%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.26;
  background-image: url("/images/unnamed.png");
  background-size: min(62vw, 720px);
  background-repeat: no-repeat;
  background-position: right 8vw top 16vh;
  filter: saturate(0.6) contrast(1.2);
  mask-image: linear-gradient(90deg, transparent, #000 42%, transparent 88%);
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0c0703;
  color: var(--text);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.05rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(24px) saturate(150%);
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.topbar[data-elevated="true"] {
  padding-block: 0.7rem;
  background: rgba(0, 0, 0, 0.82);
  border-color: rgba(255, 213, 79, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
}

.brand img {
  display: block;
  width: auto;
  height: 46px;
  filter: drop-shadow(0 0 14px rgba(255, 170, 0, 0.54)) brightness(1.12);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.3vw, 2.3rem);
}

.site-nav a,
.order-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.28rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  transition: transform 0.22s var(--curve);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--gold);
}

.order-link {
  justify-self: end;
  min-width: 108px;
  padding: 0 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #050200;
  box-shadow: 0 0 34px rgba(255, 152, 0, 0.24);
  transition: transform 0.2s var(--curve), box-shadow 0.2s ease, filter 0.2s ease;
}

.order-link:hover {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 6px 28px rgba(255, 152, 0, 0.4);
  filter: brightness(1.1);
}

.supporter-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 10rem);
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(7.8rem, 13vh, 10rem) clamp(1.5rem, 5vw, 6rem) clamp(4rem, 8vh, 6rem);
}

.supporter-copy {
  position: relative;
  z-index: 10;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  position: relative;
  z-index: 10;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

h1::first-letter {
  color: var(--gold);
}

.lead {
  max-width: 660px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.35rem);
  font-weight: 600;
  line-height: 1.55;
}

.supporter-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  padding: 0 1.55rem;
  border: 1px solid rgba(255, 213, 79, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #050200;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 28px rgba(255, 152, 0, 0.26);
  transition: transform 0.2s var(--curve), box-shadow 0.2s ease, filter 0.2s ease;
}

.supporter-cta:hover,
.supporter-cta:focus-visible {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.4);
  filter: brightness(1.1);
  outline: none;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: min(100%, 610px);
  margin-top: clamp(2rem, 5vh, 4rem);
}

.signal-strip div {
  min-width: 0;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.signal-strip strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
}

.signal-strip span {
  display: block;
  margin-top: 0.35rem;
  color: var(--soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reel-stage {
  justify-self: center;
  width: min(100%, 430px);
  perspective: 1400px;
}

.phone-frame {
  position: relative;
  aspect-ratio: 9 / 19.5;
  width: min(82vw, 360px);
  max-height: min(85svh, 780px);
  min-height: 590px;
  margin-inline: auto;
  border-radius: 48px;
  background: #000;
  box-shadow:
    inset 0 0 0 2px #1f1f1f,
    inset 0 0 0 6px #000,
    inset 0 0 0 7px #2a2a2a,
    0 50px 100px -20px rgba(0, 0, 0, 0.9),
    0 30px 60px -30px rgba(255, 213, 79, 0.15);
  transform: rotateX(calc(var(--tilt-y, 0) * 1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.phone-hardware {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  pointer-events: none;
  z-index: -1;
  box-shadow: 
    inset 0 0 4px rgba(255, 255, 255, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, #444, #111, #444);
}

.button-mute, .button-vol-up, .button-vol-down, .button-power {
  position: absolute;
  background: linear-gradient(to right, #666, #222);
  border-radius: 2px 0 0 2px;
  width: 3px;
}

.button-mute { top: 110px; left: -3px; height: 26px; }
.button-vol-up { top: 160px; left: -3px; height: 50px; }
.button-vol-down { top: 220px; left: -3px; height: 50px; }

.button-power {
  top: 180px;
  right: -3px;
  left: auto;
  height: 70px;
  border-radius: 0 2px 2px 0;
  background: linear-gradient(to left, #666, #222);
}

.dynamic-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 32px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.15);
}

.dynamic-island .sensor {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #1a1a24, #000);
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}

.dynamic-island .camera {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #1a2a44, #050510);
  box-shadow: inset 0 0 2px rgba(255,255,255,0.2);
}

.phone-glass {
  position: absolute;
  inset: 6px;
  border-radius: 42px;
  pointer-events: none;
  z-index: 5;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 40%,
    transparent 40.1%,
    transparent 100%
  );
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.reel-viewport {
  position: absolute;
  inset: 6px;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 42px;
  background: #000;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scrollbar-width: none;
  outline: none;
}

.reel-viewport::-webkit-scrollbar {
  display: none;
}

.reel-card {
  position: relative;
  min-height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.reel-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  transform: scale(1.012);
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, transparent 38%, rgba(0, 0, 0, 0.88) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 42%);
}

.reel-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  padding: 2rem 1.35rem 1.45rem;
}

.reel-topline {
  position: absolute;
  top: 2.65rem;
  left: 1.2rem;
  right: 1.2rem;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
}

.reel-progress {
  height: 3px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.reel-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.reel-badge {
  justify-self: start;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.reel-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.avatar {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--supporter-accent), rgba(255, 255, 255, 0.06));
  color: #030303;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.34);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-name {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 900;
}

.reel-handle {
  display: block;
  margin-top: 0.16rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.reel-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.reel-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reel-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.reel-controls {
  position: absolute;
  top: 50%;
  right: -4.35rem;
  display: grid;
  gap: 0.75rem;
  transform: translateY(-50%);
}

.icon-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s var(--curve), border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px) scale(1.08);
  border-color: rgba(255, 213, 79, 0.56);
  background: rgba(255, 213, 79, 0.13);
  box-shadow: 0 8px 24px rgba(255, 213, 79, 0.25);
  outline: none;
}

.icon-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.12rem;
  font-weight: 900;
}

.supporter-band,
.feature-band {
  width: min(100%, 1380px);
  margin: 0 auto;
  padding: clamp(3.2rem, 8vw, 6.5rem) clamp(1rem, 4vw, 4.5rem);
}

.band-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.band-heading h2,
.feature-panel h2 {
  color: #fff;
  font-size: clamp(2.2rem, 5.6vw, 5.2rem);
  font-weight: 900;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-card {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: space-between;
  padding: 1.05rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, color-mix(in srgb, var(--supporter-accent) 22%, transparent), transparent 58%);
  text-decoration: none;
  transition: transform 0.28s var(--curve), border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.logo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, #000, transparent);
}

.logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), color-mix(in srgb, var(--supporter-accent) 30%, transparent), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo-card:hover::after {
  opacity: 1;
}

.logo-card:hover,
.logo-card:focus-visible {
  transform: translateY(-6px) scale(1.02);
  border-color: color-mix(in srgb, var(--supporter-accent) 52%, white);
  box-shadow: 0 12px 32px color-mix(in srgb, var(--supporter-accent) 15%, transparent);
  outline: none;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.7rem;
}

.logo-meta {
  position: relative;
  display: grid;
  gap: 0.35rem;
}

.logo-meta strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}

.logo-meta span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-card[data-has-reel="true"] .logo-meta span {
  color: var(--supporter-accent);
}

.feature-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 280px;
  padding: clamp(1.4rem, 4vw, 3.5rem);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background:
    radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(120deg, rgba(255, 213, 79, 0.13), transparent 38%),
    linear-gradient(260deg, rgba(99, 217, 255, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-panel a {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 213, 79, 0.48);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #050200;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 24px rgba(255, 152, 0, 0.25);
  transition: transform 0.2s var(--curve), box-shadow 0.2s ease, filter 0.2s ease;
}

.feature-panel a:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.4);
  filter: brightness(1.1);
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--curve), transform 0.8s var(--curve);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.reveal-fade.is-visible {
  opacity: 1;
}

@media (max-width: 1120px) {
  .supporter-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .reel-stage {
    justify-self: start;
  }

  .phone-frame {
    transform: none;
  }

  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .reveal-up,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body::after {
    opacity: 0.16;
    background-size: 92vw;
    background-position: center top 14vh;
    mask-image: linear-gradient(180deg, #000, transparent 72%);
  }

  .topbar {
    grid-template-columns: auto 1fr;
    padding: 0.72rem 1rem;
  }

  .site-nav {
    display: none;
  }

  .brand img {
    height: 38px;
  }

  .supporter-shell {
    padding-top: 6.2rem;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(100%, 390px);
    min-height: 560px;
  }

  .reel-controls {
    top: auto;
    right: 50%;
    bottom: -4.05rem;
    grid-auto-flow: column;
    grid-template-columns: repeat(4, 46px);
    transform: translateX(50%);
  }

  .supporter-band {
    padding-top: 6rem;
  }

  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(3.4rem, 18vw, 4.6rem);
  }

  .lead {
    font-size: 1rem;
  }

  .supporter-cta {
    width: 100%;
  }

  .phone-frame {
    min-height: 520px;
    border-radius: 28px;
  }

  .reel-viewport {
    inset: 0.58rem;
    border-radius: 23px;
  }

  .reel-content {
    padding-inline: 1rem;
  }

  .logo-wall {
    grid-template-columns: 1fr;
  }

  .logo-card {
    min-height: 164px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
