@font-face {
  font-family: "Super Joyful";
  src: url("assets/fonts/super-joyful.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #100812;
  --ink: #fffdf0;
  --muted: #d8d0bd;
  --line: rgba(255, 253, 240, 0.22);
  --green: #38ff75;
  --lime: #edff36;
  --cyan: #58e9ff;
  --pink: #ff4ca3;
  --orange: #ff9d2e;
  --panel: rgba(255, 255, 255, 0.1);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --display-font: "Super Joyful", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --body-font: "Super Joyful", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) 0 0 / 44px 44px,
    linear-gradient(225deg, rgba(255, 255, 255, 0.04) 25%, transparent 25%) 0 0 / 44px 44px,
    radial-gradient(circle at 17% 12%, rgba(56, 255, 117, 0.28), transparent 28rem),
    radial-gradient(circle at 78% 14%, rgba(255, 76, 163, 0.25), transparent 30rem),
    radial-gradient(circle at 80% 78%, rgba(88, 233, 255, 0.18), transparent 25rem),
    linear-gradient(135deg, #140716 0%, #082114 52%, #21100a 100%);
  color: var(--ink);
  font-family: var(--body-font);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: rgba(16, 8, 18, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.community-links,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 2px 2px 0 #000;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: #f4fff7;
  box-shadow: 0 0 0 5px rgba(110, 243, 127, 0.12);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% 21%;
  transform: scale(1.85);
}

nav {
  gap: clamp(0.8rem, 3vw, 1.5rem);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

nav a:hover {
  color: var(--ink);
}

.nav-button,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-button::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 28%,
    rgba(255, 255, 255, 0.62) 34%,
    transparent 42%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 360ms ease;
  pointer-events: none;
}

.nav-button::after,
.button::after {
  content: "";
  position: absolute;
  inset: 0.32rem;
  z-index: 0;
  border: 1px dashed rgba(16, 8, 18, 0.5);
  border-radius: inherit;
  pointer-events: none;
}

.nav-button {
  padding: 0.78rem 1.05rem;
  border: 3px solid #000;
  background: var(--lime);
  color: var(--bg);
  box-shadow: 4px 4px 0 #000, 0 0 0 4px rgba(237, 255, 54, 0.2);
}

.button {
  min-height: 3.25rem;
  min-width: 10.5rem;
  padding: 0 1.35rem;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
}

.button:hover,
.nav-button:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  filter: saturate(1.14);
  box-shadow: 8px 8px 0 #000, 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.button:hover::before,
.nav-button:hover::before {
  transform: translateX(120%);
}

.button:active,
.nav-button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 #000;
}

.button span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.button span::after {
  content: ">";
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.85rem;
  line-height: 1;
}

.primary {
  background: var(--lime);
  color: #100812;
}

.secondary {
  background: var(--pink);
  border-color: #fff;
  color: var(--ink);
}

.warning {
  background: var(--cyan);
  color: #100812;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.86fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 4.6rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem) 4rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.78;
  letter-spacing: 0;
  font-family: var(--display-font);
  text-shadow:
    5px 5px 0 #000,
    10px 10px 0 var(--pink),
    15px 15px 0 var(--cyan);
}

h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  font-family: var(--display-font);
  text-shadow: 4px 4px 0 #000;
}

h3 {
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  max-width: 42rem;
  color: #fff4c8;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
  font-weight: 800;
}

.meme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.meme-tags span {
  padding: 0.5rem 0.75rem;
  border: 2px solid #000;
  border-radius: 7px;
  background: var(--cyan);
  color: #100812;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 #000;
  transform: rotate(-2deg);
}

.meme-tags span:nth-child(2) {
  background: var(--pink);
  color: #fff;
  transform: rotate(2deg);
}

