:root {
  --forest: #071d17;
  --forest-2: #0c3026;
  --leaf: #174b39;
  --paper: #f4eedc;
  --paper-2: #e9ddbf;
  --gold: #f4bd4c;
  --gold-light: #ffda78;
  --acid: #d8ff58;
  --mist: #bdebd8;
  --ink: #061612;
  --white: #fffdf4;
  --line-light: rgba(255, 253, 244, 0.22);
  --line-dark: rgba(6, 22, 18, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--forest);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--acid); color: var(--ink); }
a, button { -webkit-tap-highlight-color: transparent; }
img { display: block; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 11px 16px;
  background: var(--acid);
  color: var(--ink);
  text-decoration: none;
  font: 700 12px "Space Mono", monospace;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  padding: 0 clamp(20px, 4.8vw, 76px);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  transition: background-color 0.3s, height 0.3s;
}
.site-header.scrolled {
  height: 70px;
  background: rgba(7, 29, 23, 0.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  text-decoration: none;
  min-width: 208px;
}
.brand-mark {
  width: 47px;
  height: 47px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.brand-mark img { width: 116%; height: 116%; margin: -8% 0 0 -8%; object-fit: contain; }
.brand-copy b, .brand-copy small { display: block; }
.brand-copy b { font: 700 10px/1.1 "Space Mono", monospace; letter-spacing: -0.4px; }
.brand-copy small { margin-top: 4px; color: var(--gold-light); font: 400 8px/1 "Space Mono", monospace; letter-spacing: 2.4px; }

.nav-links { display: flex; align-items: center; gap: 34px; margin: 0 auto; }
.nav-links a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font: 700 10px/1 "Space Mono", monospace;
  letter-spacing: 0.5px;
}
.nav-links a span { color: var(--gold); margin-right: 5px; font-size: 8px; }
.nav-links a::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 0;
  right: 100%;
  bottom: -9px;
  background: var(--acid);
  transition: right 0.25s;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { right: 0; }
.header-buy {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 46px;
  padding: 0 15px 0 8px;
  background: var(--acid);
  border: 1px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  text-transform: uppercase;
  font: 700 10px "Space Mono", monospace;
  box-shadow: 4px 4px 0 var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-buy:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--gold); }
.header-buy img { width: 31px; height: 31px; object-fit: contain; }
.header-buy b { font-size: 15px; }
.menu-toggle { display: none; }

.hero {
  min-height: 930px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  overflow: hidden;
  padding: 145px clamp(20px, 7.3vw, 118px) 115px;
}
.hero-bg, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; object-position: center; }
.hero-shade { background: rgba(1, 18, 14, 0.66); }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 13px solid rgba(255, 255, 255, 0.035);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 3; max-width: 770px; }
.live-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 12px;
  border: 1px solid var(--line-light);
  background: rgba(7, 29, 23, 0.62);
  font: 700 9px "Space Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.live-note i { width: 7px; height: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); }
