:root {
  --ink: #10120f;
  --text: #f8fff3;
  --muted: #d9e9d2;
  --green-950: #06140c;
  --green-900: #082212;
  --green-700: #0b6b34;
  --grass: #35c84a;
  --gold: #f8be2f;
  --gold-light: #ffe66f;
  --red: #e63025;
  --blue: #1379e7;
  --cream: #fff7cf;
  --line: rgba(255, 255, 255, 0.22);
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  --shell: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(180deg, #071208 0%, #0a1a10 48%, #050906 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 76%, transparent);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd,
ol {
  margin: 0;
}

h1,
h2,
h3,
.brand strong,
.btn,
.system-tab strong,
.gallery-button span,
.store-badge strong {
  font-family: "Arial Black", "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: 6rem;
  line-height: 0.88;
  max-width: 7.6em;
  text-transform: uppercase;
  text-shadow: 0 7px 0 rgba(0, 0, 0, 0.45), 0 0 34px rgba(248, 190, 47, 0.32);
}

h2 {
  font-size: 3.45rem;
  line-height: 1;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.36);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 12px max(18px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 14, 8, 0.86), rgba(5, 14, 8, 0.48));
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(5, 14, 8, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px rgba(255, 230, 111, 0.55), 0 12px 22px rgba(0, 0, 0, 0.35);
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1;
}

.brand small {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
}

.nav a {
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}

.nav a:hover {
  color: var(--ink);
  background: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92svh;
  overflow: hidden;
  padding: 104px 0 52px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: saturate(1.08) contrast(1.06);
  transform: translateY(var(--hero-shift, 0));
  transition: transform 80ms linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 10, 5, 0.96) 0%, rgba(3, 10, 5, 0.82) 34%, rgba(3, 10, 5, 0.35) 64%, rgba(3, 10, 5, 0.86) 100%),
    linear-gradient(180deg, rgba(3, 10, 5, 0.18) 0%, rgba(3, 10, 5, 0.14) 58%, rgba(3, 10, 5, 0.9) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 18px;
  z-index: -1;
  background: repeating-linear-gradient(90deg, var(--red) 0 36px, var(--gold) 36px 72px, var(--blue) 72px 108px, var(--grass) 108px 144px);
}

.hero-inner,
.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 680px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #fff 0 9%, #f7f7f7 10% 18%, transparent 19%),
    conic-gradient(from 25deg, #111 0 12%, #fff 12% 24%, #111 24% 36%, #fff 36% 52%, #111 52% 68%, #fff 68% 82%, #111 82% 100%);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 230, 111, 0.48);
}

.kicker.dark {
  color: #0d2d14;
}

