/* ============================================================
   DINOREX — style.css
   Premium Memecoin Landing Page
============================================================ */

/* --- CSS Variables --- */
:root {
  --acid:        #c4b5fd;
  --acid-dim:    #a78bfa;
  --acid-glow:   rgba(196, 181, 253, 0.35);
  --purple:      #7c3aed;
  --orange:      #f97316;
  --cyan:        #06b6d4;
  --bg-dark:     #0a0d14;
  --bg-mid:      #0e1220;
  --bg-card:     #12172a;
  --border:      rgba(255,255,255,0.07);
  --text:        #e8eaf6;
  --muted:       rgba(232,234,246,0.45);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --radius:      12px;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor,
.cursor-follower {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}

.cursor {
  width: 8px; height: 8px;
  background: var(--acid);
}

.cursor-follower {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(196,181,253,0.5);
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  width: 60px; height: 60px;
  background: rgba(196,181,253,0.08);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 13, 20, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--acid);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--acid);
  transition: width var(--transition);
}

.nav__link:hover { color: var(--text); }
.nav__link:hover::after { width: 100%; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

.btn--primary {
  background: var(--acid);
  color: #0a0d14;
}

.btn--primary:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 40px var(--acid-glow), 0 8px 30px rgba(0,0,0,0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--acid);
  color: var(--acid);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 0 20px rgba(196,181,253,0.12);
}

.btn--nav {
  background: rgba(196,181,253,0.1);
  color: var(--acid);
  border: 1px solid rgba(196,181,253,0.3);
  padding: 10px 22px;
  font-size: 12px;
}

.btn--nav:hover {
  background: var(--acid);
  color: #0a0d14;
  transform: scale(1.04);
  box-shadow: 0 0 24px var(--acid-glow);
}

.btn--xl {
  padding: 20px 44px;
  font-size: 15px;
}

/* ============================================================
   SECTION PRIMITIVES
============================================================ */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 16px;
}

.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text);
}

.section-title.center { text-align: center; }

.accent { color: var(--acid); }

/* ============================================================
   NAV LOGO IMAGE
============================================================ */
.nav__logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(196,181,253,0.4);
  flex-shrink: 0;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  padding: 140px 48px 80px;
  text-align: center;
}

/* Grid background */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,181,253,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,181,253,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Three.js canvas */
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  opacity: 0.6;
  pointer-events: none;
}

/* CRT scanlines */
.hero__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--acid);
  background: rgba(196,181,253,0.08);
  border: 1px solid rgba(196,181,253,0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
}

.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--acid);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  overflow: hidden;
}

.hero__title .line {
  display: block;
  overflow: hidden;
  transform: translateY(100%);
  opacity: 0;
}

.hero__title .accent-line {
  -webkit-text-stroke: 2px var(--acid);
  color: transparent;
  background: linear-gradient(135deg, var(--acid) 30%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
  opacity: 0;
  max-width: 520px;
  text-align: center;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   HERO CONTRACT ADDRESS BOX
============================================================ */
.hero__ca {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  background: rgba(196,181,253,0.06);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: 16px;
  padding: 18px 24px;
  max-width: 600px;
  width: 100%;
  backdrop-filter: blur(8px);
}

.hero__ca-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
}

.hero__ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__ca-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  word-break: break-all;
  text-align: center;
}

.hero__ca-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(196,181,253,0.12);
  border: 1px solid rgba(196,181,253,0.3);
  color: var(--acid);
  padding: 8px 16px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: none;
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero__ca-copy:hover {
  background: var(--acid);
  color: #0a0d14;
  box-shadow: 0 0 20px var(--acid-glow);
  transform: scale(1.05);
}

.hero__ca-copy.copied {
  background: var(--acid);
  color: #0a0d14;
}

/* Pupi character — hidden on all screens (handled by mobile inline) */
.hero__dino {
  display: none;
}

.dino-wrap {
  position: relative;
  animation: dinoFloat 4s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Pupi hero image (inside desktop dino wrap - unused) */
.pupi-hero-img {
  width: 100%;
  max-width: 500px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 50px rgba(196,181,253,0.5)) drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* Pupi inline — shown for ALL screen sizes, centered above text */
.hero__pupi-mobile {
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(196,181,253,0.4);
  box-shadow: 0 0 50px rgba(196,181,253,0.35), 0 0 100px rgba(196,181,253,0.1);
  animation: dinoFloat 4s ease-in-out infinite;
  margin-bottom: 32px;
}

.dino-shadow {
  animation: shadowPulse 4s ease-in-out infinite;
}

.dino-glow {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, var(--acid-glow) 0%, transparent 70%);
  filter: blur(15px);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes dinoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25%  { transform: translateY(-18px) rotate(0.5deg); }
  75%  { transform: translateY(-10px) rotate(-0.5deg); }
}

