/* ============================================================
   JIMOTHY HOOD — $JIMOHOOD
   Theme drawn from logo/banner: lime chartreuse, forest greens,
   raccoon charcoal, leather brown, feather red.
   ============================================================ */

:root {
  --lime: #c8e600;
  --lime-bright: #d8f818;
  --forest: #2e4a1f;
  --forest-deep: #1c2f12;
  --forest-darkest: #101c0a;
  --moss: #4a6b2f;
  --charcoal: #1d1d1f;
  --cream: #f3ecd8;
  --leather: #8a5a2b;
  --feather: #d43a2f;
  --ink: #17210f;

  --font-display: 'Bangers', cursive;
  --font-body: 'Rubik', sans-serif;

  --shadow-pop: 0 8px 0 rgba(16, 28, 10, 0.9);
  --radius: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--lime);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--feather); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--forest-darkest); }
::-webkit-scrollbar-thumb { background: var(--lime); border: 3px solid var(--forest-darkest); border-radius: 8px; }

/* ============ CANVAS & ARROW ============ */
#leaves {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

#arrow {
  position: fixed;
  top: 30vh;
  left: -140px;
  z-index: 60;
  pointer-events: none;
  opacity: 0;
}
#arrow.fly {
  animation: arrowFly 1.1s cubic-bezier(0.2, 0, 0.4, 1) forwards;
}
@keyframes arrowFly {
  0%   { transform: translateX(0) rotate(-4deg); opacity: 1; }
  100% { transform: translateX(calc(100vw + 300px)) rotate(2deg); opacity: 1; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 1.5px;
  padding: 12px 26px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--feather);
  color: #fff;
  box-shadow: 0 6px 0 var(--ink);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--ink); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ink); }

.btn-dark {
  background: var(--charcoal);
  color: var(--lime);
  box-shadow: 0 6px 0 rgba(0,0,0,0.45);
}
.btn-dark:hover { transform: translateY(-3px); background: #000; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost:hover { background: rgba(243, 236, 216, 0.15); }

.btn-lg { font-size: 1.55rem; padding: 16px 34px; border-radius: 18px; }
.btn-sm { font-size: 1rem; padding: 8px 18px; border-width: 2px; }

.boing:hover { animation: boing 0.45s ease; }
@keyframes boing {
  0% { transform: scale(1); }
  35% { transform: scale(1.08, 0.92); }
  65% { transform: scale(0.95, 1.05); }
  100% { transform: scale(1) translateY(-3px); }
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 47, 18, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--lime);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.nav-logo {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid var(--lime);
  transition: transform 0.4s ease;
}
.nav-brand:hover .nav-logo { transform: rotate(360deg); }

.nav-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--cream);
}
.nav-name em { font-style: normal; color: var(--lime); }

.nav-links { display: flex; gap: 26px; }
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; gap: 10px; align-items: center; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  width: 26px; height: 3px;
  background: var(--lime);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 18px 24px 24px;
  border-top: 2px solid rgba(200, 230, 0, 0.25);
}
.nav-mobile a { color: var(--cream); font-weight: 700; }
.nav-mobile .btn { justify-content: center; }
.nav-mobile.open { display: flex; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 130px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../banner.png') center 30% / cover no-repeat;
  transform: scale(1.06);
  animation: slowZoom 24s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.06) translateY(0); }
  to   { transform: scale(1.14) translateY(-12px); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(16, 28, 10, 0.94) 0%, rgba(16, 28, 10, 0.82) 38%, rgba(16, 28, 10, 0.35) 68%, rgba(16, 28, 10, 0.55) 100%),
    linear-gradient(to top, rgba(16, 28, 10, 0.95) 0%, transparent 30%);
}

.hero-rays {
  position: absolute;
  inset: -20%;
  background: conic-gradient(
    from 190deg at 78% -10%,
    transparent 0deg, rgba(216, 248, 24, 0.10) 8deg, transparent 16deg,
    transparent 24deg, rgba(216, 248, 24, 0.08) 32deg, transparent 40deg,
    transparent 52deg, rgba(216, 248, 24, 0.10) 60deg, transparent 70deg
  );
  animation: raysPan 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes raysPan {
  from { transform: rotate(-2deg); opacity: 0.75; }
  to   { transform: rotate(3deg); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(0,0,0,0.4);
  margin-bottom: 22px;
}
.wiggle { animation: wiggle 3.2s ease-in-out infinite; }
@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.98;
  color: var(--cream);
  letter-spacing: 2px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55);
  margin-bottom: 22px;
}
.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(40px) rotate(-1.5deg);
  animation: lineUp 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.15s; }
