:root {
  color-scheme: light;
  --ink: #18201f;
  --muted: #66716e;
  --paper: #fff8e8;
  --cream: #fffdfa;
  --line: rgba(24, 32, 31, 0.14);
  --red: #f0544f;
  --green: #12a879;
  --teal: #2aa7a1;
  --yellow: #ffc44d;
  --blue: #4464f2;
  --pink: #ff7bb8;
  --shadow: 0 22px 60px rgba(24, 32, 31, 0.14);
  --radius: 8px;
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 196, 77, 0.36), transparent 24rem),
    radial-gradient(circle at 88% 20%, rgba(42, 167, 161, 0.24), transparent 26rem),
    linear-gradient(135deg, #fffdf8 0%, #f6ffe9 42%, #fff6f2 100%);
  overflow-x: hidden;
}

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

body.party {
  animation: partyFlash 700ms ease;
}

a {
  color: inherit;
}

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

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

#confetti {
  position: fixed;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(24, 32, 31, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.82);
  box-shadow: 0 10px 26px rgba(24, 32, 31, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0.48rem;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  color: #25302d;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: var(--ink);
  outline: none;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: clamp(2.5rem, 6vw, 5rem) 0 2rem;
}

.hero-copy {
  min-width: 0;
}

.date-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(24, 32, 31, 0.14);
  border-radius: 999px;
  color: #232b29;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 4px 4px 0 rgba(18, 168, 121, 0.16);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.35;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 9.4em;
  margin: 1rem 0 1rem;
  font-size: clamp(3.25rem, 9.4vw, 7.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.title-lock {
  white-space: nowrap;
}

.hero-lede {
  max-width: 43rem;
  margin: 0;
  color: #3c4744;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 650;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-btn {
  color: #fff;
  background: var(--red);
}

.ghost-btn {
  color: var(--ink);
  background: #fff;
}

.primary-btn:hover,
.ghost-btn:hover,
.primary-btn:focus-visible,
.ghost-btn:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
  outline: none;
}

.meme-stage {
  position: relative;
  min-width: 0;
  width: min(100%, 470px);
  min-height: min(46vw, 480px);
  justify-self: end;
  padding: 3rem 0 2.5rem;
}

.meme-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 12px 14px 0 rgba(24, 32, 31, 0.92);
}

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

.meme-card figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(24, 32, 31, 0.88);
  font-size: 0.92rem;
  font-weight: 950;
  text-align: center;
}

.meme-card-main {
  width: min(72%, 340px);
  aspect-ratio: 1.05 / 1;
  transform: rotate(-4deg);
  animation: floatCard 4.6s ease-in-out infinite;
}

.meme-card-side {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(40%, 178px);
  aspect-ratio: 0.78 / 1;
  transform: rotate(6deg);
  animation: floatCard 5.2s ease-in-out infinite reverse;
}

.cap {
  position: absolute;
  z-index: 3;
  width: clamp(58px, 8vw, 88px);
  filter: drop-shadow(4px 7px 0 rgba(24, 32, 31, 0.28));
}

.cap-one {
  top: 15%;
  left: 46%;
  transform: rotate(16deg);
}

.cap-two {
  right: 8%;
  top: 6%;
  transform: rotate(-18deg);
}

.stamp {
  position: absolute;
  right: 6%;
  top: 38%;
  z-index: 4;
  padding: 10px 16px;
  border: 4px solid var(--red);
  border-radius: var(--radius);
  color: var(--red);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: 6px 6px 0 rgba(240, 84, 79, 0.18);
  font-size: clamp(1.3rem, 2.8vw, 2.35rem);
  font-weight: 950;
  transform: rotate(-12deg);
}

.ticker {
  overflow: hidden;
  margin: 0 0 3rem;
  border-block: 2px solid var(--ink);
  background: var(--yellow);
}

.ticker div {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
}

.ticker span {
  padding: 13px 22px;
  font-weight: 950;
  white-space: nowrap;
}

.ticker span::before {
  color: var(--red);
  content: "/// ";
}

.section {
  margin: clamp(3rem, 7vw, 6rem) 0;
  scroll-margin-top: 96px;
}

.section h2,
.finale h2 {
  max-width: 870px;
  margin: 0.8rem 0 1.25rem;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section p,
.finale p {
  color: #3d4946;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.85;
}

.bulletin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 1rem;
  align-items: stretch;
}

.newspaper,
.stat-board,
.progress-card,
.timeline-list li,
.permit,
.blindbox,
.finale {
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.86);
  box-shadow: var(--shadow);
}

.newspaper {
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(90deg, rgba(24, 32, 31, 0.05) 1px, transparent 1px),
    #fffdf6;
  background-size: 15px 15px;
}

