:root {
  --bg: #050608;
  --panel: rgba(18, 21, 27, 0.72);
  --panel-strong: #10141b;
  --text: #f7f8fb;
  --muted: #a7afbd;
  --line: rgba(255, 255, 255, 0.13);
  --blue: #178bff;
  --blue-soft: rgba(23, 139, 255, 0.2);
  --orange: #ff7a1a;
  --graphite: #202632;
  --radius: 8px;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(115deg, rgba(23, 139, 255, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(255, 122, 26, 0.1), transparent 28%),
    linear-gradient(180deg, #06080c 0%, #050608 44%, #090b0f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: clip;
}

main {
  overflow-x: clip;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 78%, transparent);
}

a {
  color: inherit;
  text-decoration: none;
}

.cursor-glow {
  position: fixed;
  left: var(--mx, 50vw);
  top: var(--my, 24vh);
  z-index: -1;
  width: 34rem;
  height: 22rem;
  background: linear-gradient(135deg, transparent 22%, rgba(23, 139, 255, 0.13), rgba(255, 122, 26, 0.07), transparent 78%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(18px);
}

.story-progress {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.story-progress span {
  display: block;
  width: calc(var(--progress, 0) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #fff, var(--orange));
  box-shadow: 0 0 26px rgba(23, 139, 255, 0.7);
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1120px, calc(100% - 28px));
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

body.scrolled .topbar {
  border-color: rgba(23, 139, 255, 0.26);
  background: rgba(6, 8, 12, 0.86);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.32);
}

.brand,
.nav,
.nav-cta {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  font-size: 0.76rem;
}

.nav {
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.84rem;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #06080c;
  font-size: 0.82rem;
  font-weight: 800;
}

.scene {
  position: relative;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 900ms ease, transform 900ms ease;
}

.scene.active {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  display: grid;
  min-height: 100svh;
  padding: 150px max(24px, calc((100vw - 1120px) / 2)) 80px;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
  transform: translateY(calc(var(--scroll-ratio, 0) * 42px)) scale(1.03);
  transform-origin: center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.96) 0%, rgba(5, 6, 8, 0.78) 32%, rgba(5, 6, 8, 0.18) 68%, rgba(5, 6, 8, 0.82) 100%),
    linear-gradient(180deg, transparent 50%, #050608 100%);
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent 0 8px, rgba(255, 255, 255, 0.025) 9px 10px);
  mix-blend-mode: screen;
}

.hero-orbit {
  position: absolute;
  right: 14%;
  top: 32%;
  width: 340px;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 139, 255, 0.28);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}

.orbit-b {
  right: 10%;
  top: 25%;
  width: 460px;
  border-color: rgba(255, 122, 26, 0.18);
  animation-duration: 24s;
  animation-direction: reverse;
}

.hero-copy {
  width: min(100%, 780px);
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #dcecff;
  font-size: clamp(0.72rem, 1.4vw, 0.82rem);
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 9.2vw, 8.35rem);
  line-height: 0.9;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 6vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.15rem;
}

.hero-subtitle,
.section p,
.change-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 900;
  text-align: center;
  white-space: normal;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #fff, #d9ecff);
  color: #06080c;
  box-shadow: 0 18px 60px rgba(23, 139, 255, 0.28);
}

.button:hover,
.inline-cta:hover,
.sticky-cta:hover {
  transform: translateY(-2px);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  backdrop-filter: blur(20px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.operating-line span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.055);
  color: #dbe7f7;
  font-size: 0.78rem;
  font-weight: 760;
  backdrop-filter: blur(14px);
}

.button.large {
  min-height: 60px;
  padding-inline: 30px;
}

.chase-stage {
  position: absolute;
  right: 7vw;
  bottom: 10vh;
  width: min(520px, 58vw);
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transform: translateX(calc(var(--scroll-ratio, 0) * -34px));
}

.runner {
  position: absolute;
  bottom: 18px;
  width: 42px;
  height: 28px;
  border-radius: 60% 45% 45% 60%;
  filter: drop-shadow(0 0 18px currentColor);
}

.runner-coyote {
  left: 0;
  color: var(--orange);
  background: currentColor;
  animation: chase 2.2s ease-in-out infinite;
}

.runner-coyote::before,
.runner-road::before {
  position: absolute;
  right: -12px;
  top: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: currentColor;
  content: "";
}

.runner-road {
  right: 0;
  color: var(--blue);
  width: 34px;
  background: currentColor;
  animation: road 1.7s ease-in-out infinite;
}

.road-lines {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(23, 139, 255, 0.9), transparent);
  animation: pulse 1.6s infinite;
}

.section {
  min-height: 92svh;
  padding: 130px max(24px, calc((100vw - 1120px) / 2));
}