.meme-tags span:nth-child(3) {
  background: var(--lime);
  transform: rotate(-1deg);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.contract-label {
  max-width: 39rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.contract-label span {
  color: var(--ink);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: min(31rem, 78vw);
  place-items: center;
  overflow: hidden;
  border: 3px solid #000;
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(255, 253, 240, 0.18) 0 2px, transparent 2px 14px),
    linear-gradient(135deg, rgba(56, 255, 117, 0.28), rgba(255, 76, 163, 0.22)),
    repeating-linear-gradient(-45deg, rgba(237, 255, 54, 0.15) 0 12px, transparent 12px 24px);
  background-size: 28px 28px, auto, auto;
  box-shadow: 10px 10px 0 #000, var(--shadow);
}

.logo-art {
  position: relative;
  width: clamp(14rem, 31vw, 23rem);
  aspect-ratio: 1;
  border: 0.7rem solid #fffdf0;
  border-radius: 50%;
  object-fit: cover;
  object-position: 53% 19%;
  background: #fff;
  box-shadow:
    0 0 0 0.75rem var(--lime),
    8px 8px 0 #000,
    0 28px 80px rgba(0, 0, 0, 0.38);
  animation: float 5s ease-in-out infinite;
}

.speech-bubble {
  position: absolute;
  z-index: 2;
  max-width: 12rem;
  padding: 0.7rem 0.9rem;
  border: 3px solid #000;
  border-radius: 8px;
  background: #fffdf0;
  color: #100812;
  font-family: var(--display-font);
  font-size: clamp(1rem, 2.2vw, 1.6rem);
  box-shadow: 5px 5px 0 #000;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  background: #fffdf0;
  transform: rotate(45deg);
}

.top-bubble {
  top: 1.5rem;
  left: 1.5rem;
  transform: rotate(-5deg);
}

.top-bubble::after {
  right: 1.5rem;
  bottom: -0.65rem;
}

.side-bubble {
  right: 1.25rem;
  bottom: 6.8rem;
  background: var(--lime);
  transform: rotate(5deg);
}

.side-bubble::after {
  left: 1.4rem;
  bottom: -0.65rem;
  background: var(--lime);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.orbit-one {
  width: 82%;
  aspect-ratio: 1;
  transform: rotate(-22deg) scaleY(0.45);
}

.orbit-two {
  width: 60%;
  aspect-ratio: 1;
  border-color: rgba(255, 111, 174, 0.45);
  transform: rotate(32deg) scaleY(0.42);
}

.ticker-strip {
  position: absolute;
  right: -4rem;
  bottom: 2rem;
  display: flex;
  gap: 1.2rem;
  padding: 0.8rem 2rem;
  border: 3px solid #000;
  background: var(--orange);
  color: #100812;
  font-size: 0.85rem;
  font-weight: 900;
  transform: rotate(-6deg);
  box-shadow: 6px 6px 0 #000;
}

.meme-marquee {
  overflow: hidden;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  background: var(--lime);
  color: #100812;
}

.meme-marquee div {
  display: flex;
  width: max-content;
  gap: 2rem;
  padding: 0.75rem 1rem;
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  animation: scrollTape 18s linear infinite;
}

.meme-marquee span {
  white-space: nowrap;
}

.stats,
.live-price,
.meme-gallery,
.section-grid,
.roadmap,
.community {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.live-price {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(19rem, 1.25fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  border-bottom: 3px solid #000;
  background:
    linear-gradient(90deg, rgba(255, 253, 240, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(255, 253, 240, 0.07) 1px, transparent 1px),
    rgba(16, 8, 18, 0.54);
  background-size: 34px 34px;
}

.live-copy p:not(.eyebrow) {
  max-width: 32rem;
  margin: 1.1rem 0 0;
  color: #fff4c8;
  font-weight: 800;
  line-height: 1.55;
}

.price-board {
  position: relative;
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 1.8rem);
  border: 3px solid #000;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 18%, rgba(237, 255, 54, 0.36), transparent 11rem),
    linear-gradient(135deg, var(--cyan), var(--green));
  color: #100812;
  box-shadow: 9px 9px 0 #000, var(--shadow);
}

.price-board::before {
  content: "LIVE";
  position: absolute;
  right: -1.6rem;
  top: 1.1rem;
  padding: 0.4rem 2.4rem;
  border: 3px solid #000;
  background: var(--pink);
  color: #fff;
  font-family: var(--display-font);
  transform: rotate(12deg);
  box-shadow: 4px 4px 0 #000;
}

.price-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 5.4rem;
  font-weight: 900;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.65rem;
  border: 2px solid #000;
  border-radius: 999px;
  background: #fffdf0;
  box-shadow: 3px 3px 0 #000;
}

.live-pill span {
  width: 0.7rem;
  height: 0.7rem;
  border: 2px solid #000;
  border-radius: 50%;
  background: var(--green);
  animation: pulseDot 1.2s ease-in-out infinite;
}

.main-price {
  margin-top: 1.2rem;
  font-family: var(--display-font);
  font-size: clamp(3rem, 9vw, 6.6rem);
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-shadow: 4px 4px 0 #fffdf0, 8px 8px 0 rgba(0, 0, 0, 0.16);
}

.price-change {
  display: inline-flex;
  margin-top: 0.9rem;
  padding: 0.5rem 0.75rem;
  border: 2px solid #000;
  border-radius: 7px;
  background: #fffdf0;
  font-weight: 900;
  box-shadow: 4px 4px 0 #000;
}

.price-change.is-up {
  background: var(--lime);
}

.price-change.is-down {
  background: var(--pink);
  color: #fff;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.price-grid article {
  min-height: 5.8rem;
  padding: 0.8rem;
  border: 2px solid #000;
  border-radius: 8px;
  background: rgba(255, 253, 240, 0.72);
  box-shadow: 4px 4px 0 #000;
}

.price-grid span,
.price-updated {
  color: rgba(16, 8, 18, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1rem, 2vw, 1.35rem);
  overflow-wrap: anywhere;
}

.price-updated {
  margin: 1rem 0 0;
}

.meme-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(19rem, 1.28fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  overflow: hidden;
  border-bottom: 3px solid #000;
  background:
    repeating-linear-gradient(90deg, rgba(255, 76, 163, 0.18) 0 1rem, transparent 1rem 2rem),
    radial-gradient(circle at 18% 18%, rgba(88, 233, 255, 0.24), transparent 22rem),
    rgba(16, 8, 18, 0.5);
}

.meme-gallery-copy p:not(.eyebrow) {
  max-width: 31rem;
  margin: 1.1rem 0 0;
  color: #fff4c8;
  font-weight: 800;
  line-height: 1.55;
}

.meme-showcase {
  position: relative;
  transform: rotate(1.2deg);
}

.meme-showcase::before {
  content: "fresh memes";
  position: absolute;
  left: -1rem;
  top: -1.1rem;
  z-index: 3;
  padding: 0.45rem 0.75rem;
  border: 3px solid #000;
  border-radius: 7px;
  background: var(--lime);
  color: #100812;
  font-family: var(--display-font);
  box-shadow: 4px 4px 0 #000;
  transform: rotate(-8deg);
  text-transform: uppercase;
}

.meme-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 4px solid #000;
  border-radius: 8px;
  background: #000;
  box-shadow: 10px 10px 0 #000, var(--shadow);
  animation: memeWobble 4.5s ease-in-out infinite;
}

.meme-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 240ms ease, transform 450ms ease;
}

.meme-frame img.is-switching {
  opacity: 0.25;
  transform: scale(1.05) rotate(-1deg);
}

.meme-stamp {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.45rem 0.65rem;
  border: 3px solid #000;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  box-shadow: 4px 4px 0 #000;
}

.meme-caption {
  display: inline-flex;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.65rem 0.8rem;
  border: 3px solid #000;
  border-radius: 8px;
  background: #fffdf0;
  color: #100812;
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 3vw, 2.3rem);
  line-height: 1;
  box-shadow: 5px 5px 0 #000;
  transform: rotate(-1.5deg);
}

