:root {
  --ink: #11140f;
  --ink-soft: #1b2018;
  --paper: #f4f0e6;
  --white: #ffffff;
  --grass: #9dde4a;
  --grass-dark: #6da626;
  --lava: #ff7a2f;
  --lava-dark: #b8420d;
  --sky: #58bee8;
  --sky-dark: #177ea8;
  --muted-dark: #aeb8a6;
  --muted-light: #5d6658;
  --line-dark: rgba(244, 240, 230, 0.18);
  --line-light: #d8d5ca;
  --font-display: "Press Start 2P", monospace;
  --font-sans: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-pixel: 6px 6px 0 rgba(17, 20, 15, 0.3);
}

@font-face {
  font-family: "Noto Sans SC";
  src: url("assets/NotoSansSC-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Press Start 2P";
  src: url("assets/PressStart2P-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--grass);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 4px;
}

.content-width {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  padding: 0 max(20px, calc((100vw - var(--content)) / 2));
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background-color 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  height: 68px;
  border-color: var(--line-dark);
  background: rgba(17, 20, 15, 0.96);
}

.brand-mark {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1;
}

.brand-cube {
  position: relative;
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  background: var(--grass);
  box-shadow: inset -5px -5px 0 var(--grass-dark), 3px 3px 0 var(--paper);
}

.brand-cube::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.55);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  display: grid;
  min-width: 44px;
  min-height: 48px;
  padding-inline: 8px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--grass);
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-copy {
  justify-self: end;
  display: inline-flex;
  min-width: 118px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 2px solid rgba(255, 255, 255, 0.54);
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-copy:hover {
  border-color: var(--grass);
  background: var(--grass);
  color: var(--ink);
}

.header-copy svg,
.menu-button svg,
.copy-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  height: 88svh;
  max-height: 900px;
  align-items: center;
  overflow: hidden;
  background: #172016;
  color: var(--white);
}

.hero-image,
.hero-scrim,
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(0.9) contrast(1.08);
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(9, 12, 8, 0.96) 0%, rgba(9, 12, 8, 0.76) 45%, rgba(9, 12, 8, 0.15) 78%),
    linear-gradient(0deg, rgba(9, 12, 8, 0.72) 0%, transparent 36%, rgba(9, 12, 8, 0.38) 100%);
}

.hero-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.live-dot {
  width: 10px;
  height: 10px;
  border: 2px solid var(--ink);
  background: var(--grass);
  box-shadow: 2px 2px 0 var(--grass-dark);
}

.hero h1 {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  line-height: 1;
}

.hero-brand {
  color: var(--grass);
  font-family: var(--font-display);
  font-size: 64px;
  text-shadow: 6px 6px 0 rgba(17, 20, 15, 0.78);
}

.hero-name {
  margin-top: 20px;
  color: var(--white);
  font-size: 70px;
  font-weight: 900;
}

.hero-copy {
  max-width: 640px;
  margin: 25px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  font-weight: 500;
}

.server-command {
  display: flex;
  width: min(100%, 568px);
  min-height: 76px;
  align-items: stretch;
  border: 2px solid rgba(255, 255, 255, 0.36);
  border-radius: 4px;
  background: rgba(15, 19, 13, 0.84);
  box-shadow: var(--shadow-pixel);
}

.server-address {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 10px 18px;
}

.server-address span,
.final-label {
  color: var(--muted-dark);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1.5;
}

.server-address strong {
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.35;
}

.copy-button {
  display: inline-flex;
  min-width: 190px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 2px;
  background: var(--grass);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  transition: background-color 180ms ease, box-shadow 180ms ease, transform 100ms ease;
}

.copy-button:hover {
  background: #b5ed70;
  box-shadow: inset 0 -5px 0 rgba(17, 20, 15, 0.16);
}

.copy-button:active {
  transform: translateY(2px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-tags li + li::before {
  content: "/";
  margin-right: 12px;
  color: rgba(255, 255, 255, 0.26);
}

.hero-tags span {
  color: var(--grass);
  font-family: var(--font-display);
  font-size: 8px;
}

.hero-tags .is-muted {
  color: rgba(255, 255, 255, 0.52);
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - var(--content)) / 2));
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
}

.scroll-cue svg {
  width: 18px;
}