.cinema-note {
  display: grid;
  gap: 6px;
  max-width: 520px;
  margin-top: 34px;
  padding-left: 18px;
  border-left: 2px solid var(--orange);
}

.cinema-note strong {
  color: #fff;
  font-size: 1.04rem;
}

.cinema-note span {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 70px;
  align-items: start;
}

.acme-grid,
.service-grid,
.stack-grid {
  display: grid;
  gap: 12px;
}

.acme-grid article,
.service-grid article,
.timeline article,
.dash-card,
.stack-grid article,
.cta-panel,
.cta-metrics article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.acme-grid article {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: #e5ebf3;
  font-size: 1.02rem;
}

.acme-grid span {
  flex: 0 0 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 28px var(--orange);
}

.trap-lab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.trap-card {
  min-height: 150px;
  border: 1px solid rgba(255, 122, 26, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 122, 26, 0.08);
}

.boom {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  animation: glitch 1.7s infinite;
}

.fuse {
  background:
    radial-gradient(circle at 70% 42%, rgba(255, 122, 26, 0.9), transparent 34px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.crater {
  background:
    radial-gradient(ellipse at 50% 70%, rgba(0, 0, 0, 0.8), transparent 44%),
    linear-gradient(135deg, rgba(255, 122, 26, 0.08), rgba(23, 139, 255, 0.04));
}

.center-copy {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.truth-stack {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.truth-stack p,
.truth-stack strong {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 4vw, 3.9rem);
  line-height: 1.1;
}

.truth-stack strong {
  color: #fff;
  text-shadow: 0 0 30px rgba(23, 139, 255, 0.42);
}

.exhausted-coyote {
  position: relative;
  width: 230px;
  height: 150px;
  margin: 80px auto 0;
}

.exhausted-coyote div {
  position: absolute;
  background: var(--orange);
  filter: drop-shadow(0 0 18px rgba(255, 122, 26, 0.45));
}

.exhausted-coyote .body {
  left: 60px;
  top: 68px;
  width: 108px;
  height: 44px;
  border-radius: 55% 45% 45% 55%;
}

.exhausted-coyote .head {
  left: 142px;
  top: 44px;
  width: 52px;
  height: 48px;
  border-radius: 50%;
}

.exhausted-coyote .tail {
  left: 8px;
  top: 56px;
  width: 72px;
  height: 24px;
  border-radius: 100% 0 0 100%;
  transform: rotate(-25deg);
}

.exhausted-coyote .breath {
  right: -34px;
  top: 48px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  animation: breath 1.6s infinite;
}

.section-head {
  max-width: 900px;
  margin-bottom: 60px;
}

.method-console {
  display: grid;
  grid-template-columns: 1fr repeat(3, 68px);
  gap: 12px;
  align-items: center;
  margin: -22px 0 28px;
  padding: 14px;
  border: 1px solid rgba(23, 139, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(23, 139, 255, 0.055);
  color: #dcecff;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.method-console i {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), transparent);
  animation: consoleLoad 2.3s ease-in-out infinite;
}

.method-console i:nth-child(3) {
  animation-delay: 0.25s;
}

.method-console i:nth-child(4) {
  animation-delay: 0.5s;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.timeline article {
  min-height: 250px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.timeline article::after {
  position: absolute;
  inset: auto 22px 18px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue), transparent);
}

.timeline span {
  color: var(--blue);
  font-weight: 900;
}

.timeline p {
  font-size: 0.98rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid article {
  display: flex;
  min-height: 106px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-grid article:hover {
  border-color: rgba(23, 139, 255, 0.52);
  background: rgba(23, 139, 255, 0.1);
  transform: translateY(-5px);
}

.service-grid i {
  display: grid;
  flex: 0 0 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23, 139, 255, 0.42), rgba(255, 122, 26, 0.34));
  font-style: normal;
  color: #fff;
}

.transformation {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  overflow: hidden;
}

.inline-cta {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  margin-top: 14px;
  padding: 0 18px;
  border: 1px solid rgba(23, 139, 255, 0.42);
  border-radius: 999px;
  background: rgba(23, 139, 255, 0.12);
  color: #fff;
  font-weight: 850;
  transition: transform 220ms ease, border-color 220ms ease;
}

.system-desk {
  position: relative;
  max-width: 100%;
  min-height: 480px;
  overflow: hidden;
}

.desk-screen {
  position: absolute;
  inset: 40px 8% 80px;
  border: 1px solid rgba(23, 139, 255, 0.42);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(23, 139, 255, 0.16), transparent 58%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 80px rgba(23, 139, 255, 0.2), inset 0 0 40px rgba(23, 139, 255, 0.14);
  transform: perspective(900px) rotateY(-11deg) rotateX(8deg);
}

.desk-screen span {
  display: block;
  height: 12px;
  margin: 38px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.incoming {
  position: absolute;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--blue), #fff);
  animation: inbound 2.2s infinite ease-in-out;
}

.incoming-a {
  right: 1%;
  top: 20%;
}

.incoming-b {
  right: 8%;
  top: 48%;
  animation-delay: 0.45s;
}

.incoming-c {
  right: 0;
  top: 72%;
  animation-delay: 0.9s;
}

.stack-grid {
  grid-template-columns: repeat(7, minmax(120px, 1fr));
}

.stack-grid article {
  display: grid;
  min-height: 150px;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  text-align: center;
}

.operating-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.dashboard {
  display: grid;
  grid-template-columns: 1fr 0.45fr;
  gap: 16px;
}

.dash-card {
  padding: 22px;
}

.dash-card.main {
  grid-row: span 3;
  min-height: 420px;
}

.dash-top,
.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.dash-top strong {
  color: #58ffb2;
  font-size: 0.8rem;
}

.metric-row {
  margin-top: 42px;
}

.metric-row div {
  min-width: 0;
}

.dash-card b {
  display: block;
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 1;
}

.dash-card small,
.dash-card span {
  color: var(--muted);
}

.chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  height: 180px;
  margin-top: 64px;
  border-bottom: 1px solid var(--line);
}

.chart i {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), rgba(23, 139, 255, 0.12));
  animation: bars 2.7s ease-in-out infinite;
}

.chart i:nth-child(1) { height: 26%; }
.chart i:nth-child(2) { height: 44%; animation-delay: 0.15s; }
.chart i:nth-child(3) { height: 38%; animation-delay: 0.3s; }
.chart i:nth-child(4) { height: 64%; animation-delay: 0.45s; }
.chart i:nth-child(5) { height: 76%; animation-delay: 0.6s; }
.chart i:nth-child(6) { height: 92%; animation-delay: 0.75s; }

.final-cta {
  display: grid;
  min-height: 82svh;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(23, 139, 255, 0.16), transparent 34%),
    linear-gradient(225deg, rgba(255, 122, 26, 0.12), transparent 28%);
}

