:root {
  --navy: #06173c;
  --navy-deep: #020a1c;
  --blue: #0755a8;
  --cyan: #13bdf2;
  --cyan-soft: #90e8ff;
  --ice: #edfaff;
  --paper: #f5f7f9;
  --ink: #08152b;
  --muted: #5f6d7e;
  --line: rgba(6, 23, 60, 0.12);
  --white: #ffffff;
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  --body: "Inter", "Aptos", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

section[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 50%;
  width: var(--shell);
  min-height: 68px;
  padding: 11px 12px 11px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(3, 13, 37, 0.42);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 0.3s ease, top 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(3, 13, 37, 0.88);
}

.brand {
  width: 184px;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 650;
}

.desktop-nav a,
.site-footer nav a {
  transition: color 0.25s ease;
}

.desktop-nav a:hover,
.site-footer nav a:hover {
  color: var(--cyan);
}

.header-cta {
  justify-self: end;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.8rem;
}

.button--light {
  color: var(--navy);
  background: var(--white);
}

.button--primary {
  color: var(--navy-deep);
  background: var(--cyan);
  box-shadow: 0 12px 32px rgba(19, 189, 242, 0.22);
}

.button--primary:hover {
  background: #48d1f8;
  box-shadow: 0 15px 38px rgba(19, 189, 242, 0.3);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.03);
}

.button--ghost:hover {
  border-color: var(--cyan);
  background: rgba(19, 189, 242, 0.08);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  height: 100svh;
  color: var(--white);
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-media,
.hero-slide,
.hero-slide img,
.hero-overlay,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.25));
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide.is-active img {
  animation: hero-zoom 7.5s ease-out both;
}

@keyframes hero-zoom {
  from { transform: scale(1.01); }
  to { transform: scale(1.09); }
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 10, 28, 0.95) 0%, rgba(2, 10, 28, 0.72) 40%, rgba(2, 10, 28, 0.16) 72%),
    linear-gradient(180deg, rgba(2, 10, 28, 0.26) 0%, transparent 45%, rgba(2, 10, 28, 0.78) 100%);
}

.hero-glow {
  z-index: 3;
  width: 520px;
  height: 520px;
  top: auto;
  right: -180px;
  bottom: -260px;
  left: auto;
  border-radius: 50%;
  background: rgba(19, 189, 242, 0.18);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  padding-top: 138px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  width: min(790px, 72vw);
}

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  background: var(--cyan);
}

.eyebrow--dark {
  color: var(--blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
}

h1 {
  max-width: 850px;
  margin-bottom: 28px;
  font-size: clamp(3.4rem, 6.7vw, 6.8rem);
  line-height: 0.95;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

h1 em,
h2 em {
  color: var(--cyan);
  font-style: normal;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.text-link {
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 720;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-story {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 250px;
  color: rgba(255, 255, 255, 0.72);
}

.story-index {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.story-index i {
  position: relative;
  width: 78px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

.story-index i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform-origin: left;
  animation: story-progress 6s linear infinite;
}

@keyframes story-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-story p {
  margin: 13px 0 15px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 720;
}

.story-dots {
  display: flex;
  gap: 9px;
}

.story-dots button {
  width: 28px;
  height: 3px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.story-dots button.is-active {
  background: var(--cyan);
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 46px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--cyan), transparent);
}

.concept-note {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.64rem;
}

.section {
  position: relative;
  padding: 128px 0;
}

.section--intro {
  background:
    linear-gradient(135deg, rgba(19, 189, 242, 0.06), transparent 42%),
    var(--paper);
}

.section-heading {
  max-width: 840px;
}

.section-heading h2,
.locations-heading h2,
.network-copy h2,
.charger-copy h2,
.cta-content h2 {
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.section-heading > p:last-child,
.locations-heading > p,
.charger-copy > p,
.network-lead,
.cta-content > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section-heading > p:last-child {
  max-width: 660px;
}

.process-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.process-card {
  position: relative;
  min-height: 270px;
  padding: 34px 40px 20px 0;
  border-right: 1px solid var(--line);
}

.process-card + .process-card {
  padding-left: 40px;
}

.process-card:last-child {
  border-right: 0;
}

.process-number {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.process-card h3 {
  margin: 80px 0 12px;
  font-size: 1.65rem;
  letter-spacing: -0.035em;
}

.process-card p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.section--locations {
  background: var(--white);
}

.locations-heading {
  margin-bottom: 54px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
}

.locations-heading h2 {
  margin-bottom: 0;
}

.locations-heading > p {
  margin-bottom: 6px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.32fr 0.68fr;
  gap: 18px;
}

.location-card {
  position: relative;
  min-height: 560px;
  border-radius: 20px;
  background: var(--navy);
  overflow: hidden;
}

.location-card img,
.location-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.location-card img {
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.location-card:hover img {
  transform: scale(1.045);
}

.location-shade {
  background: linear-gradient(180deg, transparent 35%, rgba(2, 10, 28, 0.9) 100%);
}

.location-copy {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  left: 36px;
  color: var(--white);
}

.location-copy > span {
  color: var(--cyan-soft);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-copy h3 {
  margin: 12px 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.045em;
}

.location-copy p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section--network {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 82%, rgba(19, 189, 242, 0.17), transparent 30%),
    var(--navy-deep);
  overflow: hidden;
}

.section--network::before {
  content: "VB";
  position: absolute;
  top: 8%;
  right: -2%;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: 25vw;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
}

.network-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: start;
}

.network-copy {
  position: sticky;
  top: 130px;
}

.network-lead {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.64);
}

.text-link--light {
  margin-top: 15px;
}

.principles {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.principle {
  min-height: 145px;
  padding: 32px 0;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.principle span {
  color: var(--cyan);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 760;
}

.principle p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.91rem;
  line-height: 1.65;
}

.section--charger {
  padding-bottom: 100px;
  background:
    linear-gradient(110deg, rgba(19, 189, 242, 0.08), transparent 46%),
    #eef3f7;
}

.charger-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 90px;
  align-items: center;
}

.charger-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(19, 189, 242, 0.17), transparent 37%),
    linear-gradient(145deg, #eaf2f6, #d9e3e9);
  overflow: hidden;
}

.charger-visual::after {
  content: "";
  position: absolute;
  bottom: 70px;
  width: 52%;
  height: 24px;
  border-radius: 50%;
  background: rgba(3, 13, 37, 0.28);
  filter: blur(18px);
}

.charger-visual img {
  position: relative;
  z-index: 2;
  width: min(74%, 500px);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 30px 32px rgba(6, 23, 60, 0.22));
  transition: transform 0.5s ease;
}

.charger-visual:hover img {
  transform: translateY(-8px);
}

.charger-orbit {
  position: absolute;
  width: 470px;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 85, 168, 0.18);
  border-radius: 50%;
}

.charger-orbit::after {
  content: "";
  position: absolute;
  top: 45px;
  right: 40px;
  width: 11px;
  height: 11px;
  border: 5px solid rgba(19, 189, 242, 0.18);
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.6s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(19, 189, 242, 0.5); }
  70% { box-shadow: 0 0 0 20px rgba(19, 189, 242, 0); }
  100% { box-shadow: 0 0 0 0 rgba(19, 189, 242, 0); }
}

.charger-caption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: rgba(6, 23, 60, 0.5);
  font-size: 0.66rem;
  text-align: center;
}