.live-note span { color: var(--mist); }
.live-note b { padding-left: 10px; border-left: 1px solid var(--line-light); color: var(--gold-light); }
h1, h2, h3 { margin: 0; }
h1 {
  font: 400 clamp(68px, 8.1vw, 130px)/0.84 "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: -2.5px;
  text-shadow: 0 5px 0 rgba(0, 0, 0, 0.2);
}
h1 span { display: block; }
h1 .gold-line { color: var(--gold); -webkit-text-stroke: 1px var(--gold-light); }
.hero-intro {
  max-width: 520px;
  margin: 29px 0 0;
  color: rgba(255, 253, 244, 0.78);
  font-size: 15px;
  line-height: 1.65;
}
.token-stamp {
  max-width: 560px;
  margin: 29px 0 22px;
  padding: 12px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-transform: uppercase;
  font-family: "Space Mono", monospace;
}
.token-stamp span { font-size: 9px; letter-spacing: 1px; }
.token-stamp strong { color: var(--acid); font-size: 12px; }
.token-stamp small { grid-column: 1 / -1; margin-top: 7px; color: var(--mist); font-size: 8px; letter-spacing: 2.8px; }
.hero-actions { display: grid; grid-template-columns: repeat(2, minmax(210px, 1fr)); gap: 9px; max-width: 650px; }
.action-card {
  appearance: none;
  min-height: 79px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(7, 29, 23, 0.78);
  color: var(--white);
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, background-color 0.2s;
}
.action-card:hover, .action-card:focus-visible { transform: translateY(-4px); border-color: var(--acid); background: var(--leaf); outline: 2px solid var(--acid); outline-offset: 2px; }
.action-card > img, .x-icon { width: 39px; height: 39px; object-fit: contain; }
.action-card > span small, .action-card > span b { display: block; }
.action-card > span small { margin-bottom: 5px; color: var(--mist); font: 400 9px "Space Mono", monospace; letter-spacing: 0.4px; }
.action-card > span b { font: 700 11px "Space Mono", monospace; }
.action-card > i { font: normal 17px "Space Mono", monospace; color: var(--gold-light); }
.action-buy { background: var(--acid); color: var(--ink); border-color: var(--ink); }
.action-buy:hover, .action-buy:focus-visible { background: var(--gold-light); border-color: var(--ink); outline-color: var(--gold-light); }
.action-buy > span small, .action-buy > i { color: var(--ink); }
.x-icon { display: grid; place-items: center; border-radius: 50%; background: var(--white); }
.x-icon svg { width: 17px; height: 17px; fill: var(--ink); }
.copy-card { font-family: inherit; }