.games-section {
  position: relative;
  padding: 108px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 31px, rgba(17, 20, 15, 0.045) 32px, transparent 33px),
    linear-gradient(transparent 31px, rgba(17, 20, 15, 0.045) 32px, transparent 33px),
    var(--paper);
  background-size: 32px 32px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--lava-dark);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1.5;
}

.section-heading h2,
.join-intro h2 {
  max-width: 650px;
  margin: 0;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 900;
}

.section-heading > p:last-child,
.join-intro > p:last-child {
  max-width: 520px;
  justify-self: end;
  margin: 0;
  color: var(--muted-light);
  font-size: 17px;
}

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

.game-card {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.game-art {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--ink-soft);
}

.game-art picture,
.game-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-content {
  min-height: 302px;
  padding: 30px 30px 28px;
}

.game-number,
.feature-index,
.step-number,
.coming-index {
  color: var(--lava-dark);
  font-family: var(--font-display);
  font-size: 9px;
  line-height: 1.5;
}

.game-content h3 {
  margin: 12px 0 12px;
  font-size: 32px;
  line-height: 1.25;
}

.game-content > p {
  max-width: 480px;
  margin: 0;
  color: var(--muted-light);
}

.game-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
}

.game-details li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-details svg {
  width: 18px;
  height: 18px;
  color: var(--lava-dark);
  stroke-width: 2.4;
}

.coming-soon {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 28px 32px;
  border-block: 2px solid var(--ink);
}

.coming-soon p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.coming-soon div > span {
  color: var(--muted-light);
  font-size: 14px;
}

.loading-blocks {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 30px;
}

.loading-blocks span {
  width: 13px;
  height: 13px;
  border: 2px solid var(--ink);
  background: var(--grass);
}

.loading-blocks span:nth-child(2),
.loading-blocks span:nth-child(4) {
  height: 23px;
  background: var(--sky);
}

.features-section {
  position: relative;
  padding: 104px 0 112px;
  background: var(--ink);
  color: var(--white);
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, 0.1) 48% 52%, transparent 53%);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.features-section .content-width {
  position: relative;
}

.section-heading-light {
  display: block;
  margin-bottom: 64px;
}

.section-heading-light .eyebrow {
  margin-bottom: 14px;
  color: var(--grass);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.feature-item {
  position: relative;
  padding: 48px 42px 10px 0;
}

.feature-item + .feature-item {
  padding-left: 42px;
  border-left: 1px solid var(--line-dark);
}

.feature-item:last-child {
  padding-right: 0;
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 38px;
  place-items: center;
  border: 3px solid var(--ink);
  color: var(--ink);
  box-shadow: 4px 4px 0 rgba(255, 255, 255, 0.18);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2.3;
}

.feature-icon.sky { background: var(--sky); }
.feature-icon.lava { background: var(--lava); }
.feature-icon.grass { background: var(--grass); }

.feature-index {
  color: var(--muted-dark);
}

.feature-item h3 {
  margin: 10px 0 12px;
  font-size: 25px;
}

.feature-item p {
  max-width: 330px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
}

.join-section {
  padding: 112px 0 90px;
  background: var(--paper);
}

.join-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 86px;
}

.join-intro .eyebrow {
  margin-bottom: 14px;
}

.join-intro h2 {
  font-size: 48px;
}

.join-intro > p:last-child {
  max-width: 400px;
  margin-top: 24px;
}

.join-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.join-steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  border-top: 2px solid var(--ink);
}

.join-steps li:last-child {
  border-bottom: 2px solid var(--ink);
}

.step-number {
  color: var(--lava-dark);
}

.join-steps div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.join-steps strong {
  font-size: 20px;
}

.join-steps div span {
  color: var(--muted-light);
  font-size: 14px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 88px;
  padding: 38px 42px;
  border: 3px solid var(--ink);
  border-radius: 4px;
  background: var(--grass);
  box-shadow: 9px 9px 0 var(--ink);
}

.final-cta > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 6px;
}

.final-label {
  color: rgba(17, 20, 15, 0.66);
}

.final-cta strong {
  overflow-wrap: anywhere;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.4;
}

.copy-button-dark {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.copy-button-dark:hover {
  background: var(--ink-soft);
  box-shadow: inset 0 -5px 0 rgba(255, 255, 255, 0.1);
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--muted-dark);
}

