/* ===== Design tokens ===== */
:root {
  --black: #0a0a0a;
  --ink: #141414;
  --charcoal: #1c1c1c;
  --graphite: #2a2a2a;
  --gray: #6b6b6b;
  --silver: #9a9a9a;
  --mist: #e4e4e4;
  --fog: #f4f4f4;
  --white: #ffffff;
  --accent: #ffffff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--white);
  color: var(--black);
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gray), var(--white));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ===== Hidden age button (top corner) ===== */
.age-btn {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 1100;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.25s var(--ease), background 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.age-btn:hover {
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.15);
}

/* ===== Blank toggle switch (top-left) ===== */
.top-switch {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 1100;
  display: inline-block;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.25s var(--ease);
}

.top-switch:hover {
  opacity: 1;
}

.top-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.top-switch__track {
  display: block;
  width: 34px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.25s var(--ease);
}

.top-switch__thumb {
  display: block;
  width: 12px;
  height: 12px;
  margin: 2px;
  border-radius: 50%;
  background: var(--silver);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.top-switch input:checked + .top-switch__track {
  background: rgba(255, 255, 255, 0.85);
}

.top-switch input:checked + .top-switch__track .top-switch__thumb {
  transform: translateX(16px);
  background: var(--black);
}

/* ===== Dream Bike button (footer) ===== */
.dream-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-bottom: 22px;
}

.dream-wrap.is-hidden {
  display: none;
}

.dream-btn {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 0.76rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.dream-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 255, 255, 0.18);
}

.dream-note {
  font-size: 0.66rem;
  color: var(--gray);
  letter-spacing: 0.04em;
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  padding: 12px 0;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s var(--ease);
}

.nav__links a:hover {
  color: var(--white);
}

.nav__cta {
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--white) !important;
}

.nav__cta:hover {
  background: var(--white);
  color: var(--black) !important;
  border-color: var(--white);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 28px 80px;
  overflow: hidden;
}

.hero__grid {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__bike {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7));
  animation: floatBike 5s ease-in-out infinite;
}

.hero__glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 60%);
  filter: blur(20px);
  z-index: 1;
}

@keyframes floatBike {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 12%,
      rgba(255, 255, 255, 0.1),
      transparent 45%
    ),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05), transparent 40%),
    var(--black);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, black, transparent 75%);
}

.hero__content {
  position: relative;
  text-align: left;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.7rem, 8vw, 5.8rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.accent {
  background: linear-gradient(180deg, #ffffff, #8f8f8f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--silver);
  max-width: 560px;
  margin: 0 0 40px;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero__scroll span {
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--silver), transparent);
  animation: scrollPulse 2s var(--ease) infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

.btn--primary {
  background: var(--white);
  color: var(--black);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.18);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

/* ===== Stats ===== */
.stats {
  max-width: 1200px;
  margin: -10px auto 0;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.stats__item {
  text-align: center;
}

.stats__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats__label {
  margin-top: 10px;
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 400;
}

/* ===== Sections ===== */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 28px;
}

.section--alt {
  max-width: none;
  background: linear-gradient(180deg, var(--ink), var(--black));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section--alt > * {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.section__head {
  max-width: 700px;
  margin-bottom: 64px;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 18px;
}

.section__title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 20px;
}

.section__lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  color: var(--silver);
  font-weight: 300;
}

.section__lead em,
.split__text em {
  color: var(--white);
  font-style: normal;
  font-weight: 500;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, var(--charcoal), var(--ink));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 38px 34px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.card__icon {
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
}

.card__title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.card__text {
  color: var(--silver);
  font-weight: 300;
  font-size: 0.98rem;
}

/* ===== Decorative scattered bikes ===== */
.section,
.ask {
  position: relative;
  overflow: hidden;
}

/* keep real content above the scattered bikes */
.section__head,
.cards,
.compare,
.compare__note,
.split,
.promises,
.ask__content {
  position: relative;
  z-index: 1;
}

.deco-bike {
  position: absolute;
  width: 460px;
  max-width: 44%;
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  filter: grayscale(0.2) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.deco-bike--tr {
  top: 40px;
  right: 24px;
  transform: rotate(-6deg);
}

.deco-bike--bl {
  bottom: 30px;
  left: 18px;
  transform: rotate(5deg) scaleX(-1);
}

/* ===== Compare ===== */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
}

.compare__col {
  border-radius: var(--radius);
  padding: 38px 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.compare__col--bad {
  background: rgba(255, 255, 255, 0.015);
  opacity: 0.78;
}

.compare__col--good {
  background: linear-gradient(180deg, var(--graphite), var(--charcoal));
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
}

.compare__tag {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 22px;
}

.compare__col--good .compare__tag {
  color: var(--white);
}

.compare__list {
  list-style: none;
}

.compare__list li {
  padding: 13px 0 13px 30px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 300;
  color: var(--mist);
}

.compare__col--bad .compare__list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: var(--gray);
  font-weight: 600;
}

.compare__col--good .compare__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 700;
}

.compare__foot {
  margin-top: 22px;
  font-size: 0.86rem;
  color: var(--silver);
  font-weight: 500;
}

.compare__vs {
  align-self: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.compare__note {
  text-align: center;
  margin-top: 44px;
  color: var(--silver);
  font-weight: 300;
  font-size: 1.05rem;
}

/* ===== Split (health) ===== */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.checklist {
  list-style: none;
  margin-top: 30px;
}

.checklist li {
  position: relative;
  padding: 14px 0 14px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-weight: 300;
  color: var(--mist);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
}

.checklist li::after {
  content: "✓";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--black);
  font-weight: 800;
  font-size: 0.82rem;
}

/* ===== Split bike visual ===== */
.split__visual {
  display: flex;
  justify-content: center;
}

.split__bike-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.split__bike {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7));
  animation: floatBike 5s ease-in-out infinite;
}

