:root {
  --ink: #111111;
  --paper: #fff7dc;
  --cream: #fff1b8;
  --white: #ffffff;
  --yellow: #ffd22e;
  --orange: #ff8a00;
  --cyan: #1fd7ff;
  --green: #58ef6b;
  --pink: #ff4abc;
  --red: #ff3c2e;
  --blue: #234cff;
  --muted: #5d584d;
  --line: #111111;
  --shadow: 8px 8px 0 #111111;
  --soft-shadow: 0 22px 70px rgba(17, 17, 17, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 6%, rgba(31, 215, 255, 0.46), transparent 18rem),
    radial-gradient(circle at 88% 14%, rgba(255, 74, 188, 0.34), transparent 18rem),
    linear-gradient(180deg, #fff9e8 0%, #ffe992 44%, #ffe0f4 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  opacity: 0.18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000 0 35%, transparent 90%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(17,17,17,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
}

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

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

button {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 3;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.44), rgba(31, 215, 255, 0.16) 46%, transparent 70%);
  mix-blend-mode: overlay;
  transform: translate(-50%, -50%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(35deg, #000 25%, transparent 25%),
    linear-gradient(-35deg, #000 25%, transparent 25%);
  background-size: 6px 6px;
}

.float-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.particle {
  position: absolute;
  top: -10vh;
  width: var(--s);
  height: var(--s);
  border: 1px solid rgba(17, 17, 17, 0.2);
  background: var(--c);
  animation: fall var(--d) linear infinite;
  animation-delay: var(--delay);
  opacity: 0.18;
  filter: saturate(0.8);
}

.particle.star {
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.particle.bill {
  width: calc(var(--s) * 2);
  height: var(--s);
  border-radius: 2px;
}

@keyframes fall {
  from { transform: translate3d(0, -15vh, 0) rotate(0deg); }
  to { transform: translate3d(var(--x), 115vh, 0) rotate(360deg); }
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1160px, calc(100% - 28px));
  margin: 12px auto 0;
  padding: 10px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 247, 220, 0.84);
  box-shadow: 5px 5px 0 var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: 1.06rem;
  text-transform: uppercase;
}

.brand img {
  width: 44px;
  aspect-ratio: 1;
  border: 3px solid var(--line);
  border-radius: 8px;
}

nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

nav a,
.nav-cta,
.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  border-radius: 8px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

nav a {
  padding: 8px 15px;
  background: var(--white);
  transition: transform 0.18s ease, background 0.18s ease;
}

nav a:hover {
  transform: translate(-2px, -2px);
  background: var(--cyan);
}

.nav-cta,
.btn-primary {
  padding: 8px 18px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--line);
}

.btn-secondary {
  padding: 8px 18px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--line);
}

.btn:hover,
.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--line);
}

.ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.62s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(26);
    opacity: 0;
  }
}

main,
.dream-footer {
  width: min(1160px, calc(100% - 28px));
  margin: 0 auto;
}

.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.58s ease, transform 0.58s cubic-bezier(.2,.9,.2,1);
}

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

.hero {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(52px, 7vw, 86px) 0 clamp(34px, 5vw, 62px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 44px -8vw 20px;
  z-index: -1;
  border: 3px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,210,46,0.55)),
    radial-gradient(circle at 80% 18%, rgba(31,215,255,0.48), transparent 20rem);
  box-shadow: var(--shadow);
}

.hero-art {
  position: relative;
  order: 2;
  border: 0;
  border-radius: 0;
  overflow: visible;
  min-width: 0;
}

.hero-art img {
  width: min(100%, 530px);
  margin-left: auto;
  border: 4px solid var(--line);
  border-radius: 8px;
  box-shadow: 12px 12px 0 var(--line), var(--soft-shadow);
  transform: rotate(2deg) translate3d(calc(var(--mx, 0px) * 0.25), calc(var(--my, 0px) * 0.25), 0);
  transition: transform 0.16s ease-out;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  border: 3px solid var(--line);
  border-radius: 999px;
  z-index: -1;
}

.hero-art::before {
  width: 130px;
  height: 130px;
  left: 2%;
  top: 0;
  background: var(--cyan);
}

.hero-art::after {
  width: 86px;
  height: 86px;
  right: -18px;
  bottom: -26px;
  background: var(--pink);
}