.hero-title .line:nth-child(2) { animation-delay: 0.32s; }
.hero-title .line:nth-child(3) { animation-delay: 0.49s; }
@keyframes lineUp {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.hl-lime { color: var(--lime-bright); }
.hl-red { color: #ff6a5c; }

.hero-sub {
  color: rgba(243, 236, 216, 0.92);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.7s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

/* CA box */
.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 28, 10, 0.85);
  border: 2px dashed var(--lime);
  border-radius: 14px;
  padding: 12px 16px;
  margin-bottom: 28px;
  cursor: pointer;
  max-width: 100%;
  transition: background 0.2s, transform 0.2s;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.85s forwards;
}
.ca-box:hover { background: rgba(46, 74, 31, 0.9); transform: translateY(-2px); }

.ca-label {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.ca-value {
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  background: none;
  border: none;
  color: var(--lime);
  cursor: pointer;
  display: flex;
  transition: transform 0.2s;
}
.ca-copy:hover { transform: scale(1.2); }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease 1s forwards;
}
.center-row { justify-content: center; }

/* Hero art */
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: min(380px, 80%);
  border-radius: 32px;
  border: 5px solid var(--lime);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 10px rgba(200, 230, 0, 0.12);
  position: relative;
  z-index: 2;
}

.float { animation: floaty 5s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
}

.hero-ring {
  position: absolute;
  width: min(460px, 95%);
  aspect-ratio: 1;
  border: 3px dashed rgba(216, 248, 24, 0.5);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-sticker {
  position: absolute;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 1px;
  line-height: 1.1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: 0 5px 0 rgba(0,0,0,0.45);
}
.sticker-1 {
  top: 4%; right: 2%;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(8deg);
  animation: stickerBob 4s ease-in-out infinite;
}
.sticker-2 {
  bottom: 6%; left: 0;
  background: var(--feather);
  color: #fff;
  transform: rotate(-7deg);
  animation: stickerBob 4.6s ease-in-out 0.6s infinite;
}
@keyframes stickerBob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  color: var(--lime);
  font-size: 1.3rem;
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.9; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

/* ============ TICKER ============ */
.ticker {
  position: relative;
  z-index: 5;
  background: var(--charcoal);
  border-top: 3px solid var(--lime);
  border-bottom: 3px solid var(--lime);
  overflow: hidden;
  padding: 14px 0;
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: tickerScroll 22s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--lime);
  white-space: nowrap;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ============ SECTIONS ============ */
.section {
  position: relative;
  z-index: 2;
  padding: 110px 24px;
}

.section.dark {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(200, 230, 0, 0.08), transparent 60%),
    var(--forest-darkest);
  color: var(--cream);
}

.container { max-width: 1200px; margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.center { text-align: center; }

.kicker {
  display: inline-block;
  font-weight: 900;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--ink);
  color: var(--lime);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section.dark .kicker { background: var(--lime); color: var(--ink); }

.h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: 2px;
  line-height: 1.05;
  margin-bottom: 18px;
}
.h2.giant { font-size: clamp(2.6rem, 6vw, 4.6rem); }

.section-sub {
  font-size: 1.1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 50px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(46px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.3, 1.1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

/* ============ LEGEND ============ */
.legend { background: var(--lime); }

.banner-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 5px solid var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.tilt { transform: rotate(-2deg); }
.tilt:hover { transform: rotate(0deg) scale(1.02); box-shadow: 6px 6px 0 var(--ink); }
.banner-frame img { transition: transform 0.6s ease; }
.banner-frame:hover img { transform: scale(1.06); }

.legend-plaque {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-display);
  letter-spacing: 2px;
  background: var(--leather);
  color: var(--cream);
  padding: 8px 20px;
  border-radius: 10px;
  border: 3px solid var(--ink);
  transform: rotate(1.5deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.3);
}

.legend-copy p { margin-bottom: 16px; font-size: 1.08rem; }

.legend-list {
  list-style: none;
  margin: 10px 0 28px;
}
.legend-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  padding: 10px 14px;
  margin-bottom: 10px;
  background: rgba(23, 33, 15, 0.08);
  border: 2px solid var(--ink);
  border-radius: 12px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.legend-list li:hover { transform: translateX(8px); background: rgba(23, 33, 15, 0.14); }
.legend-list li span { font-size: 1.3rem; }

/* ============ TOKENOMICS ============ */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: rgba(46, 74, 31, 0.45);
  border: 3px solid var(--moss);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease,
              opacity 0.7s ease;
}
.card:hover {
  transform: translateY(-10px) rotate(-1deg);
  border-color: var(--lime);
  box-shadow: 0 16px 40px rgba(200, 230, 0, 0.15);
}

