/* =========================================================
   Ponke fan site — single-page styles
   Inspired by ponke.xyz (dark, bold, orange/yellow accents)
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-soft: #131313;
  --cream: #f4ede1;
  --cream-2: #efe6d4;
  --ink: #111;
  --orange: #ff6a00;
  --orange-2: #ff8a3d;
  --yellow: #ffd23f;
  --green: #b6ff5f;
  --muted: #a0a0a0;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --max: 1280px;
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { width: 0; height: 0; display: none; }

body {
  margin: 0;
  background:
    radial-gradient(900px 600px at 85% -5%, rgba(255, 106, 0, 0.18), transparent 70%),
    radial-gradient(800px 500px at -10% 30%, rgba(255, 210, 63, 0.07), transparent 70%),
    radial-gradient(900px 700px at 110% 70%, rgba(0, 211, 110, 0.06), transparent 70%),
    var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body::-webkit-scrollbar { width: 0; height: 0; display: none; }
*::-webkit-scrollbar { width: 0; height: 0; }

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.accent { color: var(--orange); }
.light { color: var(--cream) !important; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 28px;
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 20px;
}
.nav__logo img { width: 34px; height: 34px; }

.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 500;
  font-size: 15px;
}
.nav__links a {
  position: relative;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.nav__links a:hover { opacity: 1; color: var(--orange); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__socials {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav__socials a {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  transition: background .2s, transform .2s;
}
.nav__socials a:hover { background: var(--orange); transform: translateY(-2px); }
.nav__socials img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn img { width: 18px; height: 18px; }

.btn--primary {
  background: var(--orange);
  color: #1a0a00;
  border-color: var(--orange);
  box-shadow: 0 6px 0 #b34900, 0 12px 24px rgba(255, 106, 0, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); background: var(--orange-2); }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 2px 0 #b34900; }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

.btn--pump {
  background: #00d36e;
  color: #0a2218;
  border-color: #00d36e;
  box-shadow: 0 6px 0 #008c47, 0 12px 24px rgba(0, 211, 110, 0.35);
}
.btn--pump:hover { transform: translateY(-2px); background: #1ee580; }
.btn--pump:active { transform: translateY(2px); box-shadow: 0 2px 0 #008c47; }
.btn--pump img {
  width: auto;
  height: 28px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(900px 700px at 78% 38%, rgba(255, 106, 0, 0.32), transparent 65%),
    radial-gradient(700px 600px at 92% 62%, rgba(255, 210, 63, 0.18), transparent 70%);
  z-index: 0;
}

.hero__kicker {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.1);
  padding: 8px 14px;
  border: 1px solid rgba(255, 106, 0, 0.35);
  border-radius: 999px;
  margin: 0 0 22px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}
.hero__title--accent {
  color: var(--orange);
  font-style: italic;
}

.hero__sub {
  max-width: 540px;
  color: rgba(244, 237, 225, 0.78);
  font-size: 18px;
  margin: 0 0 32px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 18px;
}
.stats__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
}
.stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--orange);
  line-height: 1;
}
.stats__label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.stats__row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.stats__row img { width: 22px; height: 22px; filter: brightness(0) invert(1); opacity: .8; }

.hero__art {
  position: relative;
  display: grid;
  place-items: center;
}
.hero__art img {
  width: 100%;
  max-width: 520px;
  border-radius: 28px;
  filter: drop-shadow(0 30px 60px rgba(255, 106, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}

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

/* ============ TICKER ============ */
.ticker {
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid #00000010;
  border-bottom: 1px solid #00000010;
  overflow: hidden;
  padding: 18px 0;
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker__row {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ticker__row img {
  height: 28px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ SECTION BASE ============ */
.section {
  padding: 110px 0;
  position: relative;
  background: transparent;
}
/* soft fade between adjacent sections so transitions feel continuous */
.section + .section::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto 0;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.0));
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }

.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.section__sub {
  color: rgba(244, 237, 225, 0.7);
  font-size: 18px;
  max-width: 640px;
  margin: 0 0 56px;
}

/* ============ GIF FACTORY ============ */
.gif-factory {
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(255, 210, 63, 0.08), transparent 70%);
}
.gif-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gif-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.gif-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}
.gif-card__media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #000;
}
.gif-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gif-card:hover .gif-card__media img { transform: scale(1.04); }

.gif-card__body { padding: 22px 24px 26px; }
.gif-card__body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 6px;
}
.gif-card__body p {
  margin: 0 0 18px;
  color: var(--muted);
}

/* ============ ECOSYSTEM ============ */
.ecosystem { background: var(--cream); color: var(--ink); }
.ecosystem .section__sub { color: rgba(0, 0, 0, 0.65); }

.eco-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.eco-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  min-height: 380px;
  transition: transform .25s, box-shadow .25s;
}
.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.eco-card__tag {
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 6px 12px;
  border-radius: 999px;
}
.eco-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  margin: 0;
  letter-spacing: -0.01em;
}
.eco-card p { color: rgba(0, 0, 0, 0.7); margin: 0; }
.eco-card .btn { align-self: flex-start; margin-top: auto; }
.eco-card .btn--ghost { color: var(--ink); border-color: rgba(0, 0, 0, 0.25); }
.eco-card .btn--ghost:hover { background: var(--ink); color: var(--cream); }