.hero-copy {
  order: 1;
  max-width: 670px;
  min-width: 0;
}

.ticker-pill,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--green);
  box-shadow: 4px 4px 0 var(--line);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.7rem, 8.7vw, 7.3rem);
  line-height: 0.88;
}

h1 span {
  display: block;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 0.95;
}

p,
small,
figcaption,
.lore-card span,
.token-tile small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.5;
}

.hero-copy p {
  max-width: 570px;
  color: #27231b;
  font-size: clamp(1.1rem, 2.1vw, 1.36rem);
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.contract-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  width: min(100%, 590px);
  margin-top: 18px;
  padding: 10px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line);
}

.contract-strip span {
  padding: 8px 11px;
  border: 3px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: var(--pink);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.copy-ca {
  min-width: 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.hero-stats {
  order: 3;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-stats div,
.lore-card,
.council-card,
.token-tile,
.social-card,
.chart-frame,
.buy-steps article {
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--line);
}

.hero-stats div {
  min-height: 118px;
  padding: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--blue);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.9;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.lore,
.council,
.gallery,
.buy,
.tokenomics,
.chart,
.community,
.disclaimer {
  padding: clamp(74px, 10vw, 126px) 0;
}

.split,
.buy-layout,
.chart-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
}

.lore-card {
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  gap: 18px;
  padding: 16px;
  transform: rotate(-1deg);
}

.lore-card img {
  border: 3px solid var(--line);
  border-radius: 8px;
}

.lore-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.council-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.council-card {
  min-height: 214px;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.council-card:nth-child(2n) {
  background: var(--cream);
}

.council-card:hover {
  transform: translate(-3px, -3px) rotate(-0.6deg);
  box-shadow: 9px 9px 0 var(--line);
}

.sigil {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 6px 10px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--cyan);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.gallery {
  margin-inline: calc(50% - 50vw);
  padding-inline: max(14px, calc((100vw - 1160px) / 2));
  background: #111;
  color: var(--white);
  border-block: 4px solid var(--line);
}

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

.gallery h2,
.gallery p {
  color: var(--white);
}

.gallery-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(240px, 0.35fr);
  gap: 26px;
  align-items: end;
  margin-bottom: 28px;
}

.meme-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.meme-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--white);
  background: #111;
  transition: transform 0.2s ease;
}

.meme-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.share-meme {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-height: 34px;
  padding: 6px 12px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--line);
}

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

figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 10px;
  border: 3px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  text-align: center;
  text-transform: uppercase;
}

.buy-steps {
  display: grid;
  gap: 10px;
}