.meme-reel {
  grid-column: 1 / -1;
  overflow: hidden;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0.7rem 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  background: var(--orange);
  box-shadow: 0 6px 0 #000;
}

.meme-reel-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  animation: memeReel 38s linear infinite;
}

.meme-reel img {
  width: clamp(12rem, 24vw, 19rem);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 3px solid #000;
  border-radius: 8px;
  background: #000;
  box-shadow: 4px 4px 0 #000;
  transform: rotate(-1deg);
}

.meme-reel img:nth-child(even) {
  transform: rotate(1deg);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.stats article {
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: rgba(16, 8, 18, 0.82);
}

.stat-value {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--lime);
  font-family: var(--display-font);
  text-shadow: 3px 3px 0 #000;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 900;
}

.stat-label,
.tokenomics span,
.timeline p,
.community p,
footer {
  color: var(--muted);
}

.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.tokenomics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tokenomics article,
.timeline article {
  border: 3px solid #000;
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 7px 7px 0 #000, 0 18px 48px rgba(0, 0, 0, 0.16);
}

.tokenomics article {
  display: grid;
  min-height: 12rem;
  align-content: end;
  gap: 0.55rem;
  padding: 1.35rem;
  transform: rotate(-1deg);
}

.tokenomics article:nth-child(even) {
  transform: rotate(1deg);
}