.eco-card--validator {
  background: linear-gradient(160deg, #ffe7c8 0%, #fff 70%);
}
.eco-card--shop { background: linear-gradient(160deg, #ffd9b3 0%, #fff 60%); }
.eco-card--club {
  background: linear-gradient(160deg, var(--ink), #2a1500);
  color: var(--cream);
}
.eco-card--club p { color: rgba(244, 237, 225, 0.7); }
.eco-card--club .btn--ghost { color: var(--cream); border-color: rgba(255, 255, 255, 0.3); }
.eco-card--club .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.eco-card__bg {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 70%;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.eco-card--club > * { position: relative; z-index: 1; }

.shop-strip {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.shop-strip img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  background: #f0e6d2;
}

/* ============ WORLD ============ */
.world {
  background: transparent;
  padding-bottom: 80px;
}
.world__marquee {
  margin-top: 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.world__track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: world-scroll 60s linear infinite;
}
.world__track img {
  height: 320px;
  width: auto;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--line);
  background: #1a1a1a;
}
@keyframes world-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.world__quote {
  text-align: center;
  margin-top: 64px;
}
.world__quote h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 900px;
  margin: 0 auto;
}

/* ============ TOKEN ============ */
.token {
  background:
    radial-gradient(700px 400px at 10% 30%, rgba(255, 106, 0, 0.14), transparent 70%),
    radial-gradient(700px 400px at 90% 80%, rgba(0, 211, 110, 0.10), transparent 70%);
}

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

.token__supply {
  margin: 36px 0 24px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  display: inline-block;
}
.token__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}
.token__amount {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.token__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cream);
}

.ca {
  margin: 0 0 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  max-width: 560px;
}
.ca__label {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}
.ca__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ca__row code {
  flex: 1;
  font-family: ui-monospace, "Cascadia Mono", "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--cream);
  word-break: break-all;
  letter-spacing: 0.01em;
}
.ca__copy {
  flex-shrink: 0;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.ca__copy:hover { background: var(--orange); color: #1a0a00; border-color: var(--orange); }
.ca__copy.is-copied { background: #00d36e; color: #0a2218; border-color: #00d36e; }

.token__chains h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.token__chains p {
  color: rgba(244, 237, 225, 0.7);
  margin: 0 0 26px;
}
.chain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.chain-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, transform .2s;
}
.chain-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.chain-card img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
.chain-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.06em;
}
.chain-card span { color: var(--muted); font-size: 13px; }

.chain-grid--single { grid-template-columns: 1fr 1fr; }

.chain-card--pump {
  background: linear-gradient(140deg, rgba(0, 211, 110, 0.18), rgba(0, 211, 110, 0.04));
  border-color: rgba(0, 211, 110, 0.45);
  cursor: pointer;
}
.chain-card--pump:hover {
  border-color: #00d36e;
  background: linear-gradient(140deg, rgba(0, 211, 110, 0.28), rgba(0, 211, 110, 0.08));
}
.chain-card--pump img {
  background: transparent;
  border-radius: 0;
  width: auto;
  height: 44px;
  object-fit: contain;
}

.pumpfun {
  color: #00d36e;
  font-style: italic;
}

/* ============ ARMY ============ */
.army {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  isolation: isolate;
}
.army__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.1);
}
.army__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, var(--bg) 0%, rgba(10, 10, 10, 0.65) 18%, rgba(10, 10, 10, 0.65) 82%, var(--bg) 100%),
    radial-gradient(closest-side at 30% 50%, rgba(255, 106, 0, 0.22), transparent 70%);
}
.army__content { max-width: 720px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(182, 255, 95, 0.08);
  border: 1px solid rgba(182, 255, 95, 0.35);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(182, 255, 95, 0.8);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(182, 255, 95, 0.7); }
  70%  { box-shadow: 0 0 0 14px rgba(182, 255, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(182, 255, 95, 0); }
}
.army__ctas {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.army__ctas .btn img { filter: brightness(0); }

/* ============ PARTNERS ============ */
.partners { background: var(--cream); color: var(--ink); }
.partners .section__sub { color: rgba(0, 0, 0, 0.65); }
.partners__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.partner {
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 28px 18px;
  min-height: 110px;
  transition: transform .2s, box-shadow .2s;
}
.partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.partner img {
  max-height: 48px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter .2s;
}
.partner:hover img { filter: grayscale(0); }

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, #000 100%);
  padding: 80px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer__brand img { width: 140px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); max-width: 320px; margin: 0 0 22px; }
.footer__brand .nav__socials a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand .nav__socials img { width: 18px; height: 18px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 16px;
  letter-spacing: 0.04em;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); transition: color .2s; }
.footer ul a:hover { color: var(--orange); }
.footer__mail { margin-top: 24px; color: var(--muted); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 24px 0;
  font-size: 13px;
  color: var(--muted);
  max-width: var(--max);
  margin: 0 auto;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { padding-top: 60px; padding-bottom: 40px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 380px; margin: 0 auto; }
  .gif-grid { grid-template-columns: 1fr 1fr; }
  .eco-grid { grid-template-columns: 1fr 1fr; }
  .eco-card--shop { grid-column: 1 / -1; }
  .token__grid { grid-template-columns: 1fr; gap: 40px; }
  .token__amount { font-size: 72px; }
  .partners__grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav { padding: 12px 18px; }
  .nav__links, .nav__socials { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
  }
  .section { padding: 80px 0; }
  .gif-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .world__track img { height: 220px; }
  .token__amount { font-size: 64px; }
  .hero__ctas .btn { flex: 1; justify-content: center; }
}
