/* ─── RESET + BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #080808;
  --black2:   #0e0e0e;
  --black3:   #141414;
  --black4:   #1a1a1a;
  --gold:     #f5a623;
  --gold2:    #e8961a;
  --gold-dim: #7a5010;
  --red:      #ff3b3b;
  --green:    #00c96e;
  --yellow:   #f5c923;
  --white:    #f0ede6;
  --grey:     #5a5a5a;
  --grey2:    #333333;
  --border:   #222222;
  --font:     'Space Grotesk', sans-serif;
  --mono:     'Space Mono', monospace;
  --radius:   12px;
  --glow:     0 0 40px rgba(245, 166, 35, 0.15);
}

html { scroll-behavior: smooth; }

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

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

.gold { color: var(--gold); }

/* ─── NAV ──────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.1s !important;
}
.btn-nav:hover { background: var(--gold2) !important; transform: translateY(-1px); }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black2);
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.mobile-menu a {
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--white);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(245,166,35,0.3);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.1s;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  position: relative;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  flex: 1;
  max-width: 620px;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: var(--black4);
  border: 1px solid var(--gold-dim);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(240,237,230,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-socials {
  display: flex;
  gap: 16px;
}
.hero-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: rgba(240,237,230,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.hero-socials a svg { width: 18px; height: 18px; }
.hero-socials a:hover {
  color: var(--gold);
  border-color: var(--gold-dim);
  background: var(--black4);
}

.hero-buffalo {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.buffalo-hero-img {
  width: min(400px, 40vw);
  filter: drop-shadow(0 0 60px rgba(245,166,35,0.25));
  animation: float 4s ease-in-out infinite;
}

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

.hero-verdict-card {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  white-space: nowrap;
}
.verdict-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.verdict-dot.red { background: var(--red); box-shadow: 0 0 8px var(--red); }
.verdict-label { font-weight: 700; }
.verdict-token { color: var(--grey); font-size: 0.78rem; }

/* ─── TICKER ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black2);
  padding: 10px 0;
}

.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(240,237,230,0.5);
}
.ticker-track span { flex-shrink: 0; }

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: rgba(240,237,230,0.65);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ─── FEATURES ───────────────────────────────────────────────── */
#features { background: var(--black2); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.feature-card.coming-soon { opacity: 0.65; }
.feature-card.coming-soon:hover { opacity: 0.85; }

.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p  { font-size: 0.88rem; color: rgba(240,237,230,0.6); line-height: 1.6; margin-bottom: 16px; }

.feature-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--black4);
  border: 1px solid var(--border);
  letter-spacing: 0.05em;
}
.tag.live   { color: var(--green);  border-color: rgba(0,201,110,0.3); background: rgba(0,201,110,0.08); }
.tag.soon   { color: var(--gold);   border-color: rgba(245,166,35,0.3); background: rgba(245,166,35,0.08); }

/* ─── CHECKER ────────────────────────────────────────────────── */
#checker { background: var(--black); }

.checker-box {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  max-width: 720px;
  margin-bottom: 48px;
}

.checker-input-row {
  display: flex;
  gap: 12px;
}

.checker-input-row input {
  flex: 1;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.88rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
}
.checker-input-row input:focus { border-color: var(--gold-dim); }
.checker-input-row input::placeholder { color: var(--grey); }

.checker-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--grey);
}

.checker-result {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--black3);
  border: 1px solid var(--border);
}
.checker-result.hidden { display: none; }
.checker-result.error  { border-color: var(--red); color: var(--red); }
.checker-result.info   { border-color: var(--gold-dim); color: var(--gold); }

.verdict-examples {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

.verdict-ex {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--black2);
  border: 1px solid var(--border);
}
.vex-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.verdict-ex.green .vex-dot  { background: var(--green);  box-shadow: 0 0 10px var(--green); }
.verdict-ex.yellow .vex-dot { background: var(--yellow); box-shadow: 0 0 10px var(--yellow); }
.verdict-ex.red .vex-dot    { background: var(--red);    box-shadow: 0 0 10px var(--red); }
.verdict-ex strong { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.verdict-ex p { font-size: 0.85rem; color: rgba(240,237,230,0.6); }

/* ─── MEMES ──────────────────────────────────────────────────── */
#memes { background: var(--black2); }
#memes .section-inner { padding-top: 64px; padding-bottom: 64px; }

.meme-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 20px;
}

