/* ===== Tendies in Hood — Magical meme site ===== */
:root {
  --lime: #b8ff50;
  --lime-bright: #c8ff4d;
  --lime-deep: #7ed321;
  --green-dark: #0a1f0a;
  --green-mid: #122812;
  --green-card: rgba(20, 50, 20, 0.55);
  --gold: #ffb347;
  --gold-bright: #ffd166;
  --orange: #ff6b1a;
  --white: #f5ffe8;
  --muted: #a8c89a;
  --glow: 0 0 40px rgba(184, 255, 80, 0.45);
  --glow-strong: 0 0 60px rgba(200, 255, 77, 0.65);
  --radius: 20px;
  --font-display: "Bangers", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--green-dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  min-height: 100vh;
}

body.touch-device {
  cursor: auto;
}

body.touch-device .cursor-dot,
body.touch-device .cursor-ring {
  display: none !important;
}

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

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

/* ===== Custom cursor ===== */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--lime-bright);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--lime-bright), 0 0 24px rgba(200, 255, 77, 0.6);
  transition: width 0.15s, height 0.15s, background 0.15s;
  mix-blend-mode: screen;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(200, 255, 77, 0.7);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, background 0.2s;
  mix-blend-mode: screen;
}

body.cursor-hover .cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--gold-bright);
}

body.cursor-hover .cursor-ring {
  width: 52px;
  height: 52px;
  border-color: var(--gold);
  background: rgba(255, 177, 71, 0.08);
}

body.cursor-click .cursor-ring {
  width: 28px;
  height: 28px;
}

/* Magic canvas (particles + trails) */
#magicCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ambient orbs */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: orbFloat 18s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, #8ef02a, transparent 70%);
  top: -10%;
  left: -5%;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, #ffb347, transparent 70%);
  bottom: 10%;
  right: -8%;
  animation-delay: -6s;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #4dff9a, transparent 70%);
  top: 45%;
  left: 40%;
  animation-delay: -12s;
}

.orb-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #c8ff4d, transparent 70%);
  top: 20%;
  right: 20%;
  animation-delay: -3s;
  opacity: 0.25;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(40px, -30px) scale(1.08);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.95);
  }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 100;
  background: rgba(8, 24, 8, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 255, 80, 0.12);
  transition: box-shadow 0.3s, background 0.3s;
}

.nav.scrolled {
  background: rgba(8, 24, 8, 0.9);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--lime-bright);
  text-shadow: 0 0 20px rgba(200, 255, 77, 0.5);
  z-index: 2;
}

.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--lime-deep);
  box-shadow: 0 0 16px rgba(126, 211, 33, 0.5);
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lime-bright), var(--gold));
  transition: width 0.25s;
  box-shadow: 0 0 8px var(--lime-bright);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  z-index: 2;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime-bright);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-deep));
  color: #0a1a00;
  box-shadow: 0 4px 24px rgba(126, 211, 33, 0.4);
}

.btn-primary:hover {
  box-shadow: var(--glow);
}

.btn-outline {
  background: transparent;
  color: var(--lime-bright);
  border: 2px solid rgba(200, 255, 77, 0.5);
}

.btn-outline:hover {
  border-color: var(--lime-bright);
  background: rgba(200, 255, 77, 0.08);
  box-shadow: 0 0 24px rgba(200, 255, 77, 0.2);
}

.btn-ghost {
  background: rgba(0, 0, 0, 0.35);
  color: var(--muted);
  border: 1px solid rgba(184, 255, 80, 0.2);
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
  gap: 0.6rem;
}

.btn-ghost .copy-hint {
  color: var(--lime-bright);
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.btn-glow {
  animation: pulseGlow 2.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 4px 24px rgba(126, 211, 33, 0.35);
  }
  50% {
    box-shadow: 0 4px 40px rgba(200, 255, 77, 0.65), 0 0 60px rgba(200, 255, 77, 0.25);
  }
}

/* ===== Glass ===== */
.glass {
  background: var(--green-card);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(184, 255, 80, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) 5vw 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(184, 255, 80, 0.18), transparent 70%);
  pointer-events: none;
  filter: blur(40px);
  animation: heroPulse 5s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(126, 211, 33, 0.15);
  border: 1px solid rgba(200, 255, 77, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--lime-bright);
  margin-bottom: 1.25rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 10px var(--lime-bright);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.title-line {
  display: block;
  text-shadow: 0 4px 0 #3a6b10, 0 0 40px rgba(200, 255, 77, 0.4);
}

.title-line.accent {
  background: linear-gradient(90deg, var(--lime-bright), var(--gold-bright), var(--lime-bright));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 4s linear infinite;
  text-shadow: none;
  filter: drop-shadow(0 4px 0 #3a6b10) drop-shadow(0 0 24px rgba(200, 255, 77, 0.5));
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}

.hero-sub {
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 520px;
}

.stat {
  padding: 0.9rem 0.6rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lime-bright);
  letter-spacing: 0.04em;
}

.stat span {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 3px solid rgba(200, 255, 77, 0.4);
  box-shadow: var(--glow), 0 20px 60px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}

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

.frame-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 45%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    background-position: 100% 0;
  }
  40%,
  100% {
    background-position: -100% 0;
  }
}

.hero-mascot {
  position: absolute;
  bottom: -20px;
  right: 5%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--lime-bright);
  box-shadow: var(--glow-strong);
  background: #8fef2a;
}

/* Float helpers */
.magic-float {
  animation: floatY 4s ease-in-out infinite;
}

.magic-float-slow {
  animation: floatY 6s ease-in-out infinite;
}

.spin-slow {
  animation: spinSlow 20s linear infinite, floatY 5s ease-in-out infinite;
}

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

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