@keyframes shadowPulse {
  0%, 100% { rx: 90; opacity: 0.25; }
  50%       { rx: 75; opacity: 0.15; }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.8; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 0.4; transform: translateX(-50%) scaleX(0.8); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  opacity: 0;
}

.scroll-indicator span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--acid), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: white;
  animation: scrollScan 2s linear infinite;
}

@keyframes scrollScan {
  to { left: 200%; }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-wrap {
  position: relative;
  z-index: 5;
  padding: 0;
  overflow: hidden;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee {
  display: flex;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,181,253,0.08);
}

.marquee--reverse .marquee__inner {
  animation-direction: reverse;
}

.marquee__inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  padding: 18px 0;
  animation: marqueeScroll 25s linear infinite;
  will-change: transform;
}

.marquee__inner span {
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 0 20px;
  transition: color 0.3s;
}

.marquee__inner:hover { animation-play-state: paused; }
.marquee__inner:hover span { color: var(--text); }

.marquee__sep {
  color: var(--acid) !important;
  padding: 0 4px !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   STORY — Comic Layout
============================================================ */
.story {
  padding: 140px 48px;
  position: relative;
}

.story__header {
  max-width: 600px;
  margin-bottom: 80px;
}

.comic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.comic-panel--large {
  grid-row: 1 / 3;
}

.comic-panel--wide {
  grid-column: 2 / 4;
}

.comic-panel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  cursor: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(40px);
  will-change: transform;
}

.comic-panel:hover {
  transform: translateY(-8px) scale(1.01) !important;
  border-color: rgba(196,181,253,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(196,181,253,0.08);
}

.panel__img-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.comic-panel--large .panel__img-wrap { height: 100%; min-height: 400px; }
.comic-panel--wide .panel__img-wrap  { height: 200px; }

.panel__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.7) brightness(0.7);
}

.comic-panel:hover .panel__img {
  transform: scale(1.05);
  filter: saturate(0.9) brightness(0.8);
}

.panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,13,20,0.95) 100%);
}

.panel__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}

.panel__number {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--acid);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 4px;
}

.panel__title {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 8px;
}

.panel__text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
}

/* ============================================================
   PARTNERS
============================================================ */
.partners {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-mid);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
  align-items: center;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  cursor: none;
}

.partner-logo:hover {
  color: var(--acid);
  border-color: rgba(196,181,253,0.3);
  transform: translateY(-6px) scale(1.04) !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 20px rgba(196,181,253,0.08);
}

.partner-logo svg {
  width: 100%;
  height: 40px;
  overflow: visible;
}

/* ============================================================
   HOW TO BUY
============================================================ */
.howtobuy {
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

.howtobuy__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 25vw, 400px);
  color: rgba(196,181,253,0.03);
  letter-spacing: 0.1em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.howtobuy__header {
  max-width: 600px;
  margin-bottom: 80px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  cursor: none;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.step:hover {
  border-color: rgba(196,181,253,0.2);
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 40px rgba(196,181,253,0.06);
}

.step:hover::before { opacity: 1; }

.step__num {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: rgba(196,181,253,0.1);
  position: absolute;
  top: 24px;
  right: 28px;
  pointer-events: none;
}

.step__icon-wrap {
  width: 68px; height: 68px;
  background: rgba(196,181,253,0.08);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s;
}

.step:hover .step__icon-wrap {
  background: rgba(196,181,253,0.15);
  box-shadow: 0 0 24px rgba(196,181,253,0.2);
}

.step__title {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 14px;
}

.step__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
}

/* Contract Box */
.contract-box {
  margin-top: 64px;
  background: var(--bg-card);
  border: 1px solid rgba(196,181,253,0.2);
  border-radius: 16px;
  padding: 28px 36px;
  max-width: 700px;
  opacity: 0;
}

.contract-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 12px;
}

.contract-addr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

