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

:root {
  --forest-deep: #0a1a0f;
  --forest-dark: #0f2418;
  --forest-mid: #1a4d2e;
  --forest-bright: #2d6a4f;
  --forest-light: #40916c;
  --forest-glow: #52b788;
  --gold: #c9a227;
  --gold-bright: #ffd54f;
  --gold-dim: #8b6914;
  --cream: #f0ead6;
  --white: #f5f5f0;
  --gray: #8a9a8e;
  --gray-dim: #3d5244;
  --pump-green: #4ade80;
  --pump-green-dim: #22c55e;
  --font-display: "Cinzel", "MedievalSharp", serif;
  --font-accent: "MedievalSharp", cursive;
  --font-body: "Inter", system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --glow-gold: 0 0 40px rgba(201, 162, 39, 0.35);
  --glow-forest: 0 0 60px rgba(45, 106, 79, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--forest-deep);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Canvas & ambient layers ── */
#leaf-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

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

.forest-layer {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 40%;
  background-repeat: repeat-x;
  background-size: auto 100%;
  opacity: 0.15;
}

.forest-layer--back {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 120'%3E%3Cpath fill='%231a4d2e' d='M0 120 L0 80 Q50 60 80 75 Q110 50 150 70 Q190 45 220 65 Q260 40 300 60 Q340 35 400 55 L400 120Z'/%3E%3C/svg%3E");
  animation: forest-drift 40s linear infinite;
  opacity: 0.08;
}

.forest-layer--mid {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 100'%3E%3Cpath fill='%232d6a4f' d='M0 100 L0 65 Q60 45 100 60 Q140 35 180 55 Q220 30 260 50 Q300 25 340 45 Q370 35 400 50 L400 100Z'/%3E%3C/svg%3E");
  animation: forest-drift 28s linear infinite reverse;
  opacity: 0.12;
  height: 30%;
}

.forest-layer--front {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80'%3E%3Cpath fill='%2340916c' d='M0 80 L0 55 Q40 40 80 50 Q120 30 160 45 Q200 25 240 40 Q280 20 320 35 Q360 25 400 38 L400 80Z'/%3E%3C/svg%3E");
  animation: forest-drift 18s linear infinite;
  opacity: 0.18;
  height: 22%;
}

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

.fireflies {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.firefly {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px 2px rgba(255, 213, 79, 0.6);
  animation: firefly-float var(--duration, 6s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
}

@keyframes firefly-float {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 0.8; }
  50% { opacity: 1; transform: translate(var(--tx, 30px), var(--ty, -40px)) scale(1); }
  80% { opacity: 0.6; }
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 26, 15, 0.7) 100%);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.gold { color: var(--gold-bright); }
.center { text-align: center; }

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-left.revealed {
  transform: translateX(0);
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(10, 26, 15, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid rgba(45, 106, 79, 0.3);
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(10, 26, 15, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1140px, 92vw);
  margin: 0 auto;
  padding: 0.75rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  box-shadow: var(--glow-gold);
}

.nav-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-bright);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold-bright);
}

.nav-socials {
  display: flex;
  gap: 0.5rem;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gray-dim);
  color: var(--gray) !important;
  transition: all 0.25s;
}

.nav-social:hover {
  border-color: var(--gold);
  color: var(--gold-bright) !important;
  box-shadow: var(--glow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-bright);
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-ai {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  transform: scale(1.05);
  animation: hero-bg-breathe 12s ease-in-out infinite alternate;
}

@keyframes hero-bg-breathe {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.55;
  mix-blend-mode: luminosity;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(10, 26, 15, 0.3) 0%, rgba(10, 26, 15, 0.5) 40%, rgba(10, 26, 15, 0.92) 100%),
    radial-gradient(ellipse at 50% 20%, rgba(45, 106, 79, 0.25) 0%, transparent 60%);
}

.hero-sunbeams {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 180deg at 50% -10%, transparent 0deg, rgba(255, 213, 79, 0.06) 30deg, transparent 60deg, rgba(255, 213, 79, 0.04) 90deg, transparent 120deg);
  animation: sunbeams-rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes sunbeams-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 7rem 1.5rem 4rem;
  max-width: 800px;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.hero-logo {
  width: clamp(120px, 22vw, 180px);
  height: clamp(120px, 22vw, 180px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  box-shadow: var(--glow-gold), 0 0 80px rgba(45, 106, 79, 0.5);
  animation: logo-float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.hero-logo-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  animation: ring-pulse 3s ease-in-out infinite;
}

.hero-logo-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(82, 183, 136, 0.2);
  animation: ring-spin 20s linear infinite;
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}

@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-badges {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid;
}

.badge-pump {
  color: var(--pump-green);
  border-color: rgba(74, 222, 128, 0.4);
  background: rgba(74, 222, 128, 0.08);
}

.badge-sol {
  color: #9945ff;
  border-color: rgba(153, 69, 255, 0.4);
  background: rgba(153, 69, 255, 0.08);
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--forest-glow);
  margin-bottom: 0.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 0.25rem;
}

.title-gold {
  background: linear-gradient(135deg, var(--gold-dim) 0%, var(--gold-bright) 40%, var(--gold) 70%, var(--gold-bright) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gold-shimmer 4s ease-in-out infinite;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.4));
}