/* Hero mascot needs combined animation carefully */
.hero-mascot.spin-slow {
  animation: mascotDance 8s ease-in-out infinite;
}

@keyframes mascotDance {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }
  50% {
    transform: translateY(-14px) rotate(6deg);
  }
}

/* ===== Marquee ===== */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(90deg, #1a3d0a, #2d5a12, #1a3d0a);
  border-top: 2px solid rgba(200, 255, 77, 0.3);
  border-bottom: 2px solid rgba(200, 255, 77, 0.3);
  padding: 0.85rem 0;
  box-shadow: 0 0 40px rgba(126, 211, 33, 0.2);
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--lime-bright);
  text-shadow: 0 0 12px rgba(200, 255, 77, 0.5);
}

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

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

/* ===== Sections ===== */
.section {
  position: relative;
  z-index: 2;
  padding: 6rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
}

.text-glow {
  color: var(--lime-bright);
  text-shadow: 0 0 24px rgba(200, 255, 77, 0.55);
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-card {
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 255, 77, 0.4);
  box-shadow: var(--glow);
}

.about-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 8px rgba(200, 255, 77, 0.4));
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--lime-bright);
  margin-bottom: 0.65rem;
}

.about-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.about-banner {
  grid-column: 1 / -1;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(200, 255, 77, 0.3);
  box-shadow: var(--glow);
  margin-top: 0.5rem;
}

.about-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  background: linear-gradient(transparent, rgba(5, 20, 5, 0.92));
}

.banner-overlay p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.03em;
  color: var(--gold-bright);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

/* ===== Tokenomics ===== */
.token-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.token-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem;
}

.token-logo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--lime-bright);
  box-shadow: var(--glow);
  flex-shrink: 0;
  background: #8fef2a;
}

.token-meta h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.03em;
}

.ticker {
  display: inline-block;
  margin: 0.35rem 0 1rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(200, 255, 77, 0.15);
  color: var(--lime-bright);
  font-weight: 800;
  font-size: 0.9rem;
}

.ca-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.ca-label {
  width: 100%;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.ca-box code {
  font-family: ui-monospace, monospace;
  font-size: 0.95rem;
  color: var(--gold-bright);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 177, 71, 0.25);
  word-break: break-all;
}

.token-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.t-card {
  padding: 1.25rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}

.t-card:hover {
  transform: scale(1.03);
  box-shadow: var(--glow);
}

.t-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lime-bright);
  letter-spacing: 0.03em;
  margin-bottom: 0.25rem;
}

.t-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.how-to {
  padding: 1.75rem 2rem;
}

.how-to h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  gap: 0.85rem;
}

.steps li {
  counter-increment: step;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--muted);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(184, 255, 80, 0.08);
}

.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-deep));
  color: #0a1a00;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 16px rgba(200, 255, 77, 0.4);
}

.steps li strong {
  color: var(--white);
}

.steps code {
  color: var(--gold-bright);
  font-size: 0.85rem;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.gal-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border: 2px solid rgba(184, 255, 80, 0.2);
  cursor: none;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
  background: #0d1f0d;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(5, 18, 5, 0.92));
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--lime-bright);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.gal-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--lime-bright);
  box-shadow: var(--glow-strong);
  z-index: 2;
}

.gal-item:hover img {
  transform: scale(1.08);
}

.gal-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(3, 12, 3, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(90vw, 1000px);
  max-height: 75vh;
  border-radius: 16px;
  border: 3px solid rgba(200, 255, 77, 0.4);
  box-shadow: var(--glow-strong);
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #0a1a0a;
}

.lightbox p {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--lime-bright);
  letter-spacing: 0.04em;
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: none;
  transition: color 0.2s, transform 0.2s;
}

.lb-close:hover {
  color: var(--lime-bright);
  transform: scale(1.1);
}

/* ===== Join ===== */
.join {
  padding-bottom: 4rem;
}

.join-card {
  text-align: center;
  padding: 3.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.join-card::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(200, 255, 77, 0.12),
    transparent 30%,
    transparent 50%,
    rgba(255, 177, 71, 0.1),
    transparent 80%
  );
  animation: spinSlow 12s linear infinite;
  pointer-events: none;
}

.join-card > * {
  position: relative;
  z-index: 1;
}

.join-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  border: 3px solid var(--lime-bright);
  box-shadow: var(--glow-strong);
  background: #8fef2a;
}

.join-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.join-card > p {
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(200, 255, 77, 0.35);
  font-weight: 700;
  transition: all 0.25s;
}

.social-btn:hover {
  background: rgba(200, 255, 77, 0.15);
  border-color: var(--lime-bright);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.disclaimer {
  font-size: 0.8rem !important;
  color: rgba(168, 200, 154, 0.6) !important;
  max-width: 420px;
  margin: 0 auto !important;
}

/* ===== Footer ===== */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(184, 255, 80, 0.12);
  padding: 1.75rem 5vw;
  background: rgba(5, 15, 5, 0.8);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--lime-bright);
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--lime-deep);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
}

.footer-links a:hover {
  color: var(--lime-bright);
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: linear-gradient(135deg, var(--lime-bright), var(--lime-deep));
  color: #0a1a00;
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  z-index: 1000;
  opacity: 0;
  transition: transform 0.35s, opacity 0.35s;
  box-shadow: var(--glow);
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 1.5rem);
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-mascot {
    width: 90px;
    height: 90px;
  }

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

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

  .token-main {
    flex-direction: column;
    text-align: center;
  }

  .ca-box {
    justify-content: center;
  }

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

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 6, 0.97);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    font-size: 1.4rem;
    z-index: 1;
  }

  .nav.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav .btn-sm {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .token-cards {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}