#caText {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  word-break: break-all;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,181,253,0.1);
  border: 1px solid rgba(196,181,253,0.3);
  color: var(--acid);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  cursor: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--acid);
  color: #0a0d14;
  box-shadow: 0 0 20px var(--acid-glow);
  transform: scale(1.05);
}

.copy-btn.copied {
  background: var(--acid);
  color: #0a0d14;
}

/* ============================================================
   TOKENOMICS
============================================================ */
.tokenomics {
  padding: 140px 48px;
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}

.tokenomics::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,181,253,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.tokenomics__header {
  margin-bottom: 80px;
}

.tokenomics__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.tokenomics__chart {
  position: relative;
  display: flex;
  justify-content: center;
}

.donut {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 40px rgba(196,181,253,0.15));
}

.donut__seg {
  transition: stroke-width 0.3s ease;
}

/* Legend */
.tokenomics__legend {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legend-item {
  display: grid;
  grid-template-columns: 12px 1fr 120px;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legend-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.legend-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legend-pct {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
  line-height: 1;
}

.legend-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.legend-bar-wrap {
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}

.legend-bar {
  height: 100%;
  border-radius: 100px;
  background: var(--color);
  width: 0;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.legend-bar.animated { width: var(--pct); }

.tax-info {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.tax-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  background: rgba(196,181,253,0.08);
  border: 1px solid rgba(196,181,253,0.2);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ============================================================
   COMMUNITY
============================================================ */
.community {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Noise overlay texture */
.community__noise {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(196,181,253,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(124,58,237,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.community__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.community__title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.community__sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 64px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 40px;
  min-width: 160px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  cursor: none;
}

.social-card:hover {
  transform: translateY(-12px) scale(1.04) !important;
  border-color: rgba(196,181,253,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 40px rgba(196,181,253,0.1);
}

.social-card[data-social="twitter"]:hover  .social-card__icon { color: #1d9bf0; }
.social-card[data-social="telegram"]:hover .social-card__icon { color: #0088cc; }
.social-card[data-social="discord"]:hover  .social-card__icon { color: #5865f2; }

.social-card__icon {
  color: var(--muted);
  transition: color 0.3s, transform 0.3s;
}

.social-card:hover .social-card__icon { transform: scale(1.2); }

.social-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text);
}

.social-card__stat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 48px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  color: var(--acid);
  margin-bottom: 8px;
}

.footer__disclaimer {
  font-size: 12px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(232,234,246,0.2);
  letter-spacing: 0.08em;
}

/* ============================================================
   LOADER / INTRO
============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.loader__logo {
  font-family: var(--font-display);
  font-size: 56px;
  letter-spacing: 0.1em;
  color: var(--acid);
  opacity: 0;
}

.loader__bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(196,181,253,0.1);
  border-radius: 100px;
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  background: var(--acid);
  width: 0%;
  border-radius: 100px;
  box-shadow: 0 0 12px var(--acid-glow);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 20px 32px; }
  .nav__links { display: none; }
  .hero { padding: 100px 32px 60px; }
  .hero__pupi-mobile { width: 200px; height: 200px; }
  .comic-grid { grid-template-columns: 1fr 1fr; }
  .comic-panel--large { grid-row: auto; }
  .comic-panel--wide { grid-column: 1 / 3; }
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .tokenomics__layout { grid-template-columns: 1fr; }
  .tokenomics__chart { margin-bottom: 40px; }
  .story, .howtobuy, .tokenomics, .community { padding: 100px 32px; }
}

@media (max-width: 768px) {
  .hero { padding: 90px 24px 60px; }
  .hero__pupi-mobile { width: 160px; height: 160px; margin-bottom: 24px; }
  .hero__title { font-size: 52px; }
  .hero__ca-text { font-size: 10px; }
  .comic-grid { grid-template-columns: 1fr; }
  .comic-panel--wide { grid-column: auto; }
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
  .story__header { margin-bottom: 48px; }
  .social-row { gap: 12px; }
  .social-card { padding: 24px 28px; min-width: 130px; }
  .footer { padding: 40px 24px; }
  .scroll-indicator { left: 24px; }
  .tokenomics__layout { gap: 40px; }
}

/* ============================================================
   UTILITY
============================================================ */
.will-change-transform { will-change: transform; }

/* Locomotive scroll override for smoother experience */
.c-scrollbar { display: none; }