.tokenomics strong {
  color: var(--cyan);
  font-family: var(--display-font);
  text-shadow: 4px 4px 0 #000;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.88;
}

.roadmap {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline article {
  min-height: 14rem;
  padding: 1.2rem;
}

.timeline span {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 2rem;
  place-items: center;
  border-radius: 50%;
  border: 2px solid #000;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
  box-shadow: 3px 3px 0 #000;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
}

.community h2 {
  max-width: 16ch;
}

.community p {
  max-width: 45rem;
  margin: 1.2rem 0 0;
  line-height: 1.65;
}

.community-links {
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  min-width: 14rem;
}

.community-links button {
  position: relative;
  overflow: hidden;
  padding: 1rem 1.2rem;
  border: 3px solid #000;
  border-radius: 8px;
  background: var(--cyan);
  color: #100812;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 #000;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.community-links button::after {
  content: "soon";
  position: absolute;
  right: 0.7rem;
  top: 50%;
  padding: 0.25rem 0.45rem;
  border: 2px solid #000;
  border-radius: 999px;
  background: #fffdf0;
  color: #100812;
  font-size: 0.68rem;
  transform: translateY(-50%) rotate(4deg);
}

.community-links button:hover {
  transform: translate(-2px, -2px) rotate(-1deg);
  filter: saturate(1.12);
  box-shadow: 8px 8px 0 #000;
}

.community-links button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 #000;
}

.community-links button:nth-child(2) {
  background: var(--lime);
}

.community-links button:nth-child(3) {
  background: var(--pink);
  color: #fff;
}

footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4fff7;
  color: #07120d;
  font-weight: 900;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-1rem) rotate(2deg);
  }
}

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

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.68);
    opacity: 0.55;
  }
}

@keyframes memeWobble {
  0%,
  100% {
    transform: rotate(-0.7deg) scale(1);
  }
  50% {
    transform: rotate(0.7deg) scale(1.01);
  }
}

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

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .live-price,
  .meme-gallery,
  .section-grid,
  .community {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .speech-bubble {
    font-size: 1rem;
  }

  .side-bubble {
    bottom: 4.7rem;
  }

  .meme-showcase {
    transform: none;
  }

  .meme-showcase::before {
    left: 0.8rem;
    top: 0.8rem;
  }

  .stats,
  .price-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .tokenomics {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading {
    display: block;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .nav-button {
    padding: 0.68rem 0.85rem;
    font-size: 0.86rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .tokenomics {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 22rem;
  }
}