.final-cta h2,
.final-cta p {
  max-width: 920px;
}

.cta-panel {
  width: min(100%, 980px);
  padding: clamp(28px, 6vw, 58px);
  background:
    linear-gradient(135deg, rgba(23, 139, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
}

.cta-actions {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.cta-actions span {
  max-width: 600px;
  color: var(--muted);
  font-size: 0.98rem;
}

.cta-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.cta-metrics article {
  display: grid;
  gap: 6px;
  min-height: 96px;
  place-items: center;
  padding: 18px;
}

.cta-metrics b {
  color: var(--blue);
  font-size: 1rem;
}

.cta-metrics span {
  color: #fff;
  font-weight: 800;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 36px max(24px, calc((100vw - 1120px) / 2)) 90px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer strong {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: none;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #63bbff);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 18px 60px rgba(23, 139, 255, 0.38);
}

body.scrolled .sticky-cta {
  display: inline-flex;
}

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

@keyframes chase {
  50% { transform: translateX(110px) translateY(-4px); }
}

@keyframes road {
  50% { transform: translateX(-70px) translateY(-12px); }
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes glitch {
  0%, 100% { transform: translate(0); }
  25% { transform: translate(2px, -1px) rotate(-1deg); }
  50% { transform: translate(-2px, 1px) rotate(1deg); }
}

@keyframes breath {
  to {
    opacity: 0;
    transform: translateX(34px) scale(1.8);
  }
}

@keyframes inbound {
  0% {
    opacity: 0;
    transform: translateX(110px);
  }
  30%, 70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-220px);
  }
}

@keyframes bars {
  50% { transform: scaleY(0.72); }
}

@keyframes consoleLoad {
  50% { opacity: 0.4; transform: scaleX(0.62); transform-origin: left; }
}

@media (max-width: 920px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .split,
  .transformation,
  .dashboard {
    grid-template-columns: 1fr;
  }

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

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

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

  .dash-card.main {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.62rem, 12vw, 3rem);
    line-height: 0.98;
  }

  .hero,
  .section {
    padding-inline: 18px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero {
    padding-top: 126px;
  }

  .topbar {
    top: 10px;
    width: calc(100% - 18px);
    padding: 8px;
  }

  .brand span:last-child {
    display: none;
  }

  .chase-stage {
    left: 18px;
    right: auto;
    width: calc(100% - 36px);
  }

  .trap-lab,
  .service-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .method-console {
    grid-template-columns: 1fr;
  }

  .method-console i {
    display: none;
  }

  .metric-row {
    display: grid;
  }

  .service-grid article {
    min-height: 86px;
  }
}

@media (max-width: 420px) {
  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.46;
  }

  .button {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.78rem;
  }
}

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