.site-footer .content-width {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.footer-note {
  max-width: 440px;
  text-align: right;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 3px;
  transform: translateY(24px);
  visibility: hidden;
  opacity: 0;
  background: var(--grass);
  color: var(--ink);
  box-shadow: 5px 5px 0 rgba(17, 20, 15, 0.34);
  font-size: 14px;
  font-weight: 800;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 220ms;
}

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

.toast svg {
  width: 20px;
  height: 20px;
  stroke-width: 3;
}

.reveal-item {
  animation: hero-reveal 600ms var(--ease) both;
}

.reveal-item:nth-child(2) { animation-delay: 80ms; }
.reveal-item:nth-child(3) { animation-delay: 150ms; }
.reveal-item:nth-child(4) { animation-delay: 220ms; }
.reveal-item:nth-child(5) { animation-delay: 290ms; }

.js .reveal-on-scroll {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 500ms ease, transform 550ms var(--ease);
}

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

@keyframes hero-reveal {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-copy {
    display: none;
  }

  .menu-button {
    justify-self: end;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 3px;
    background: transparent;
    color: var(--white);
    cursor: pointer;
  }

  .mobile-nav {
    position: absolute;
    top: 67px;
    right: 0;
    left: 0;
    display: grid;
    padding: 10px 20px 18px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(17, 20, 15, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    display: flex;
    min-height: 52px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    font-weight: 700;
  }

  .hero {
    min-height: 680px;
  }

  .hero-brand {
    font-size: 48px;
  }

  .hero-name {
    font-size: 56px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    justify-self: start;
  }

  .game-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .feature-item,
  .feature-item + .feature-item {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 24px;
    padding: 32px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .feature-icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .feature-item h3,
  .feature-item p {
    grid-column: 2;
  }

  .feature-item h3 {
    margin: 5px 0 8px;
  }

  .join-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .site-footer .content-width {
    grid-template-columns: auto 1fr;
  }

  .footer-note {
    grid-column: 1 / -1;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .content-width {
    width: min(calc(100% - 32px), var(--content));
  }

  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    height: 62px;
  }

  .mobile-nav {
    top: 61px;
    padding-inline: 16px;
  }

  .hero {
    min-height: 650px;
    height: 91svh;
    max-height: 780px;
    align-items: flex-end;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(9, 12, 8, 0.97) 0%, rgba(9, 12, 8, 0.78) 54%, rgba(9, 12, 8, 0.24) 100%),
      linear-gradient(90deg, rgba(9, 12, 8, 0.52), transparent);
  }

  .hero-content {
    padding: 88px 0 68px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 13px;
  }

  .hero-brand {
    font-size: 34px;
    text-shadow: 4px 4px 0 rgba(17, 20, 15, 0.78);
  }

  .hero-name {
    margin-top: 14px;
    font-size: 43px;
  }

  .hero-copy {
    margin: 18px 0 24px;
    font-size: 17px;
  }

  .server-command {
    min-height: 0;
    flex-direction: column;
  }

  .server-address {
    min-height: 68px;
    padding-inline: 16px;
  }

  .server-address strong {
    font-size: 16px;
  }

  .copy-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
  }

  .hero-tags {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .games-section,
  .features-section,
  .join-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .section-heading,
  .section-heading-light {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .join-intro h2 {
    font-size: 34px;
  }

  .section-heading > p:last-child,
  .join-intro > p:last-child {
    font-size: 16px;
  }

  .game-card {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .game-art {
    height: 220px;
  }

  .game-content {
    min-height: 0;
    padding: 24px 22px 26px;
  }

  .game-content h3 {
    font-size: 27px;
  }

  .game-details {
    flex-direction: column;
  }

  .coming-soon {
    grid-template-columns: 74px 1fr;
    padding: 22px 0;
  }

  .loading-blocks {
    display: none;
  }

  .feature-item,
  .feature-item + .feature-item {
    grid-template-columns: 54px 1fr;
    column-gap: 18px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-item h3 {
    font-size: 22px;
  }

  .join-intro > p:last-child {
    margin-top: 18px;
  }

  .join-steps li {
    grid-template-columns: 48px 1fr;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 60px;
    padding: 28px 22px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .final-cta strong {
    font-size: 18px;
  }

  .site-footer .content-width {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }
}

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

  .js .reveal-on-scroll {
    transform: none;
    opacity: 1;
  }
}
