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

:root {
  --green: #3d8b37;
  --green-bright: #5cb85c;
  --green-light: #7ec876;
  --green-dark: #2a6326;
  --green-deep: #1e4a1b;
  --brown: #8b5a2b;
  --brown-light: #a67c4a;
  --gold: #f0c040;
  --gold-hot: #ffd966;
  --ink: #14141c;
  --ink-soft: #2a2a36;
  --muted: #5c5c6a;
  --paper: #f0ebe0;
  --white: #ffffff;
  --font-display: "Fredoka", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 68px;
  --border: 2px solid var(--ink);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-mono);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--green-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--green-dark) 1px, transparent 1px);
  background-size: 48px 48px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.container.narrow {
  width: min(720px, 92vw);
}

.accent {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.ink {
  color: var(--ink);
}

.center {
  text-align: center;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(61, 139, 55, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: var(--border);
  transition: background 0.25s, box-shadow 0.25s;
}

.site-header.scrolled {
  background: rgba(42, 99, 38, 0.97);
  box-shadow: 0 8px 0 rgba(20, 20, 28, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1100px, 92vw);
  margin: 0 auto;
  height: 100%;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.nav-mark {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: 4px;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

.nav-socials {
  display: flex;
  gap: 0.4rem;
}

.nav-social {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--white) !important;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.nav-social:hover {
  background: var(--ink) !important;
  color: var(--gold) !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}

.nav-cta {
  display: inline-flex !important;
  align-items: center;
  padding: 0.5rem 1rem !important;
  background: var(--ink);
  color: var(--gold) !important;
  font-weight: 600 !important;
  border: 2px solid var(--ink);
  transition: background 0.2s, color 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  opacity: 1 !important;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 2px solid var(--white);
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 3.75rem;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  animation: hero-drift 32s var(--ease-out) infinite alternate;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(20, 20, 28, 0.92) 0%,
      rgba(20, 20, 28, 0.55) 40%,
      rgba(20, 20, 28, 0.2) 65%,
      rgba(20, 20, 28, 0.05) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
  max-width: 640px;
  margin-left: max(4vw, calc((100vw - 1100px) / 2));
  animation: rise-in 0.9s var(--ease-out) both;
}

.hero-logo-float {
  position: absolute;
  z-index: 2;
  right: max(4vw, calc((100vw - 1100px) / 2));
  bottom: 3.5rem;
  animation: rise-in 1s var(--ease-out) 0.15s both;
}

.hero-logo-float img {
  width: min(14rem, 28vw);
  display: block;
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.35);
  animation: float-loot 6s ease-in-out infinite;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 5.5rem);
  letter-spacing: -0.02em;
  line-height: 0.92;
  color: var(--green-light);
  margin-bottom: 0.35rem;
  text-shadow: 3px 3px 0 var(--ink);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 0.85rem;
}

.hero-lede {
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 28rem;
  margin-bottom: 1.75rem;
  font-weight: 400;
  line-height: 1.55;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(20, 20, 28, 0.35);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-eyebrow .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes hero-drift {
  from { transform: scale(1.02) translate(0, 0); }
  to { transform: scale(1.07) translate(-1.2%, -0.8%); }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%, 45% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes band-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--green-bright);
  color: var(--white);
  border-color: var(--ink);
}

.btn-primary:hover {
  background: var(--green-light);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-ink {
  background: var(--ink);
  color: var(--gold);
  border-color: var(--ink);
}

.btn-ink:hover {
  background: var(--ink-soft);
  color: var(--gold-hot);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--gold);
}

.btn-lg {
  padding: 1rem 1.85rem;
  font-size: 0.92rem;
}

.btn-copy {
  flex-shrink: 0;
  padding: 0.65rem 1.1rem;
  font-size: 0.82rem;
}

.btn-copy.copied {
  background: var(--ink);
  color: var(--gold);
}

/* ── Ticker ── */
.ticker {
  background: var(--ink);
  color: var(--green-light);
  padding: 0.75rem 0;
  overflow: hidden;
  border-top: var(--border);
  border-bottom: var(--border);
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  width: max-content;
  animation: ticker 36s linear infinite;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.ticker-sep {
  color: var(--gold);
  opacity: 0.5;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Sections ── */
.section {
  padding: 5.5rem 0;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.eyebrow.center {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
  color: var(--ink);
}

.section-text {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 1rem;
  max-width: 34rem;
}

.section-text strong {
  color: var(--ink);
  font-weight: 600;
}

.section-sub {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* ── ASCII band ── */
.ascii-band {
  background: var(--green);
  border-top: var(--border);
  border-bottom: var(--border);
  overflow: hidden;
  padding: 0.9rem 0;
  position: relative;
  z-index: 1;
}

.ascii-band pre {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
  width: max-content;
  animation: band-scroll 40s linear infinite;
  letter-spacing: 0.08em;
}

/* ── Contract ── */
.contract-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.contract-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.contract-pill span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.contract-pill code {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.copy-toast {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  min-height: 1.25rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Buy ── */
.buy-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.55);
  padding: 3rem 0 2rem;
  border-top: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border: 2px solid var(--gold);
  border-radius: 4px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}

.footer-brand span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-disclaimer {
  font-size: 0.72rem;
  max-width: 520px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: -0.02em;
  color: var(--green-light);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

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

/* ── Story / meme card ── */
.story {
  background: var(--paper);
}

.story-grid {
  display: grid;
  gap: 2.75rem;
  align-items: start;
}

@media (min-width: 960px) {
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
}

.meme-card {
  border: var(--border);
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.meme-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
}

.meme-card__banner img {
  width: 100%;
  display: block;
}

.meme-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.15rem;
  background: var(--green);
}

.meme-card__tags span {
  padding: 0.3rem 0.75rem;
  background: var(--ink);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-copy .section-text.lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  max-width: none;
}

.story .section-title .accent {
  color: var(--green);
}

/* ── Pillars ── */
.movement {
  background: var(--paper);
}

.pillars {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .pillars { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
  padding: 1.5rem 1.25rem;
  border: var(--border);
  background: var(--white);
  transition: transform 0.25s var(--ease-out), background 0.25s;
}

.pillar:hover {
  transform: translateY(-4px);
  background: var(--green);
  color: var(--white);
}

.pillar-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--green);
  color: var(--white);
  margin-bottom: 1rem;
}

.pillar:hover .pillar-icon {
  background: var(--ink);
  color: var(--gold);
}

.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.pillar:hover p {
  color: rgba(255, 255, 255, 0.82);
}

.movement .section-title .accent {
  color: var(--green);
}

/* ── Brand showcase ── */
.gallery-section {
  background: var(--ink-soft);
  color: var(--white);
}

.gallery-section .section-title {
  color: var(--white);
}

.gallery-section .eyebrow {
  color: rgba(126, 200, 118, 0.65);
}

.gallery-section .section-sub {
  color: rgba(255, 255, 255, 0.5);
}

.gallery-section .section-title .accent {
  color: var(--green-light);
}

.brand-showcase {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .brand-showcase {
    grid-template-columns: 1fr 2fr;
    align-items: stretch;
  }
}

.brand-item {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--green-light);
  background: var(--ink);
}

.brand-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.brand-item:hover img {
  transform: scale(1.03);
}

.brand-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(20, 20, 28, 0.92), transparent);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}

.brand-item--wide img {
  object-fit: contain;
  background: var(--green-dark);
}

/* ── Community ── */
.community {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.25) 0%, transparent 40%),
    linear-gradient(to bottom right, var(--green) 0%, var(--green-dark) 100%);
}