.edition {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--ink);
  color: var(--red);
  font-size: 0.92rem;
  font-weight: 950;
}

.newspaper h2 {
  margin-top: 0;
}

.stat-board {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  overflow: hidden;
  background: #1f2a28;
}

.stat {
  display: grid;
  align-content: center;
  min-height: 128px;
  padding: 1.1rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.stat:last-child {
  border-bottom: 0;
}

.stat-number {
  color: var(--yellow);
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 950;
  line-height: 1;
}

.stat-number::after {
  content: attr(data-suffix);
}

.stat-label {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.progress-card {
  max-width: 760px;
  padding: 1.1rem;
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #25302d;
  font-weight: 950;
}

.progress-track {
  height: 18px;
  margin-top: 0.8rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
}

.progress-fill {
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    var(--green) 0 12px,
    var(--yellow) 12px 24px,
    var(--red) 24px 36px,
    var(--blue) 36px 48px
  );
  transform: translateX(-100%);
}

.timeline.is-visible .progress-fill {
  animation: fillUp 1.25s 200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.timeline-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.timeline-list li {
  position: relative;
  min-height: 190px;
  padding: 1rem;
}

.timeline-list li::before {
  display: block;
  width: 18px;
  height: 18px;
  margin-bottom: 0.9rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
  content: "";
}

.timeline-list span {
  display: block;
  font-size: 1.25rem;
  font-weight: 950;
}

.timeline-list p {
  margin: 0.55rem 0 0;
  font-size: 1rem;
}

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

.permit {
  min-height: 245px;
  padding: 1.1rem;
  transform-origin: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.permit:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 28px 60px rgba(24, 32, 31, 0.18);
}

.permit span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 950;
}

.permit h3 {
  margin: 1.2rem 0 0.5rem;
  font-size: clamp(1.18rem, 1.9vw, 1.55rem);
  line-height: 1.18;
}

.permit p {
  margin: 0;
  font-size: 1rem;
}

.permit-hot {
  background: #fff0ed;
}

.permit-green {
  background: #ebfff7;
}

.permit-yellow {
  background: #fff7d8;
}

.permit-blue {
  background: #eef2ff;
}

.blindbox {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
  padding: clamp(1rem, 2.8vw, 1.6rem);
  background: #fffdf8;
}

.blindbox-copy {
  min-width: 0;
}

.map-panel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 2px dashed rgba(24, 32, 31, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(68, 100, 242, 0.14), transparent 45%),
    linear-gradient(45deg, transparent 48%, rgba(24, 32, 31, 0.08) 49%, rgba(24, 32, 31, 0.08) 51%, transparent 52%),
    #f6fffb;
  background-size: auto, 48px 48px, auto;
}

.map-panel::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: min(42%, 190px);
  height: 80px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background:
    linear-gradient(var(--ink), var(--ink)) 22px 18px / 70% 3px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 22px 38px / 52% 3px no-repeat,
    #fff;
  box-shadow: 5px 5px 0 var(--ink);
  content: "饭票";
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 74px;
  text-align: center;
  transform: rotate(4deg);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 38px;
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 950;
}

.pin-home {
  left: 8%;
  top: 18%;
  background: var(--green);
}

.pin-city {
  right: 13%;
  top: 20%;
  background: var(--blue);
}

.pin-food {
  left: 30%;
  bottom: 22%;
  background: var(--red);
}

.route {
  position: absolute;
  height: 4px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 12px, transparent 12px 22px);
  transform-origin: left center;
}

.route-one {
  left: 22%;
  top: 29%;
  width: 52%;
  transform: rotate(3deg);
}

.route-two {
  left: 40%;
  top: 54%;
  width: 34%;
  transform: rotate(-35deg);
}

.finale {
  margin: clamp(3rem, 7vw, 6rem) 0 2rem;
  padding: clamp(1.3rem, 4vw, 2.6rem);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 196, 77, 0.16), transparent 38%),
    #1f2a28;
}

.finale .section-kicker {
  color: var(--ink);
}

.finale h2 {
  color: #fff;
}

.finale p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.86);
}