.hero-visual { align-self: stretch; position: relative; z-index: 2; min-height: 650px; }
.character-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.45s ease, filter 0.45s ease;
}
.character-shape-gold {
  width: min(38vw, 470px);
  height: 520px;
  right: -1%;
  top: 12%;
  overflow: hidden;
  border: 1px solid rgba(255, 218, 120, 0.54);
  border-radius: 53% 47% 63% 37% / 39% 52% 48% 61%;
  background: rgba(244, 189, 76, 0.11);
  box-shadow: inset 0 0 80px rgba(244, 189, 76, 0.08), 0 28px 80px rgba(0, 0, 0, 0.2);
  transform: rotate(8deg);
  animation: shapeFloat 8s ease-in-out infinite alternate;
}
.character-shape-gold::after {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: inherit;
  background: url("assets/leopard-spots-web.png") center / 118% no-repeat;
  opacity: 0.16;
  filter: sepia(1) saturate(0.8) brightness(1.3);
}
.character-shape-leaf {
  width: min(29vw, 350px);
  height: 430px;
  left: 10%;
  top: 26%;
  border: 1px solid rgba(189, 235, 216, 0.22);
  border-radius: 64% 36% 45% 55% / 51% 60% 40% 49%;
  background: rgba(23, 75, 57, 0.31);
  box-shadow: inset 0 0 64px rgba(3, 22, 17, 0.38);
  transform: rotate(-14deg);
  animation: shapeFloat 10s ease-in-out -3s infinite alternate-reverse;
}
.character-ground-shadow {
  position: absolute;
  z-index: 2;
  width: min(74%, 465px);
  height: 78px;
  left: 49%;
  bottom: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.66);
  filter: blur(19px);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-leopard {
  position: absolute;
  z-index: 3;
  height: min(72vw, 790px);
  max-height: 82vh;
  max-width: 118%;
  left: 48%;
  bottom: -48px;
  transform: translateX(-50%);
  object-fit: contain;
  filter: drop-shadow(24px 28px 18px rgba(0, 0, 0, 0.45));
  animation: breathe 5s ease-in-out infinite;
  transition: opacity 0.34s ease, filter 0.34s ease;
  pointer-events: none;
}
.hero-leopard-sad { opacity: 1; }
.hero-leopard-happy { opacity: 0; }
body.buy-mood .hero-leopard-sad { opacity: 0; }
body.buy-mood .hero-leopard-happy {
  opacity: 1;
  filter: drop-shadow(24px 28px 18px rgba(0, 0, 0, 0.42)) saturate(1.08) brightness(1.05);
}
body.buy-mood .character-shape-gold {
  opacity: 0.92;
  filter: brightness(1.24) saturate(1.12) drop-shadow(0 0 24px rgba(244, 189, 76, 0.15));
  animation-duration: 3.4s;
}
body.buy-mood .character-shape-leaf { opacity: 0.72; filter: brightness(1.16); }
.spot-swarm {
  position: absolute;
  z-index: 2;
  width: 590px;
  height: 590px;
  right: -12%;
  top: 15%;
  object-fit: contain;
  opacity: 0.16;
  filter: saturate(0.75) brightness(1.25);
  transform: rotate(-13deg) scale(0.92);
  animation: spotOrbit 17s ease-in-out infinite alternate;
  transition: opacity 0.45s ease, filter 0.45s ease;
  pointer-events: none;
}
body.buy-mood .spot-swarm {
  opacity: 0.74;
  filter: saturate(1.15) brightness(1.2) drop-shadow(0 0 18px rgba(216, 255, 88, 0.3));
  animation-duration: 3.8s;
}
.hero-foreground {
  position: absolute;
  z-index: 4;
  width: min(136%, 850px);
  max-width: none;
  height: auto;
  left: 49%;
  bottom: -225px;
  object-fit: contain;
  filter: brightness(0.78) saturate(0.88) drop-shadow(0 -12px 24px rgba(0, 0, 0, 0.28));
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  animation: foregroundSway 7s ease-in-out infinite alternate;
  transition: filter 0.45s ease;
  pointer-events: none;
}
body.buy-mood .hero-foreground { filter: brightness(0.9) saturate(1.02) drop-shadow(0 -12px 24px rgba(0, 0, 0, 0.24)); }
.giant-ticker {
  position: absolute;
  z-index: 1;
  top: 145px;
  right: -105px;
  margin: 0;
  color: rgba(255, 255, 255, 0.035);
  font: 400 128px/0.76 "Anton", sans-serif;
  letter-spacing: -3px;
  text-align: right;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.14);
}
.species-tag {
  position: absolute;
  z-index: 5;
  top: 7%;
  right: -1%;
  width: 164px;
  padding: 13px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  transform: rotate(3deg);
  font-family: "Space Mono", monospace;
}
.species-tag span, .species-tag b, .species-tag small { display: block; }
.species-tag span { font-size: 8px; letter-spacing: 1px; }
.species-tag b { margin: 7px 0 5px; font-size: 10px; }
.species-tag small { color: #506a5e; font-size: 8px; }
.tear-quote {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 4%;
  padding: 13px 17px;
  background: var(--acid);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 6px 6px 0 var(--forest);
  transform: rotate(-4deg);
  display: grid;
  font-family: "Space Mono", monospace;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.mood-copy { grid-area: 1 / 1; transition: opacity 0.25s ease, transform 0.25s ease; }
.mood-copy small, .mood-copy b { display: block; }
.mood-copy small { font-size: 8px; }
.tear-quote b { margin-top: 4px; font-size: 15px; }
.mood-sad { opacity: 1; transform: translateY(0); }
.mood-happy { opacity: 0; transform: translateY(6px); }
body.buy-mood .tear-quote { background: var(--gold); transform: rotate(3deg) scale(1.06); box-shadow: 8px 8px 0 var(--acid); }
body.buy-mood .mood-sad { opacity: 0; transform: translateY(-6px); }
body.buy-mood .mood-happy { opacity: 1; transform: translateY(0); }
.floating-coin { position: absolute; z-index: 4; object-fit: contain; filter: drop-shadow(0 9px 8px rgba(0, 0, 0, 0.35)); }
.coin-one { width: 80px; right: 4%; top: 38%; animation: drift 4.4s ease-in-out infinite; }
.coin-two { width: 45px; left: 2%; top: 28%; animation: drift 5.3s ease-in-out -1.5s infinite; }
body.buy-mood .coin-one { animation: coinCelebrate 0.85s ease-in-out infinite alternate; }
body.buy-mood .coin-two { animation: coinCelebrate 0.72s ease-in-out -0.2s infinite alternate-reverse; }
body.buy-mood .action-buy,
body.buy-mood .header-buy,
body.buy-mood .notes-buy { box-shadow: 0 0 0 4px rgba(216, 255, 88, 0.22), 7px 7px 0 var(--gold); }
.scroll-cue {
  position: absolute;
  z-index: 6;
  right: 43px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font: 700 8px "Space Mono", monospace;
  letter-spacing: 1.1px;
  writing-mode: vertical-rl;
}
.scroll-cue b { color: var(--acid); font-size: 21px; }

.ticker-tape { position: relative; z-index: 7; overflow: hidden; background: var(--acid); color: var(--ink); border-block: 1px solid var(--ink); transform: rotate(-0.65deg) scale(1.02); }
.ticker-tape div { width: max-content; display: flex; gap: 25px; align-items: center; padding: 14px 0; animation: marquee 22s linear infinite; }
.ticker-tape span { font: 400 27px "Anton", sans-serif; letter-spacing: 0.4px; }
.ticker-tape b { color: #e08a32; font-size: 13px; }

.roadmap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px clamp(20px, 7.3vw, 118px) 105px;
  background: var(--forest);
}
.roadmap-backdrop { position: absolute; z-index: -2; inset: 0; background: url("assets/jungle-night-v2-web.jpg") center/cover; opacity: 0.13; }
.roadmap::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(7, 29, 23, 0.84); }
.roadmap-spots {
  position: absolute;
  z-index: -1;
  width: min(52vw, 720px);
  height: auto;
  left: -10%;
  bottom: 4%;
  opacity: 0.075;
  filter: grayscale(1) brightness(1.7);
  animation: roadmapSpots 20s ease-in-out infinite alternate;
  pointer-events: none;
}
.section-kicker { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid var(--line-light); font: 700 9px "Space Mono", monospace; letter-spacing: 1.1px; }
.section-kicker span { color: var(--gold-light); }
.section-kicker b { color: var(--mist); }
.roadmap-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: end; padding: 65px 0; }
.roadmap h2, .chart h2 { font: 400 clamp(63px, 8vw, 126px)/0.86 "Anton", sans-serif; text-transform: uppercase; letter-spacing: -2px; }
.roadmap h2 em, .chart h2 em { color: var(--gold); font-style: normal; }
.roadmap-story { max-width: 440px; padding-bottom: 7px; }
.roadmap-story p { margin: 0 0 26px; color: rgba(255, 253, 244, 0.72); font-size: 15px; line-height: 1.75; }
.roadmap-story span { color: var(--acid); font: 700 9px "Space Mono", monospace; text-transform: uppercase; letter-spacing: 1px; }
.trail { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trail-card {
  position: relative;
  min-height: 430px;
  padding: 22px 24px 26px;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.trail-card:nth-child(2) { transform: translateY(28px); }
.trail-card:hover { transform: translateY(-7px) rotate(-0.6deg); box-shadow: 12px 14px 0 rgba(0, 0, 0, 0.32); }
.trail-card:nth-child(2):hover { transform: translateY(18px) rotate(0.6deg); }
.card-gold { background: var(--gold); }
.card-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 15px; border-bottom: 1px solid var(--line-dark); font: 700 9px "Space Mono", monospace; letter-spacing: 0.8px; }
.card-top b { padding: 5px 8px; background: var(--forest); color: var(--acid); }
.chapter-number { display: block; margin: 19px 0 -16px; color: rgba(7, 29, 23, 0.09); font: 400 127px/1 "Anton", sans-serif; letter-spacing: -5px; }
.trail-card h3 { position: relative; font: 400 31px/1 "Anton", sans-serif; text-transform: uppercase; letter-spacing: 0.2px; }
.trail-card p { min-height: 71px; margin: 16px 0 20px; color: #3d4f47; font-size: 12px; line-height: 1.65; }
.trail-card ul { list-style: none; margin: 0; padding: 16px 0 0; border-top: 1px solid var(--line-dark); }
.trail-card li { display: flex; align-items: center; gap: 9px; margin-top: 8px; text-transform: uppercase; font: 700 9px "Space Mono", monospace; letter-spacing: 0.3px; }
.trail-card li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--leaf); }
.roadmap-footer { margin-top: 95px; padding-top: 22px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line-light); }
.roadmap-footer p { margin: 0; font: 400 24px/1.1 "Anton", sans-serif; text-transform: uppercase; }
.roadmap-footer img { width: 104px; height: 104px; object-fit: contain; }
.roadmap-footer span { justify-self: end; text-align: right; color: var(--mist); font: 400 8px/1.7 "Space Mono", monospace; letter-spacing: 0.7px; }