.community .section-sub {
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.75);
}

.community .section-title {
  color: var(--white);
}

.community .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.tri-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 2.5rem;
}

.tri-card {
  padding: 1.1rem 0.75rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
}

.tri-card strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--white);
}

.tri-card span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Token / loot sheet ── */
.token {
  background: var(--paper);
}

.loot {
  display: grid;
  justify-items: center;
  gap: 1.8rem;
  margin-bottom: 1.75rem;
  width: 100%;
}

.loot__coin {
  width: min(100%, 1100px);
}

.loot__coin img {
  display: block;
  width: min(100%, 280px);
  margin-inline: auto;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  animation: float-loot 6s ease-in-out infinite;
}

.loot__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  width: 100%;
}

.loot__stats div {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 1.2rem 0.5rem 1.3rem;
  text-align: center;
  box-shadow: 5px 5px 0 var(--green-dark);
  min-height: 110px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.45rem;
  transition: transform 0.2s var(--ease-out), background 0.2s;
  container-type: inline-size;
  min-width: 0;
}

.loot__stats div:hover {
  transform: translateY(-3px);
  background: var(--green);
  color: var(--white);
}

.loot__stats div:hover strong {
  color: var(--white);
}

.loot__stats span {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.loot__stats strong {
  display: block;
  max-width: 100%;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 9.5cqi, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.token-ca {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  max-width: 100%;
}

.token-ca code {
  flex: 1;
  min-width: 0;
  word-break: break-all;
  font-size: 0.82rem;
  padding: 0.55rem 0.75rem;
  background: var(--white);
  border: 2px solid var(--ink);
}

.token-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  justify-content: center;
  align-items: center;
}

.center-actions {
  justify-content: center;
}

@keyframes float-loot {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .loot__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loot__stats strong {
    font-size: clamp(0.9rem, 8cqi, 1.35rem);
  }

  .hero-logo-float {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--green-dark);
    flex-direction: column;
    padding: 1.35rem;
    gap: 1rem;
    border-bottom: var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

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

  .hero {
    padding-bottom: 3rem;
  }

  .hero-veil {
    background:
      linear-gradient(
        to top,
        rgba(20, 20, 28, 0.95) 0%,
        rgba(20, 20, 28, 0.6) 45%,
        rgba(20, 20, 28, 0.25) 100%
      );
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner {
    object-position: 50% center;
  }
}

@media (max-width: 520px) {
  .loot__stats {
    grid-template-columns: 1fr;
  }

  .loot__stats strong {
    font-size: clamp(1.05rem, 7cqi, 1.4rem);
  }

  .token-ca {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .token-ca .btn-copy {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-brand {
    font-size: 2.75rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner,
  .ticker-track,
  .ascii-band pre,
  .hero-logo-float img,
  .loot__coin img {
    animation: none;
  }

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