.meme-card {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.meme-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.meme-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.meme-card p {
  padding: 16px;
  font-size: 0.85rem;
  color: rgba(240,237,230,0.65);
  font-style: italic;
  line-height: 1.5;
}

.meme-card.highlight {
  background: var(--black4);
  border-color: var(--gold-dim);
  justify-content: center;
  padding: 40px 32px;
}
.meme-big-text {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 16px;
}
.meme-nfa {
  text-align: center;
  font-size: 0.8rem !important;
  color: var(--grey) !important;
  padding: 0 !important;
}

.meme-wide {
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.meme-wide p {
  padding: 24px 32px !important;
  font-size: 1rem !important;
  flex-shrink: 0;
  max-width: 300px;
}
@media (max-width: 700px) {
  .meme-wide { flex-direction: column; }
  .meme-wide p { max-width: 100%; }
}

/* ─── TOKEN ──────────────────────────────────────────────────── */
#token { background: var(--black); }

.token-section {
  display: flex;
  gap: 80px;
  align-items: center;
}

.token-left { flex: 1; }
.token-left p { color: rgba(240,237,230,0.65); margin-bottom: 28px; line-height: 1.7; }

.ca-box {
  background: var(--black2);
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
}
.ca-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}
.ca-value {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: rgba(240,237,230,0.7);
  word-break: break-all;
}

.token-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.token-stat {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.ts-label { display: block; font-size: 0.72rem; color: var(--grey); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.ts-value { font-weight: 700; font-size: 1rem; }

.token-perks h4 { margin-bottom: 12px; font-size: 0.95rem; font-weight: 700; color: var(--gold); }
.token-perks ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.token-perks li { font-size: 0.88rem; color: rgba(240,237,230,0.75); }

.token-right {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.token-img {
  width: 320px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 80px rgba(245,166,35,0.3));
  animation: float 5s ease-in-out infinite;
}
.token-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

/* ─── HOW TO BUY ─────────────────────────────────────────────── */
#howtobuy { background: var(--black2); }

.htb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.htb-step {
  display: flex;
  gap: 20px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.htb-step:hover { border-color: var(--gold-dim); transform: translateY(-3px); }

.htb-num {
  font-family: var(--mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-dim);
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}

.htb-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.htb-body p  { font-size: 0.86rem; color: rgba(240,237,230,0.65); line-height: 1.6; margin-bottom: 12px; }

.htb-links { display: flex; gap: 12px; flex-wrap: wrap; }
.htb-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.htb-link:hover { background: rgba(245,166,35,0.1); }

.htb-warning {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,59,59,0.06);
  border: 1px solid rgba(255,59,59,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.86rem;
  color: rgba(240,237,230,0.7);
  line-height: 1.6;
}
.htb-warning span { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.htb-warning a { color: var(--gold); }

/* ─── ABOUT ──────────────────────────────────────────────────── */
#about { background: var(--black); }

.about-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}

.about-img { flex-shrink: 0; }
.about-buffalo {
  width: 280px;
  filter: drop-shadow(0 0 60px rgba(245,166,35,0.2));
  animation: float 5s ease-in-out infinite;
}

.about-text { flex: 1; }
.about-text p {
  color: rgba(240,237,230,0.65);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 28px 0;
}
.about-stat {
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
}
.as-num   { display: block; font-size: 1.6rem; font-weight: 800; margin-bottom: 4px; }
.as-label { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: var(--black2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: rgba(240,237,230,0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}
.about-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
}

/* ─── GALLERY ────────────────────────────────────────────────── */
#gallery { background: var(--black2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1;
  background: var(--black3);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.gallery-item:hover { border-color: var(--gold-dim); transform: scale(1.02); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black4);
  border-color: var(--gold-dim);
  padding: 24px;
}
.gallery-cta p {
  font-size: 0.9rem;
  color: rgba(240,237,230,0.6);
  margin-top: 8px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

@media (max-width: 900px) {
  .htb-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; }
  .about-img { display: none; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ROADMAP ─────────────────────────────────────────────────── */
#roadmap { background: var(--black2); }

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.road-phase {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.road-phase.done   { border-color: rgba(0,201,110,0.25); }
.road-phase.active { border-color: rgba(245,166,35,0.35); background: rgba(245,166,35,0.03); }
.road-phase.upcoming { opacity: 0.75; }

.road-phase-header { margin-bottom: 16px; }
.road-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.08em;
}
.road-badge.done     { background: rgba(0,201,110,0.1);  color: var(--green);  border: 1px solid rgba(0,201,110,0.3); }
.road-badge.active   { background: rgba(245,166,35,0.1); color: var(--gold);   border: 1px solid rgba(245,166,35,0.3); }
.road-badge.upcoming { background: rgba(255,255,255,0.05); color: var(--grey); border: 1px solid var(--border); }

.road-phase h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.road-phase ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.road-phase li { font-size: 0.86rem; color: rgba(240,237,230,0.7); line-height: 1.5; }

/* ─── COMMUNITY ───────────────────────────────────────────────── */
#community { background: var(--black); }

.community-inner { text-align: center; }
.community-inner .section-title { margin-bottom: 12px; }
.community-inner .section-sub { margin: 0 auto 48px; }

.community-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.community-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--black2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.community-card:hover { transform: translateY(-4px); }
.community-card.telegram:hover { border-color: #26a5e4; box-shadow: 0 8px 32px rgba(38,165,228,0.15); }
.community-card.twitter:hover  { border-color: #fff;    box-shadow: 0 8px 32px rgba(255,255,255,0.1); }
.community-card.discord:hover  { border-color: #5865f2; box-shadow: 0 8px 32px rgba(88,101,242,0.15); }
.community-card.bot:hover      { border-color: var(--gold); box-shadow: 0 8px 32px rgba(245,166,35,0.15); }

.comm-icon { width: 28px; height: 28px; flex-shrink: 0; opacity: 0.8; }
.community-card div { text-align: left; }
.community-card strong { display: block; font-size: 0.9rem; font-weight: 700; }
.community-card span   { font-size: 0.78rem; color: var(--grey); }

/* ─── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--black2);
  border-top: 1px solid var(--border);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}
.footer-logo img { width: 32px; height: 32px; object-fit: contain; border-radius: 50%; }

.footer-nfa { font-size: 0.82rem; color: var(--grey); max-width: 500px; line-height: 1.6; }

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(240,237,230,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.75rem; color: var(--grey); }

/* ─── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }

  #hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .hero-cta { justify-content: center; }
  .hero-socials { justify-content: center; }
  .buffalo-hero-img { width: min(280px, 70vw); }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .meme-grid { grid-template-columns: 1fr; }
  .token-section { flex-direction: column; }
  .token-right { display: none; }
  .roadmap-grid { grid-template-columns: 1fr; }
  .community-links { grid-template-columns: 1fr 1fr; }

  .checker-input-row { flex-direction: column; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .community-links { grid-template-columns: 1fr; }
  .token-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