.charger-copy > p {
  max-width: 520px;
}

.feature-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.feature-list li > span {
  color: var(--blue);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
}

.feature-list strong {
  font-family: var(--display);
  font-size: 0.97rem;
}

.feature-list small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cta-section {
  position: relative;
  padding: 150px 0;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.cta-background {
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(90deg, rgba(2, 10, 28, 0.97), rgba(2, 10, 28, 0.62)),
    url("assets/04-estacion-compacta-ambientacion-noche-v2.webp") center 60% / cover;
  transform: scale(1.03);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  max-width: 760px;
}

.cta-content > p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.7);
}

.cta-actions {
  margin-top: 34px;
  gap: 12px;
}

.cta-content > small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
}

.site-footer {
  padding: 62px 0 30px;
  color: var(--white);
  background: var(--navy-deep);
}

.footer-main {
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main img {
  width: 190px;
}

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.85rem;
  text-align: center;
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.footer-legal {
  padding-top: 24px;
  display: flex;
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.67rem;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-left: 18px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 7px;
    border: 0;
    border-radius: 9px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 100svh;
    padding: 140px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    color: var(--white);
    background: rgba(2, 10, 28, 0.98);
    font-family: var(--display);
    font-size: 1.7rem;
    font-weight: 750;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .menu-open .mobile-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .hero-copy {
    width: min(680px, 88vw);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 10, 28, 0.94), rgba(2, 10, 28, 0.4)),
      linear-gradient(180deg, rgba(2, 10, 28, 0.25), transparent 45%, rgba(2, 10, 28, 0.8));
  }

  .hero-story {
    display: none;
  }

  .locations-heading,
  .network-layout,
  .charger-layout {
    grid-template-columns: 1fr;
  }

  .locations-heading,
  .network-layout,
  .charger-layout {
    gap: 45px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    min-height: 480px;
  }

  .network-copy {
    position: static;
  }

  .charger-visual {
    min-height: 620px;
  }

  .charger-copy {
    max-width: 650px;
  }

  .footer-main {
    grid-template-columns: 1fr auto;
    gap: 25px;
  }

  .footer-main > p {
    display: none;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 30px);
  }

  .site-header {
    top: 10px;
    min-height: 60px;
    border-radius: 14px;
  }

  .brand {
    width: 155px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding-top: 125px;
    padding-bottom: 92px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 4.25rem);
  }

  .hero-intro {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .scroll-cue,
  .concept-note {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading h2,
  .locations-heading h2,
  .network-copy h2,
  .charger-copy h2,
  .cta-content h2 {
    font-size: clamp(2.55rem, 12vw, 3.75rem);
  }

  .process-grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .process-card,
  .process-card + .process-card {
    min-height: 0;
    padding: 26px 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-card h3 {
    margin: 0 0 8px;
  }

  .process-card p {
    grid-column: 2;
  }

  .location-card {
    min-height: 460px;
  }

  .location-copy {
    right: 24px;
    bottom: 25px;
    left: 24px;
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .charger-visual {
    min-height: 520px;
  }

  .charger-visual img {
    width: 84%;
    max-height: 460px;
  }

  .charger-orbit {
    width: 90%;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .cta-section {
    padding: 105px 0;
  }

  .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-legal {
    flex-direction: column;
    gap: 9px;
  }

}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