.hero-lead {
  max-width: 570px;
  margin-top: 22px;
  color: #fff9d8;
  font-size: 1.22rem;
  font-weight: 800;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 3px solid #15110a;
  border-radius: 8px;
  color: #1a1405;
  font-size: 1.18rem;
  box-shadow:
    inset 0 4px 0 rgba(255, 255, 255, 0.42),
    inset 0 -5px 0 rgba(94, 51, 0, 0.28),
    0 14px 28px rgba(0, 0, 0, 0.32);
  transform: translateY(0);
  transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-primary {
  background: linear-gradient(#fff19c 0%, #ffc943 48%, #e8890c 100%);
}

.btn-ghost {
  color: #fff;
  background: linear-gradient(#2689ff 0%, #0d3c92 100%);
  border-color: #061b45;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 680px;
  margin-top: 34px;
}

.hero-meta div {
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(4, 12, 7, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-meta dt {
  color: var(--gold-light);
  font-weight: 1000;
}

.hero-meta dd {
  margin-top: 6px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.hero-device {
  position: relative;
  justify-self: end;
  width: 360px;
}

.device-shell,
.screen-frame,
.gallery-stage,
.intro-art,
.flow-image {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    #07110a;
  box-shadow: var(--shadow);
}

.device-shell {
  padding: 10px;
  transform: rotate(2deg);
}

.device-shell img,
.screen-frame img,
.gallery-stage img,
.intro-art img,
.flow-image img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-icon {
  position: absolute;
  left: -34px;
  top: 38px;
  width: 102px;
  height: 102px;
  border-radius: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.44), 0 0 0 3px rgba(255, 230, 111, 0.62);
  transform: rotate(-8deg);
}

.tactic-chip {
  position: absolute;
  right: -28px;
  bottom: 84px;
  width: 210px;
  padding: 14px 16px;
  border: 3px solid var(--gold);
  border-radius: 8px;
  background: rgba(18, 15, 10, 0.92);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.44);
  transform: rotate(-3deg);
}

.tactic-chip span {
  display: inline-flex;
  margin-bottom: 5px;
  padding: 3px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 0.72rem;
  font-weight: 1000;
}

.tactic-chip strong {
  display: block;
  color: #fff;
}

.notice-band {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, #ffe35f 0%, #f8be2f 100%);
  background-size: 30px 30px, auto;
  padding: 34px 0 42px;
  border-bottom: 8px solid #0c2b13;
}

.notice-band .section-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p {
  margin-top: 14px;
  max-width: 650px;
}

.notice-band h2,
.flow-section h2,
.download-section h2 {
  color: #082212;
  text-shadow: none;
}

.notice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.notice-card {
  min-height: 158px;
  padding: 18px;
  border: 2px solid rgba(16, 18, 15, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 28px rgba(70, 42, 0, 0.16);
}

.notice-card time {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 1000;
}

.notice-card h3 {
  color: var(--ink);
}

.notice-card p {
  margin-top: 8px;
  color: #385037;
  font-size: 0.92rem;
}

.intro-section,
.system-section,
.screens-section {
  padding: 104px 0;
}

.intro-grid,
.flow-grid,
.download-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 430px;
  gap: 60px;
}

.intro-copy {
  max-width: 620px;
}

.intro-copy p:last-child {
  margin-top: 20px;
  font-size: 1.06rem;
}

.intro-art,
.flow-image {
  padding: 10px;
}

.system-section {
  background:
    linear-gradient(180deg, rgba(5, 10, 6, 0.64), rgba(5, 10, 6, 0.9)),
    linear-gradient(90deg, rgba(19, 121, 231, 0.22), rgba(230, 48, 37, 0.2));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.system-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.system-tabs {
  display: grid;
  gap: 10px;
  align-self: center;
}

.system-tab {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: rgba(4, 12, 7, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.system-tab:hover,
.system-tab.is-active {
  transform: translateX(4px);
  border-color: var(--gold);
  background: linear-gradient(90deg, rgba(248, 190, 47, 0.24), rgba(4, 12, 7, 0.78));
}

.system-tab span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #111;
  background: var(--gold);
  font-weight: 1000;
}

.system-stage {
  display: grid;
  grid-template-columns: minmax(250px, 390px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.screen-frame {
  padding: 10px;
}

.screen-frame img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.system-caption {
  padding: 24px;
  border-left: 8px solid var(--gold);
  background: rgba(0, 0, 0, 0.32);
}

.system-caption h3 {
  font-size: 2rem;
}

.system-caption p {
  margin-top: 14px;
}

.flow-section {
  padding: 104px 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(180deg, #e9f6d7 0%, #fff7cf 100%);
  background-size: 36px 36px, auto;
}

.flow-grid {
  grid-template-columns: 410px 1fr;
}

.flow-copy p {
  color: #345037;
}

.phase-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin-top: 28px;
  list-style: none;
}

.phase-list li {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 12px;
  border: 2px solid rgba(8, 34, 18, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.phase-list span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 8px;
  color: #fff;
  background: var(--green-700);
  font-weight: 1000;
}

.phase-list strong {
  color: #102b13;
}

.gallery-layout {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.gallery-stage {
  padding: 10px;
  justify-self: center;
  width: min(460px, 100%);
}

.gallery-stage img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-list {
  display: grid;
  gap: 12px;
}

.gallery-button {
  position: relative;
  min-height: 86px;
  padding: 16px 18px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: rgba(6, 20, 12, 0.74);
  transition: transform 160ms ease, border-color 160ms ease;
}

.gallery-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--blue);
  transform: scaleY(0.25);
  transform-origin: center;
  transition: transform 160ms ease, background 160ms ease;
}

.gallery-button:nth-child(2)::before {
  background: var(--gold);
}

.gallery-button:nth-child(3)::before {
  background: var(--red);
}

.gallery-button:nth-child(4)::before {
  background: var(--grass);
}

.gallery-button:hover,
.gallery-button.is-active {
  transform: translateX(4px);
  border-color: var(--gold);
}

.gallery-button:hover::before,
.gallery-button.is-active::before {
  transform: scaleY(1);
}

.gallery-button span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-light);
  font-size: 1.3rem;
}

.gallery-button strong {
  font-size: 0.96rem;
}

.download-section {
  padding: 104px 0 92px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(248, 190, 47, 0.9), rgba(53, 200, 74, 0.72)),
    url("../images/tactics-popup.png") center / cover;
  background-blend-mode: soft-light, normal;
}

.download-grid {
  grid-template-columns: 1fr 430px;
}

.download-copy p {
  max-width: 610px;
  margin-top: 16px;
  color: #183918;
  font-weight: 700;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badge {
  display: grid;
  min-width: 178px;
  min-height: 66px;
  justify-content: center;
  padding: 10px 18px;
  border: 2px solid #0d1c0d;
  border-radius: 8px;
  color: #fff;
  background: #111;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.store-badge span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
}

.store-badge strong {
  font-size: 1.32rem;
}

.product-panel {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 2px solid rgba(16, 18, 15, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.2);
}

.product-panel img {
  width: 112px;
  height: 112px;
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.24);
}

.product-panel dl {
  display: grid;
  gap: 8px;
}

.product-panel div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(16, 18, 15, 0.12);
}

.product-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.product-panel dt {
  color: #41603e;
  font-size: 0.9rem;
  font-weight: 900;
}

.product-panel dd {
  color: var(--ink);
  font-weight: 1000;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 104px;
  padding: 28px max(18px, calc((100vw - 1180px) / 2));
  background: #030805;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer p {
  margin-top: 5px;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 1000;
}

.reveal {
  opacity: 0.68;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-inner,
  .intro-grid,
  .flow-grid,
  .download-grid,
  .system-layout,
  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .hero-device {
    justify-self: start;
    width: 320px;
  }

  .system-stage {
    grid-template-columns: minmax(240px, 360px) 1fr;
  }

  .notice-band .section-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(5, 14, 8, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 82svh;
    padding-top: 88px;
    padding-bottom: 34px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 10, 5, 0.72) 0%, rgba(3, 10, 5, 0.58) 40%, rgba(3, 10, 5, 0.95) 100%),
      linear-gradient(90deg, rgba(3, 10, 5, 0.92), rgba(3, 10, 5, 0.28));
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-meta,
  .notice-list {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 22px;
  }

  .hero-meta div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 10px 12px;
  }

  .hero-meta dd {
    margin-top: 0;
  }

  .hero-device {
    display: none;
  }

  .intro-section,
  .system-section,
  .flow-section,
  .screens-section,
  .download-section {
    padding: 74px 0;
  }

  .system-stage {
    grid-template-columns: 1fr;
  }

  .system-caption {
    border-left-width: 0;
    border-top: 8px solid var(--gold);
  }

  .product-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  :root {
    --shell: min(100% - 22px, 1180px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    min-height: 80svh;
  }

  .hero-actions,
  .store-row {
    display: grid;
  }

  .btn,
  .store-badge {
    width: 100%;
  }

  .system-tab {
    grid-template-columns: 38px 1fr;
  }

  .system-tab span {
    width: 38px;
    height: 38px;
  }

  .phase-list li {
    grid-template-columns: 1fr;
  }

  .product-panel div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