.split__bike-glow {
  position: absolute;
  width: 78%;
  height: 78%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 62%);
  filter: blur(22px);
  z-index: 1;
}

/* ===== Before / after orbits ===== */
.orbits {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.orbit-unit {
  --r: 158px;
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

/* Center label */
.orbit-core {
  position: relative;
  z-index: 3;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.orbit-unit--before .orbit-core {
  background: linear-gradient(180deg, var(--graphite), var(--ink));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-unit--after .orbit-core {
  background: linear-gradient(180deg, #ffffff, #c9c9c9);
  color: var(--black);
  box-shadow: 0 0 70px rgba(255, 255, 255, 0.28);
}

/* Spinning ring container */
.orbit-spin {
  position: absolute;
  inset: 0;
  animation: orbitspin 30s linear infinite;
}

.orbit-unit--after .orbit-spin {
  animation-direction: reverse;
}

/* Each satellite is placed at its angle, then kept upright */
.orbit-sat {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 104px;
  height: 104px;
  margin: -52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(var(--a)) translateY(calc(var(--r) * -1))
    rotate(calc(var(--a) * -1));
}

.orbit-unit--before .orbit-sat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-unit--after .orbit-sat {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* The label counter-rotates so text stays upright while it orbits */
.orbit-sat .lbl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  text-align: center;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  animation: orbitspin 30s linear infinite reverse;
}

.orbit-unit--before .orbit-sat .lbl {
  color: var(--mist);
}

.orbit-unit--after .orbit-sat .lbl {
  color: #141414;
  animation-direction: normal;
}

.orbits__arrow {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--silver);
  flex: 0 0 auto;
}

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

/* ===== Promises ===== */
.promises {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.promise {
  background: linear-gradient(180deg, var(--charcoal), var(--ink));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 34px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.promise:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}

.promise__num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  top: 14px;
  right: 22px;
  letter-spacing: -0.04em;
}

.promise h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.promise p {
  color: var(--silver);
  font-weight: 300;
  font-size: 0.95rem;
}

/* ===== Ask ===== */
.ask {
  text-align: center;
  padding: 140px 28px;
  background: radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    ),
    var(--black);
}

.ask__content {
  max-width: 720px;
  margin: 0 auto;
}

.ask__title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 18px 0 24px;
}

.ask__text {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--silver);
  font-weight: 300;
  margin-bottom: 40px;
}

.ask__signature {
  font-size: 1.1rem;
  color: var(--mist);
  margin-bottom: 44px;
  line-height: 1.8;
}

.ask__signature span {
  display: block;
  font-weight: 600;
  color: var(--white);
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 44px 28px;
  color: var(--gray);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__links a:not(.nav__cta) {
    display: none;
  }
  .hero {
    padding-top: 110px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .hero__content {
    text-align: center;
  }
  .hero__visual {
    order: -1;
  }
  .hero__bike {
    max-width: 380px;
  }
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__scroll {
    display: none;
  }
  .deco-bike {
    max-width: 60%;
    opacity: 0.07;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }
  .cards,
  .promises {
    grid-template-columns: 1fr;
  }
  .compare {
    grid-template-columns: 1fr;
  }
  .compare__vs {
    justify-self: center;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .split__visual {
    order: -1;
  }
  .section {
    padding: 84px 24px;
  }
  .orbits {
    gap: 28px;
  }
  .orbits__arrow {
    transform: rotate(90deg);
  }
  .orbit-unit {
    --r: 132px;
    width: 320px;
    height: 320px;
  }
  .orbit-core {
    width: 130px;
    height: 130px;
    font-size: 0.92rem;
  }
  .orbit-sat {
    width: 92px;
    height: 92px;
    margin: -46px;
  }
}

@media (max-width: 380px) {
  .orbit-unit {
    --r: 118px;
    width: 280px;
    height: 280px;
  }
  .orbit-sat {
    width: 82px;
    height: 82px;
    margin: -41px;
  }
  .orbit-sat .lbl {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .stats {
    grid-template-columns: 1fr;
  }
  .hero__actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