@keyframes gold-shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-ticker {
  font-family: var(--font-accent);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--forest-glow);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-pump {
  background: linear-gradient(135deg, var(--pump-green-dim), var(--pump-green));
  color: var(--forest-deep);
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

.btn-pump:hover {
  box-shadow: 0 6px 30px rgba(74, 222, 128, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(45, 106, 79, 0.2);
  color: var(--white);
  border: 1px solid rgba(82, 183, 136, 0.35);
}

.btn-secondary:hover {
  background: rgba(45, 106, 79, 0.4);
  border-color: var(--forest-glow);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 0.95rem;
}

.btn-copy {
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold-bright);
  border: 1px solid rgba(201, 162, 39, 0.3);
  flex-shrink: 0;
}

.btn-copy:hover,
.btn-copy.copied {
  background: rgba(201, 162, 39, 0.3);
  border-color: var(--gold);
}

/* ── Marquee ── */
.marquee {
  position: relative;
  z-index: 10;
  background: linear-gradient(90deg, var(--forest-dark), var(--forest-mid), var(--forest-dark));
  border-top: 1px solid rgba(82, 183, 136, 0.2);
  border-bottom: 1px solid rgba(82, 183, 136, 0.2);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
  opacity: 0.7;
}

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

/* ── Sections ── */
.section {
  position: relative;
  padding: 6rem 0;
  z-index: 10;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.section-bg--forest {
  background:
    linear-gradient(to bottom, var(--forest-deep), rgba(10, 26, 15, 0.85), var(--forest-deep)),
    url("assets/forest-section-bg.png") center / cover no-repeat;
  opacity: 0.6;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--forest-glow);
  margin-bottom: 0.75rem;
  font-family: monospace;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-text {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.section-text strong {
  color: var(--cream);
}

.section-sub {
  color: var(--gray);
  margin-bottom: 2rem;
}

.inline-link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--gold);
}

/* ── Lore ── */
.lore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lore-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid rgba(201, 162, 39, 0.3);
  box-shadow: var(--glow-forest);
}

.lore-frame img {
  width: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.lore-frame:hover img {
  transform: scale(1.05);
}

.lore-frame-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(10, 26, 15, 0.4) 100%);
  pointer-events: none;
}

.lore-scroll {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(26, 77, 46, 0.3);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  position: relative;
}

.lore-scroll::before,
.lore-scroll::after {
  content: "🌿";
  position: absolute;
  font-size: 1.2rem;
  opacity: 0.5;
}

.lore-scroll::before { top: -8px; left: 12px; }
.lore-scroll::after { bottom: -8px; right: 12px; }

.lore-scroll-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--cream);
  text-align: center;
  font-style: italic;
}

.lore-stats {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin-top: 2rem;
}

.lore-stats li {
  flex: 1;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(26, 77, 46, 0.25);
  border: 1px solid rgba(82, 183, 136, 0.2);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s;
}

.lore-stats li:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.4);
}

.stat-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ── Manifesto ── */
.manifesto {
  padding: 4rem 0;
}

.manifesto-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, rgba(26, 77, 46, 0.3), rgba(15, 36, 24, 0.5));
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.manifesto-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.manifesto-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 1rem;
}

.manifesto-card blockquote {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.manifesto-card blockquote em {
  color: var(--gold-bright);
  font-style: normal;
}

.manifesto-card cite {
  font-size: 0.85rem;
  color: var(--gray);
  font-style: normal;
  letter-spacing: 0.05em;
}

/* ── Contract ── */
.contract {
  background: rgba(15, 36, 24, 0.5);
}

.ca-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: rgba(10, 26, 15, 0.8);
  border: 1px solid rgba(82, 183, 136, 0.25);
  border-radius: var(--radius);
}

.ca-address {
  flex: 1;
  font-family: monospace;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: var(--forest-glow);
  word-break: break-all;
  line-height: 1.5;
}

.copy-toast {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-bright);
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-toast.show {
  opacity: 1;
}

/* ── Chart ── */
.chart-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(82, 183, 136, 0.2);
  background: var(--forest-dark);
  min-height: 420px;
}

.dexscreener-embed {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.dexscreener-embed.hidden,
.chart-placeholder.hidden {
  display: none;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  color: var(--gray);
  padding: 2rem;
  text-align: center;
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.25rem;
  color: var(--gold-bright);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.chart-link:hover {
  color: var(--gold);
}

/* ── Buy steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.step-card {
  padding: 1.75rem 1.25rem;
  background: rgba(26, 77, 46, 0.2);
  border: 1px solid rgba(82, 183, 136, 0.15);
  border-radius: var(--radius);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--glow-forest);
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(201, 162, 39, 0.25);
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
}

.step-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.5;
}

.buy-cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 10;
  padding: 3rem 0 2rem;
  background: rgba(10, 26, 15, 0.95);
  border-top: 1px solid rgba(45, 106, 79, 0.3);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold-bright);
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold-bright);
}

.footer-pump:hover { color: var(--pump-green); }
.footer-tg:hover { color: #29b6f6; }

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray-dim);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .lore-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    background: rgba(10, 26, 15, 0.97);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(45, 106, 79, 0.3);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-socials {
    margin-top: 0.5rem;
  }

  .hero-content {
    padding-top: 6rem;
  }

  .lore-stats {
    flex-direction: column;
  }

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

  .ca-box {
    flex-direction: column;
    text-align: center;
  }

  .dexscreener-embed {
    height: 400px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  #leaf-canvas {
    display: none;
  }
}