.finale-btn {
  margin-top: 0.8rem;
  background: var(--yellow);
  color: var(--ink);
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 2rem;
  color: rgba(24, 32, 31, 0.68);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer a {
  color: #225e82;
}

.footer code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(24, 32, 31, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 30;
  max-width: min(92vw, 520px);
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  box-shadow: 6px 6px 0 var(--yellow);
  font-weight: 900;
  text-align: center;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -13px;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fillUp {
  to {
    transform: translateX(0);
  }
}

@keyframes partyFlash {
  0%,
  100% {
    filter: saturate(1);
  }

  45% {
    filter: saturate(1.6) brightness(1.05);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero h1 {
    max-width: 8.5em;
  }

  .meme-stage {
    width: min(100%, 520px);
    min-height: 450px;
    justify-self: center;
    padding-top: 1rem;
  }

  .meme-card-main {
    width: min(66%, 330px);
  }

  .meme-card-side {
    width: min(36%, 170px);
  }

  .bulletin-layout,
  .blindbox {
    grid-template-columns: 1fr;
  }

  .stat-board {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .stat {
    min-height: 128px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 0;
  }

  .stat:last-child {
    border-right: 0;
  }

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

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 12% 6%, rgba(255, 196, 77, 0.34), transparent 15rem),
      linear-gradient(140deg, #fffdf8 0%, #f5ffec 58%, #fff4ef 100%);
  }

  .topbar {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 8px;
    border-radius: var(--radius);
  }

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

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.86rem;
  }

  main,
  .footer {
    width: calc(100% - 20px);
  }

  .hero {
    gap: 1.2rem;
    padding: 2rem 0 1rem;
  }

  .date-pill,
  .section-kicker {
    min-height: 31px;
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .hero h1 {
    margin: 0.85rem 0;
    max-width: 7.8em;
    font-size: clamp(2.55rem, 14vw, 3.45rem);
    line-height: 1;
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px;
    box-shadow: 4px 4px 0 var(--ink);
    font-size: 0.96rem;
  }

  .meme-stage {
    min-height: 320px;
    padding: 1.2rem 0 0.6rem;
  }

  .meme-card {
    border-width: 2px;
    box-shadow: 7px 8px 0 rgba(24, 32, 31, 0.92);
  }

  .meme-card figcaption {
    left: 7px;
    right: 7px;
    bottom: 7px;
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.82rem;
  }

  .meme-card-main {
    width: min(64%, 220px);
    aspect-ratio: 0.98 / 1;
    transform: rotate(-3deg);
  }

  .meme-card-side {
    right: 2%;
    bottom: 5%;
    width: min(32%, 108px);
    aspect-ratio: 0.76 / 1;
    transform: rotate(5deg);
  }

  .cap {
    width: 40px;
  }

  .cap-one {
    top: 7%;
    left: 57%;
  }

  .cap-two {
    right: 6%;
    top: 0;
  }

  .stamp {
    right: 4%;
    top: 39%;
    padding: 7px 10px;
    border-width: 3px;
    font-size: 1.18rem;
  }

  .ticker {
    margin-bottom: 2.4rem;
  }

  .ticker span {
    padding: 10px 16px;
    font-size: 0.92rem;
  }

  .section {
    margin: 3rem 0;
    scroll-margin-top: 78px;
  }

  .section h2,
  .finale h2 {
    font-size: clamp(1.8rem, 9vw, 3rem);
    line-height: 1.08;
  }

  .section p,
  .finale p {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .newspaper,
  .stat,
  .progress-card,
  .timeline-list li,
  .permit,
  .blindbox,
  .finale {
    box-shadow: 0 12px 28px rgba(24, 32, 31, 0.12);
  }

  .newspaper {
    padding: 1rem;
  }

  .stat-board {
    grid-template-columns: 1fr;
  }

  .stat {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .timeline-list,
  .permit-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .timeline-list li {
    min-height: auto;
  }

  .permit {
    min-height: 188px;
  }

  .blindbox {
    padding: 1rem;
  }

  .map-panel {
    min-height: 290px;
  }

  .map-panel::after {
    right: 10px;
    bottom: 12px;
    width: 150px;
    height: 70px;
    line-height: 64px;
  }

  .map-pin {
    min-width: 66px;
    min-height: 34px;
    padding: 6px 10px;
    font-size: 0.84rem;
  }

  .pin-home {
    left: 5%;
    top: 14%;
  }

  .pin-city {
    right: 5%;
    top: 18%;
  }

  .pin-food {
    left: 18%;
    bottom: 28%;
  }

  .route-one {
    left: 20%;
    top: 27%;
    width: 55%;
  }

  .route-two {
    left: 35%;
    top: 49%;
    width: 38%;
  }

  .finale {
    padding: 1rem;
  }

  .toast {
    bottom: 14px;
    padding: 10px 12px;
    font-size: 0.92rem;
  }
}

@media (max-width: 390px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.15rem);
  }

  .meme-stage {
    min-height: 310px;
  }

  .meme-card-main {
    width: min(64%, 210px);
  }

  .meme-card-side {
    width: min(32%, 104px);
  }

  .stamp {
    top: 37%;
  }
}

@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;
  }

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