.chart {
  position: relative;
  padding: 120px clamp(20px, 7.3vw, 118px) 125px;
  background-color: var(--paper);
  color: var(--ink);
  overflow: hidden;
}
.chart::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -115px;
  top: 60px;
  background: url("assets/leopard-spots-web.png") center/contain no-repeat;
  opacity: 0.08;
  transform: rotate(12deg);
  pointer-events: none;
}
.dark-kicker { border-color: var(--line-dark); }
.dark-kicker span { color: #766128; }
.dark-kicker b { color: #476256; }
.chart-heading { display: flex; justify-content: space-between; align-items: end; gap: 50px; padding: 62px 0 52px; }
.chart h2 em { color: var(--leaf); }
.chart-copy { max-width: 315px; padding-bottom: 8px; }
.chart-copy p { margin: 0 0 24px; color: #506159; font-size: 14px; }
.chart-copy a { display: flex; justify-content: space-between; gap: 30px; padding-bottom: 9px; color: var(--ink); border-bottom: 1px solid var(--ink); text-decoration: none; text-transform: uppercase; font: 700 9px "Space Mono", monospace; }
.chart-copy a:hover span { transform: translate(3px, -3px); }
.chart-copy a span { transition: transform 0.2s; }
.chart-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); align-items: stretch; }
.field-notes { padding: 19px; background: var(--gold); border: 1px solid var(--ink); border-right: 0; }
.notes-label { margin: 0; padding-bottom: 12px; border-bottom: 1px solid rgba(6, 22, 18, 0.25); font: 700 8px "Space Mono", monospace; letter-spacing: 1px; }
.field-notes > img { width: 147px; height: 147px; margin: 17px auto 10px; object-fit: contain; }
.field-notes dl { margin: 0; border-top: 1px solid rgba(6, 22, 18, 0.25); }
.field-notes dl div { display: flex; justify-content: space-between; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(6, 22, 18, 0.25); font: 700 8px "Space Mono", monospace; text-transform: uppercase; }
.field-notes dt { color: #655422; }
.field-notes dd { margin: 0; text-align: right; }
.notes-buy { margin-top: 17px; min-height: 45px; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; background: var(--forest); color: var(--acid); text-decoration: none; font: 700 8px "Space Mono", monospace; }
.chart-shell { min-width: 0; height: 620px; position: relative; display: grid; grid-template-rows: 43px minmax(0, 1fr); background: #07110e; border: 1px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); overflow: hidden; }
.terminal-bar { height: 43px; padding: 0 15px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; background: #0d2f26; color: var(--mist); border-bottom: 1px solid #315d4d; font: 700 8px "Space Mono", monospace; letter-spacing: 0.7px; }
.terminal-bar span:nth-child(2) { color: var(--acid); }
.terminal-bar b { justify-self: end; color: var(--gold); letter-spacing: 3px; }
.terminal-bar i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 9px var(--acid); }
.chart-shell iframe { position: relative; z-index: 2; grid-row: 2; width: 100%; height: 100%; min-height: 0; border: 0; background: #07110e; }
.chart-fallback { position: relative; z-index: 1; grid-row: 2; grid-column: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center; color: var(--white); }
.chart-fallback img { width: 125px; height: 125px; object-fit: contain; }
.chart-fallback h3 { margin-top: 18px; font: 400 27px "Anton", sans-serif; text-transform: uppercase; letter-spacing: 0.4px; }
.chart-fallback p { max-width: 420px; margin: 9px 0 0; color: var(--mist); font: 400 10px/1.7 "Space Mono", monospace; }
.chart-fallback code { padding: 2px 5px; background: #174b39; color: var(--acid); }

footer { background: var(--forest); color: var(--white); }
.footer-main { min-height: 210px; padding: 35px clamp(20px, 7.3vw, 118px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid var(--line-light); }
.footer-main > p { margin: 0; color: var(--gold); font: 400 clamp(39px, 5.7vw, 88px) "Anton", sans-serif; text-align: center; }
.footer-x { justify-self: end; color: var(--white); text-decoration-color: var(--acid); text-underline-offset: 7px; font: 700 9px "Space Mono", monospace; }
.footer-legal { min-height: 65px; padding: 0 clamp(20px, 7.3vw, 118px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: var(--mist); font: 400 8px "Space Mono", monospace; letter-spacing: 0.6px; }
.footer-legal span:nth-child(2) { text-align: center; }
.footer-legal b { justify-self: end; color: var(--acid); font-size: 10px; }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 26px; padding: 13px 17px; background: var(--acid); color: var(--ink); border: 1px solid var(--ink); box-shadow: 5px 5px 0 var(--gold); transform: translate(-50%, 130px); opacity: 0; pointer-events: none; text-transform: uppercase; font: 700 9px "Space Mono", monospace; transition: transform 0.3s, opacity 0.3s; }
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes breathe { 0%, 100% { transform: translateX(-50%) translateY(0) rotate(-0.4deg); } 50% { transform: translateX(-50%) translateY(-8px) rotate(0.4deg); } }
@keyframes drift { 0%, 100% { transform: translateY(0) rotate(-7deg); } 50% { transform: translateY(-15px) rotate(6deg); } }
@keyframes coinCelebrate { from { transform: translateY(7px) rotate(-12deg) scale(0.94); } to { transform: translateY(-18px) rotate(12deg) scale(1.12); } }
@keyframes spotOrbit { from { transform: rotate(-13deg) scale(0.92) translate3d(0, 0, 0); } to { transform: rotate(3deg) scale(1.04) translate3d(-18px, -10px, 0); } }
@keyframes shapeFloat { from { translate: 0 0; scale: 0.98; } to { translate: -9px -7px; scale: 1.015; } }
@keyframes foregroundSway { from { transform: translateX(-50%) rotate(-0.35deg); } to { transform: translateX(-50%) rotate(0.35deg); } }
@keyframes roadmapSpots { from { transform: translate3d(0, 0, 0) rotate(-6deg); } to { transform: translate3d(42px, -20px, 0) rotate(4deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .hero { grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr); padding-left: 45px; padding-right: 45px; }
  .hero-leopard { left: 54%; max-width: 132%; }
  .character-shape-gold { right: -10%; }
  .hero-foreground { left: 54%; width: 148%; }
  .trail-card { padding-left: 19px; padding-right: 19px; }
  .field-notes { display: none; }
  .chart-layout { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header { height: 72px; padding: 0 20px; }
  .header-buy { display: none; }
  .menu-toggle { appearance: none; width: 43px; height: 43px; margin-left: auto; display: grid; place-content: center; gap: 7px; background: var(--acid); border: 1px solid var(--ink); cursor: pointer; }
  .menu-toggle span { display: block; width: 21px; height: 2px; background: var(--ink); transition: transform 0.2s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .nav-links { position: fixed; inset: 72px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px; background: var(--forest); border-bottom: 1px solid var(--gold); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 18px 4px; border-bottom: 1px solid var(--line-light); font-size: 12px; }
  .nav-links a::after { display: none; }
  .hero { min-height: 1220px; display: block; padding: 115px 22px 60px; }
  .hero-copy { max-width: none; }
  h1 { font-size: clamp(63px, 18.2vw, 104px); }
  .hero-intro { max-width: 580px; }
  .token-stamp { max-width: none; }
  .hero-actions { max-width: none; }
  .hero-visual { min-height: 570px; margin-top: 22px; }
  .hero-leopard { height: 610px; max-height: none; max-width: 100%; left: 50%; bottom: -44px; }
  .character-shape-gold { width: 440px; height: 470px; right: 4%; top: 14%; }
  .character-shape-leaf { width: 330px; height: 390px; left: 14%; top: 27%; }
  .character-ground-shadow { width: 420px; bottom: 4px; }
  .hero-foreground { width: 760px; left: 50%; bottom: -222px; }
  .spot-swarm { width: 500px; height: 500px; right: -18%; top: 14%; }
  .species-tag { top: 8%; right: 1%; }
  .tear-quote { left: 4%; bottom: 7%; }
  .giant-ticker { right: 0; top: 160px; font-size: 100px; }
  .coin-one { right: 4%; top: 43%; }
  .coin-two { left: 3%; top: 30%; }
  .scroll-cue { display: none; }
  .roadmap, .chart { padding: 90px 22px; }
  .roadmap-heading { display: block; padding: 51px 0 37px; }
  .roadmap-story { margin-top: 31px; }
  .trail { grid-template-columns: 1fr; }
  .trail-card, .trail-card:nth-child(2) { min-height: 380px; transform: none; }
  .trail-card:nth-child(2):hover { transform: translateY(-7px) rotate(0.6deg); }
  .roadmap-footer { margin-top: 55px; }
  .chart-heading { display: block; }
  .chart-copy { margin-top: 30px; }
  .chart-shell { height: 535px; }
  .footer-main { grid-template-columns: 1fr auto; min-height: 170px; padding-inline: 22px; }
  .footer-main > p { grid-column: 1 / -1; grid-row: 1; }
  .footer-brand { grid-column: 1; grid-row: 2; }
  .footer-x { grid-column: 2; grid-row: 2; }
  .footer-legal { padding: 18px 22px; gap: 10px; }
}

@media (max-width: 540px) {
  .brand { min-width: 0; }
  .brand-copy b { font-size: 8px; }
  .brand-copy small { font-size: 8px; }
  .brand-mark { width: 41px; height: 41px; }
  .hero { min-height: 1260px; display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy { display: contents; }
  .live-note { order: 1; align-self: flex-start; max-width: 100%; width: auto; gap: 7px; font-size: 8px; position: relative; z-index: 3; }
  .live-note b { padding-left: 7px; }
  .hero h1 { order: 2; position: relative; z-index: 3; font-size: clamp(58px, 18vw, 88px); line-height: 0.88; letter-spacing: -1px; }
  .hero-intro { order: 3; position: relative; z-index: 3; max-width: 100%; font-size: 14px; }
  .token-stamp { order: 4; position: relative; z-index: 3; width: 100%; }
  .hero-visual { order: 5; width: calc(100% + 44px); }
  .hero-actions { order: 6; position: relative; z-index: 3; width: 100%; grid-template-columns: 1fr; }
  .action-card { min-height: 66px; }
  .hero-visual { min-height: 520px; margin-inline: -22px; }
  .hero-leopard { height: 560px; bottom: -30px; }
  .character-shape-gold { width: 360px; height: 410px; right: -10px; top: 15%; }
  .character-shape-leaf { width: 270px; height: 340px; left: 3%; top: 29%; }
  .character-ground-shadow { width: 330px; height: 62px; bottom: 10px; }
  .hero-foreground { width: 660px; bottom: -196px; }
  .spot-swarm { width: 430px; height: 430px; right: -26%; top: 18%; opacity: 0.12; }
  .species-tag { right: 20px; width: 145px; }
  .tear-quote { left: 21px; }
  .giant-ticker { right: 12px; top: 175px; font-size: 79px; }
  .coin-one { right: 18px; width: 59px; }
  .coin-two { left: 22px; width: 35px; }
  .ticker-tape { transform: none; }
  .ticker-tape span { font-size: 21px; }
  .roadmap h2, .chart h2 { font-size: clamp(58px, 17vw, 84px); }
  .section-kicker { font-size: 8px; }
  .roadmap-footer { grid-template-columns: 1fr auto; }
  .roadmap-footer img { width: 81px; height: 81px; }
  .roadmap-footer span { display: none; }
  .chart-shell { height: 455px; box-shadow: 5px 5px 0 var(--ink); }
  .terminal-bar { grid-template-columns: 1fr auto; font-size: 7px; }
  .terminal-bar span:nth-child(2) { display: none; }
  .footer-main > p { font-size: 38px; }
  .footer-x { font-size: 8px; }
  .footer-legal { grid-template-columns: 1fr auto; }
  .footer-legal span:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

[hidden] { display: none !important; }