.buy-steps article {
  display: grid;
  grid-template-columns: 46px minmax(0, 0.34fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 82px;
  padding: 14px;
}

.buy-steps span {
  color: var(--blue);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.buy-steps strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.buy-steps p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.command-art {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--line);
  transform: rotate(1deg);
}

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

.token-tile {
  min-height: 164px;
  padding: 18px;
}

.token-tile span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.token-tile strong {
  display: block;
  margin: 22px 0 6px;
  color: var(--red);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4.2vw, 3.25rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.token-tile:nth-child(2) strong,
.token-tile:nth-child(5) strong {
  color: var(--blue);
}

.token-tile:nth-child(3) strong,
.token-tile:nth-child(4) strong {
  color: var(--green);
  text-shadow: 1px 1px 0 var(--line);
}

.chart-shell {
  padding: 18px;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.chart-frame {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17,17,17,0.92), rgba(35,76,255,0.85)),
    #111;
  color: var(--white);
}

.chart-frame strong {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.chart-frame small {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.72);
}

.candle-field {
  position: absolute;
  inset: 32px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 13px;
}

.candle-field span {
  width: 34px;
  height: var(--h, 80px);
  background: var(--green);
  border: 2px solid var(--line);
  animation: candle 1.8s ease-in-out infinite alternate;
}

.candle-field span:nth-child(1) { --h: 72px; animation-delay: 0s; }
.candle-field span:nth-child(2) { --h: 112px; animation-delay: 0.2s; }
.candle-field span:nth-child(3) { --h: 150px; animation-delay: 0.4s; }
.candle-field span:nth-child(4) { --h: 198px; animation-delay: 0.6s; }
.candle-field span:nth-child(5) { --h: 246px; animation-delay: 0.8s; }
.candle-field span:nth-child(6) { --h: 294px; animation-delay: 1s; }
.candle-field span:nth-child(7) { --h: 336px; animation-delay: 1.2s; }

@keyframes candle {
  to { height: calc(var(--h) + 26px); background: var(--cyan); }
}

.community {
  text-align: center;
}

.community p {
  max-width: 690px;
  margin-inline: auto;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.social-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  text-align: left;
}

.social-card span {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 3px solid var(--line);
  border-radius: 8px;
  background: var(--cyan);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
}

.social-card strong {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.disclaimer {
  padding-top: 34px;
  text-align: center;
}

.disclaimer p {
  max-width: 850px;
  margin: 0 auto;
  padding: 18px;
  border: 3px dashed var(--line);
  border-radius: 8px;
  background: var(--white);
}

.dream-footer {
  width: 100%;
  margin-top: 30px;
  padding: 58px max(14px, calc((100vw - 1160px) / 2)) 24px;
  color: var(--white);
  background:
    linear-gradient(rgba(31, 215, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 215, 255, 0.18) 1px, transparent 1px),
    #050607;
  background-size: 54px 54px;
  border-top: 4px solid var(--line);
}

.footer-marquee {
  display: flex;
  gap: 14px;
  overflow: hidden;
  white-space: nowrap;
  color: var(--white);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6.4vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.footer-marquee span {
  animation: marqueePulse 1.4s ease-in-out infinite alternate;
}

@keyframes marqueePulse {
  to { color: var(--pink); transform: translateY(-4px); }
}

.footer-cover {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  margin-top: 18px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.footer-window {
  position: absolute;
  left: 50%;
  top: 40px;
  width: min(100%, 1080px);
  transform: translateX(-50%) rotate(-0.6deg);
  border: 4px solid var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.18);
  background: #bfc4ca;
}

.window-chrome {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: #c5c9ce;
}

.window-chrome span {
  width: 14px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
}

.window-chrome span:nth-child(2) { background: var(--yellow); }
.window-chrome span:nth-child(3) { background: var(--green); }

.window-chrome i {
  height: 10px;
  flex: 1;
  max-width: 760px;
  margin-left: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.footer-window img {
  width: 100%;
  height: clamp(230px, 32vw, 390px);
  object-fit: cover;
  object-position: center;
}

.footer-cover::after {
  display: none;
}

.footer-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 360px;
  max-width: 880px;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  padding: clamp(22px, 5vw, 52px) 0 0;
  text-align: center;
}

.footer-overlay > img {
  width: 88px;
  aspect-ratio: 1;
  margin-bottom: 22px;
  border: 3px solid var(--white);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--yellow);
}

.footer-overlay h2,
.footer-overlay p {
  color: var(--white);
}

.footer-overlay p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  max-width: 290px;
  padding: 12px 14px;
  border: 3px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--line);
  font-weight: 900;
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

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

  nav {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  nav a {
    flex: 1;
  }

  .hero,
  .split,
  .buy-layout,
  .chart-shell {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: 1;
  }

  .hero-copy {
    order: 2;
  }

  .hero-art img {
    margin-inline: auto;
    width: min(78vw, 340px);
  }

  .council-grid,
  .token-grid,
  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .dream-footer {
    width: min(100% - 16px, 1160px);
  }

  .site-header {
    top: 8px;
    gap: 8px;
  }

  .brand span {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    display: none;
  }

  nav {
    gap: 6px;
  }

  nav a {
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.8rem;
  }

  nav a[href="#chart"] {
    display: none;
  }

  nav a[href="#buy"] {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 40px;
    overflow: hidden;
  }

  .hero::before {
    inset: 18px -4px 0;
  }

  h1 {
    font-size: clamp(2.95rem, 14.2vw, 4rem);
  }

  .hero-copy p {
    max-width: calc(100vw - 34px);
  }

  h2 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-actions,
  .footer-actions {
    flex-direction: column;
  }

  .hero-stats,
  .council-grid,
  .token-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .lore-card {
    grid-template-columns: 1fr;
  }

  .buy-steps article {
    grid-template-columns: 42px 1fr;
  }

  .buy-steps p {
    grid-column: 2;
  }

  .meme-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .chart-frame {
    min-height: 330px;
  }

  .footer-cover,
  .footer-overlay {
    min-height: 620px;
  }

  .footer-cover > img {
    object-position: 58% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