.card-emoji { font-size: 2.6rem; margin-bottom: 12px; }

.card-num {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--lime-bright);
  letter-spacing: 2px;
  line-height: 1;
}

.card-label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin: 8px 0 12px;
  color: var(--cream);
}

.card p { font-size: 0.95rem; opacity: 0.8; }

/* ============ HOW TO BUY ============ */
.how { background: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.step {
  position: relative;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 40px 22px 26px;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
}
.step:hover { transform: translate(4px, 4px); box-shadow: 4px 4px 0 var(--ink); }

.step-num {
  position: absolute;
  top: -18px; left: 18px;
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  background: var(--feather);
  color: #fff;
  border: 3px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-8deg);
}

.step-emoji { font-size: 2.4rem; margin-bottom: 12px; }

.step h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.step p { font-size: 0.95rem; opacity: 0.85; }

/* ============ ROADMAP ============ */
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 46px;
  top: 10px; bottom: 10px;
  width: 4px;
  background: repeating-linear-gradient(
    to bottom,
    var(--lime) 0 14px,
    transparent 14px 26px
  );
  border-radius: 2px;
}

.tl-item {
  position: relative;
  display: flex;
  gap: 28px;
  margin-bottom: 34px;
  align-items: flex-start;
}

.tl-dot {
  flex: 0 0 56px;
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  background: var(--lime);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(200, 230, 0, 0.18);
  z-index: 1;
}

.tl-card {
  flex: 1;
  background: rgba(46, 74, 31, 0.45);
  border: 3px solid var(--moss);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.7s ease;
}
.tl-item:hover .tl-card { transform: translateX(8px); border-color: var(--lime); }

.tl-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 1px;
  color: var(--lime-bright);
  margin-bottom: 6px;
}
.tl-card p { opacity: 0.85; font-size: 0.98rem; }

/* ============ FINAL CTA ============ */
.cta-final {
  background:
    linear-gradient(rgba(16, 28, 10, 0.88), rgba(16, 28, 10, 0.94)),
    url('../banner.png') center / cover no-repeat fixed;
  color: var(--cream);
  padding: 130px 24px;
}

.cta-logo {
  width: 170px;
  margin: 0 auto 30px;
  border-radius: 50%;
  border: 5px solid var(--lime);
  box-shadow: 0 0 0 12px rgba(200, 230, 0, 0.15), 0 20px 50px rgba(0,0,0,0.5);
}

.cta-final .h2 { margin-bottom: 34px; text-shadow: 4px 4px 0 rgba(0,0,0,0.5); }

/* ============ FOOTER ============ */
.footer {
  background: var(--forest-darkest);
  color: var(--cream);
  padding: 50px 24px 30px;
  border-top: 3px solid var(--lime);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-weight: 700;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--lime); }

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.55;
  max-width: 720px;
  margin-bottom: 14px;
}
.copyright { font-size: 0.8rem; opacity: 0.4; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  translate: -50% 0;
  z-index: 200;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-radius: 14px;
  border: 3px solid var(--ink);
  box-shadow: 0 6px 0 rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1020px) {
  .nav-links { display: none; }
  .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-art { margin-top: 30px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 560px) {
  .grid-4, .steps { grid-template-columns: 1fr; }
  .section { padding: 80px 18px; }
  .btn-lg { font-size: 1.25rem; padding: 14px 24px; }
  .timeline::before { left: 42px; }
  .tl-dot { flex-basis: 48px; width: 48px; height: 48px; }
  .hero-sticker { font-size: 0.85rem; padding: 8px 12px; }
  .ca-value { max-width: 180px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  #leaves, #arrow { display: none; }
}
