/* ============================================
   $MOGE — World-class meme coin site
   MOG + DOGE. Very Moge. Don't get mogged.
   ============================================ */

:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --bg-card: #111111;
  --border: rgba(255, 255, 255, 0.08);
  --border-hot: rgba(255, 60, 120, 0.4);

  --text: #f5f5f5;
  --text-dim: #888;
  --text-muted: #555;

  --neon-pink: #ff2d6a;
  --neon-orange: #ff6b1a;
  --neon-yellow: #ffd000;
  --neon-green: #39ff14;
  --neon-cyan: #00f0ff;
  --neon-purple: #b44aff;
  --gold: #f5c842;
  --pitviper: linear-gradient(135deg, #ff006e, #ff6b00, #ffd000, #00ff88, #00d4ff, #b44aff);

  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-pink) var(--bg);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

body.loading {
  overflow: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: none;
  border: none;
  background: none;
  color: inherit;
}

/* ---- Custom cursor ---- */
.cursor, .cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.cursor {
  width: 12px;
  height: 12px;
  background: #fff;
  transition: width 0.2s var(--ease-out), height 0.2s var(--ease-out), background 0.2s;
}

.cursor.hover {
  width: 48px;
  height: 48px;
  background: var(--neon-pink);
  mix-blend-mode: exclusion;
}

.cursor-trail {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}

.cursor-trail.hover {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}

@media (pointer: coarse) {
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }
  button, a { cursor: pointer; }
}

/* ---- Overlays ---- */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9989;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.5;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

#confetti {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s var(--ease-out) 0.35s, visibility 0.5s 0.35s;
}

.loader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader.finishing {
  animation: loader-shake 0.45s ease-in-out;
}

#loaderCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.loader-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.85) 75%),
    radial-gradient(ellipse at 30% 20%, rgba(255, 45, 106, 0.12), transparent 45%),
    radial-gradient(ellipse at 70% 80%, rgba(0, 240, 255, 0.1), transparent 40%);
  pointer-events: none;
}

.loader-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.15) 3px,
    rgba(0, 0, 0, 0.15) 6px
  );
  animation: loader-scan-flicker 0.12s steps(2) infinite;
  opacity: 0.6;
}

.loader-flash {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.loader-flash.boom {
  animation: loader-boom 0.55s var(--ease-out) forwards;
}

.loader-wipe {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: var(--pitviper);
  background-size: 200% 100%;
  transform: scaleY(0);
  transform-origin: bottom;
  pointer-events: none;
}

.loader.finishing .loader-wipe {
  animation: loader-wipe 0.7s var(--ease-out) forwards;
}

.loader-corners {
  position: absolute;
  inset: 1.25rem;
  z-index: 3;
  pointer-events: none;
}

.loader-corners span {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--neon-pink);
  border-style: solid;
  opacity: 0.7;
  animation: loader-corner-pulse 1.6s ease-in-out infinite;
}

.loader-corners span:nth-child(1) {
  top: 0; left: 0;
  border-width: 2px 0 0 2px;
}
.loader-corners span:nth-child(2) {
  top: 0; right: 0;
  border-width: 2px 2px 0 0;
  border-color: var(--neon-cyan);
  animation-delay: 0.2s;
}
.loader-corners span:nth-child(3) {
  bottom: 0; left: 0;
  border-width: 0 0 2px 2px;
  border-color: var(--neon-cyan);
  animation-delay: 0.4s;
}
.loader-corners span:nth-child(4) {
  bottom: 0; right: 0;
  border-width: 0 2px 2px 0;
  animation-delay: 0.6s;
}

.loader-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  width: min(420px, 88vw);
  max-height: min(92dvh, 92vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0;
  overflow: hidden;
}

.loader-boot {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--neon-green);
  text-shadow: 0 0 12px rgba(57, 255, 20, 0.6);
  margin-bottom: 1.5rem;
  opacity: 0.9;
  animation: loader-blink 1.2s step-end infinite;
}

.loader-face-wrap {
  position: relative;
  width: min(150px, 36vw);
  aspect-ratio: 1;
  margin-bottom: 1.25rem;
}

.loader-face {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid transparent;
  background: linear-gradient(#000, #000) padding-box, var(--pitviper) border-box;
  box-shadow:
    0 0 40px rgba(255, 45, 106, 0.45),
    0 0 80px rgba(0, 240, 255, 0.2);
  position: relative;
  z-index: 2;
  animation: loader-face-float 2.4s ease-in-out infinite, loader-face-spin 12s linear infinite;
  filter: saturate(1.2) contrast(1.05);
}

.loader-face-glitch {
  position: absolute;
  inset: -4%;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 240, 255, 0.15) 45%,
    rgba(255, 45, 106, 0.2) 55%,
    transparent 100%
  );
  mix-blend-mode: screen;
  opacity: 0;
  animation: loader-face-glitch 2.8s steps(1) infinite;
}

.loader-ring {
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 1px solid transparent;
  z-index: 1;
}

.loader-ring-a {
  border-top-color: var(--neon-pink);
  border-right-color: rgba(255, 45, 106, 0.3);
  animation: spin 2.2s linear infinite;
  box-shadow: 0 0 20px rgba(255, 45, 106, 0.2);
}

.loader-ring-b {
  inset: -22%;
  border-bottom-color: var(--neon-cyan);
  border-left-color: rgba(0, 240, 255, 0.3);
  animation: spin 3.4s linear infinite reverse;
}

.loader-ring-c {
  inset: -32%;
  border: 1px dashed rgba(255, 208, 0, 0.35);
  animation: spin 8s linear infinite;
}

.loader-glitch {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 18vw, 8rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  background: var(--pitviper);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glitch-skew 0.8s infinite linear alternate-reverse, gradient-shift 2s linear infinite;
  position: relative;
  filter: drop-shadow(0 0 24px rgba(255, 45, 106, 0.4));
}

.loader-glitch.chaos {
  animation: glitch-skew 0.08s infinite linear alternate-reverse, loader-title-chaos 0.15s steps(2) infinite;
}

.loader-sub {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
  margin-bottom: 1.25rem;
}

.loader-percent {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  color: #fff;
  text-shadow:
    0 0 20px rgba(255, 45, 106, 0.6),
    2px 0 var(--neon-cyan),
    -2px 0 var(--neon-pink);
  margin-bottom: 0.85rem;
  transition: transform 0.1s;
}

.loader-percent span {
  font-size: 0.55em;
  opacity: 0.7;
  margin-left: 0.05em;
}

.loader-percent.bump {
  transform: scale(1.12);
}

.loader-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--pitviper);
  background-size: 200% 100%;
  animation: gradient-shift 1.5s linear infinite;
  transition: width 0.12s linear;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 45, 106, 0.7);
}

.loader-bar-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  left: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  opacity: 0.8;
  transform: translateX(-100%);
  transition: left 0.12s linear;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.loader-status {
  margin-top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--neon-pink);
  text-shadow: 0 0 16px rgba(255, 45, 106, 0.5);
  min-height: 1.2em;
  transition: opacity 0.15s, transform 0.15s;
}

.loader-status.swap {
  opacity: 0;
  transform: translateY(6px);
}

.loader-terminal {
  margin-top: 1.5rem;
  width: 100%;
  max-height: 110px;
  overflow: hidden;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: rgba(57, 255, 20, 0.75);
  background: rgba(0, 20, 0, 0.35);
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.loader-term-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: loader-term-in 0.25s var(--ease-out);
}

.loader-term-line.err {
  color: var(--neon-pink);
}

.loader-term-line.warn {
  color: var(--neon-yellow);
}

@keyframes loader-shake {
  0%, 100% { transform: translate(0, 0); }
  15% { transform: translate(-8px, 3px) skewX(-1deg); }
  30% { transform: translate(7px, -4px) skewX(1deg); }
  45% { transform: translate(-6px, -2px); }
  60% { transform: translate(5px, 3px) skewX(-0.5deg); }
  75% { transform: translate(-3px, 1px); }
}

@keyframes loader-boom {
  0% { opacity: 0; }
  15% { opacity: 0.9; }
  100% { opacity: 0; }
}

@keyframes loader-wipe {
  0% { transform: scaleY(0); transform-origin: bottom; }
  45% { transform: scaleY(1); transform-origin: bottom; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

@keyframes loader-corner-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes loader-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@keyframes loader-face-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.03); }
}

@keyframes loader-face-spin {
  /* subtle wobble via filter parent — face itself stays upright via wrap */
  0%, 100% { filter: saturate(1.2) hue-rotate(0deg); }
  50% { filter: saturate(1.4) hue-rotate(8deg); }
}

@keyframes loader-face-glitch {
  0%, 88%, 100% { opacity: 0; transform: translate(0); }
  90% { opacity: 1; transform: translate(-4px, 1px); }
  92% { opacity: 0.8; transform: translate(5px, -2px); }
  94% { opacity: 1; transform: translate(-3px, 0); }
  96% { opacity: 0; }
}

@keyframes loader-scan-flicker {
  0% { opacity: 0.5; }
  100% { opacity: 0.7; }
}

@keyframes loader-title-chaos {
  0% { transform: translate(0) skew(0); }
  25% { transform: translate(-4px, 1px) skew(2deg); }
  50% { transform: translate(5px, -2px) skew(-2deg); }
  75% { transform: translate(-2px, 2px) skew(1deg); }
  100% { transform: translate(3px, 0) skew(-1deg); }
}

@keyframes loader-term-in {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Loader — mobile */
@media (max-width: 600px) {
  .loader-corners {
    inset: max(0.65rem, env(safe-area-inset-top)) max(0.65rem, env(safe-area-inset-right)) max(0.65rem, env(safe-area-inset-bottom)) max(0.65rem, env(safe-area-inset-left));
  }

  .loader-corners span {
    width: 18px;
    height: 18px;
  }

  .loader-boot {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
    max-width: 92vw;
    padding: 0 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .loader-face-wrap {
    width: min(110px, 28vw);
    margin-bottom: 0.75rem;
  }

  .loader-ring-c {
    display: none;
  }

  .loader-glitch {
    font-size: clamp(3.4rem, 20vw, 5rem);
  }

  .loader-sub {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    margin-bottom: 0.85rem;
  }

  .loader-percent {
    font-size: clamp(2rem, 10vw, 2.6rem);
    margin-bottom: 0.65rem;
  }

  .loader-status {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    padding: 0 0.5rem;
    max-width: 100%;
  }

  .loader-terminal {
    margin-top: 0.9rem;
    max-height: 72px;
    font-size: 0.55rem;
    padding: 0.55rem 0.65rem;
  }
}

@media (max-height: 700px) {
  .loader-face-wrap {
    width: min(100px, 24vw);
    margin-bottom: 0.5rem;
  }

  .loader-boot {
    margin-bottom: 0.5rem;
  }

  .loader-sub {
    margin-bottom: 0.5rem;
  }

  .loader-terminal {
    max-height: 56px;
    margin-top: 0.65rem;
  }

  .loader-glitch {
    font-size: clamp(2.8rem, 14vh, 5rem);
  }
}

@media (max-height: 540px) {
  .loader-terminal {
    display: none;
  }

  .loader-face-wrap {
    width: 72px;
  }

  .loader-ring-b,
  .loader-ring-c {
    display: none;
  }
}

/* ---- Nav ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(5, 5, 5, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid transparent;
  background: var(--pitviper) border-box;
  box-shadow: 0 0 20px rgba(255, 45, 106, 0.4);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--pitviper);
  transition: width 0.3s var(--ease-out);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.btn-ca-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.btn-ca-nav:hover {
  border-color: var(--neon-pink);
  color: var(--text);
  box-shadow: 0 0 20px rgba(255, 45, 106, 0.2);
}

.btn-ca-label {
  background: var(--neon-pink);
  color: #000;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.65rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--neon-pink);
}

/* ---- Ticker ---- */
.ticker {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ticker-dot {
  color: var(--neon-pink);
  font-size: 0.5rem;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.75rem;
}

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

.btn-xl {
  padding: 1.25rem 2.75rem;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--pitviper);
  color: #000;
  box-shadow: 0 0 30px rgba(255, 45, 106, 0.35), 0 0 60px rgba(0, 212, 255, 0.15);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 50px rgba(255, 45, 106, 0.55), 0 0 80px rgba(0, 212, 255, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255, 45, 106, 0.2);
  transform: translateY(-2px);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--nav-h) + 36px + 3rem) clamp(1.25rem, 5vw, 4rem) 4rem;
  z-index: 1;
  overflow: hidden;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  animation: orb-float 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-pink), transparent 70%);
  top: -10%;
  right: 10%;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--neon-cyan), transparent 70%);
  bottom: 0;
  left: -5%;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--neon-orange), transparent 70%);
  top: 40%;
  left: 40%;
  animation-delay: -7s;
  opacity: 0.25;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 45, 106, 0.4);
  border-radius: 999px;
  background: rgba(255, 45, 106, 0.08);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--neon-pink);
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  margin-bottom: 1.25rem;
}

.hero-title-line {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.85;
  letter-spacing: 0.04em;
  background: var(--pitviper);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 4s linear infinite;
  position: relative;
}

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

.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: 0.2em;
  color: var(--text);
  margin-top: 0.25rem;
  opacity: 0.9;
}

.hero-title-sub .plus {
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 34rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-tagline strong {
  color: var(--text);
  font-weight: 600;
}

.neon-text {
  color: var(--neon-pink);
  text-shadow: 0 0 20px rgba(255, 45, 106, 0.5);
  font-weight: 600;
}

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

/* CA box */
.ca-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  max-width: 540px;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: none;
}

.ca-box:hover {
  border-color: rgba(255, 45, 106, 0.5);
  box-shadow: 0 0 40px rgba(255, 45, 106, 0.12);
}

.ca-box-wide {
  max-width: 100%;
  margin-top: 3rem;
}

.ca-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ca-text {
  font-family: var(--font-mono);
  font-size: clamp(0.65rem, 1.5vw, 0.85rem);
  color: var(--text);
  word-break: break-all;
  flex: 1;
}

.ca-copy {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: all 0.25s;
  position: relative;
}

.ca-copy:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  background: rgba(255, 45, 106, 0.1);
}

.ca-copy .icon-check {
  display: none;
  position: absolute;
}

.ca-copy.copied {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.1);
}

.ca-copy.copied .icon-copy { display: none; }
.ca-copy.copied .icon-check { display: block; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-ring {
  position: absolute;
  width: min(90%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 106, 0.25);
  animation: spin 20s linear infinite;
}

.hero-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 16px var(--neon-pink);
}

.hero-ring-2 {
  width: min(105%, 480px);
  border-color: rgba(0, 240, 255, 0.15);
  animation-direction: reverse;
  animation-duration: 28s;
}

.hero-ring-2::before {
  background: var(--neon-cyan);
  box-shadow: 0 0 16px var(--neon-cyan);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-portrait {
  position: relative;
  width: min(85%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--pitviper) border-box;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 20px 80px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 45, 106, 0.25);
  animation: portrait-float 6s ease-in-out infinite;
}

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

.hero-portrait-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(255, 45, 106, 0.35), transparent 60%);
  z-index: -1;
  animation: glow-pulse 3s ease-in-out infinite;
}

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

.hero-portrait-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 40%, transparent 60%, rgba(255, 107, 26, 0.1) 100%);
  pointer-events: none;
}

.floating-tag {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  padding: 0.4rem 0.9rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  animation: tag-float 5s ease-in-out infinite;
  white-space: nowrap;
}

.tag-1 {
  top: 8%;
  right: 0;
  color: var(--neon-pink);
  border-color: rgba(255, 45, 106, 0.4);
  animation-delay: 0s;
}

.tag-2 {
  bottom: 18%;
  left: 0;
  color: var(--neon-cyan);
  border-color: rgba(0, 240, 255, 0.4);
  animation-delay: -1.5s;
}

.tag-3 {
  top: 45%;
  right: -5%;
  color: var(--neon-yellow);
  border-color: rgba(255, 208, 0, 0.4);
  animation-delay: -3s;
  font-size: 1.2rem;
}

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

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  z-index: 3;
}

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

@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ---- Stats strip ---- */
.stats-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 0;
  padding: 2.5rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(255, 45, 106, 0.06), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.04em;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

/* ---- Sections common ---- */
.section {
  position: relative;
  z-index: 1;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 4rem);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--neon-pink);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section-eyebrow.center,
.section-title.center,
.section-sub.center {
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.section-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-sub.center {
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: var(--pitviper);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 5s linear infinite;
}

/* ---- About ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-frame-tweet {
  aspect-ratio: auto;
  background: #000;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 45, 106, 0.15);
}

.about-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.6s var(--ease-out);
}

.about-frame:hover img {
  transform: scale(1.02);
}

.about-frame-border {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.6), transparent 40%, transparent 60%, rgba(0, 240, 255, 0.4)) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.about-stamp {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.2rem;
  background: var(--neon-pink);
  color: #000;
  border-radius: 8px;
  transform: rotate(-6deg);
  box-shadow: 0 10px 30px rgba(255, 45, 106, 0.4);
  animation: stamp-wiggle 4s ease-in-out infinite;
}

@keyframes stamp-wiggle {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(-3deg) scale(1.04); }
}

.about-visual {
  position: relative;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-body {
  color: var(--text-dim);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

.about-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.about-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
}

.bullet-icon {
  color: var(--neon-pink);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---- Lore cards ---- */
.lore-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.lore-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
  overflow: hidden;
  transform-style: preserve-3d;
}

.lore-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 45, 106, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.lore-card:hover {
  border-color: rgba(255, 45, 106, 0.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 45, 106, 0.1);
}

.lore-card:hover::before {
  opacity: 1;
}

.lore-card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.lore-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  filter: grayscale(0.3);
}

.lore-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.lore-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ---- Statement marquee ---- */
.statement {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #000;
}

.statement-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.06em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.15);
  will-change: transform;
}

.statement-track span:nth-child(even) {
  -webkit-text-stroke: 1.5px rgba(255, 45, 106, 0.4);
}

/* ---- Tokenomics ---- */
.tokenomics-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

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

.token-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.token-card:hover {
  border-color: rgba(255, 45, 106, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255, 45, 106, 0.1);
}

.token-card-val {
  font-family: var(--font-display);
  font-size: 2.5rem;
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.token-card-lab {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.tokenomics-visual {
  display: flex;
  justify-content: center;
}

.token-orb {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.token-img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(255, 45, 106, 0.4));
  animation: portrait-float 5s ease-in-out infinite;
  z-index: 2;
}

.token-spin-ring {
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 45, 106, 0.3);
  animation: spin 25s linear infinite;
}

.token-spin-ring.reverse {
  inset: 0;
  border-color: rgba(0, 240, 255, 0.2);
  border-style: dotted;
  animation-direction: reverse;
  animation-duration: 35s;
}

/* ---- How to buy ---- */
.howto-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}

.howto-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}

.step:first-child {
  border-top: 1px solid var(--border);
}

.step:hover {
  background: rgba(255, 45, 106, 0.04);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  min-width: 2.5rem;
}

.step-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.step-body p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.howto-visual {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.howto-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.howto-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

/* ---- Final CTA ---- */
.final-cta {
  position: relative;
  z-index: 1;
  padding: clamp(5rem, 12vw, 9rem) clamp(1.25rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 45, 106, 0.2), transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 240, 255, 0.1), transparent 40%);
  z-index: -1;
}

.final-cta-inner {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-face {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--pitviper) border-box;
  box-shadow: 0 0 50px rgba(255, 45, 106, 0.4);
  animation: portrait-float 5s ease-in-out infinite;
}

.final-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
}

.final-sub {
  color: var(--text-dim);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.final-buttons {
  margin-bottom: 2.5rem;
}

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

.final-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  padding-bottom: 2px;
}

.final-links a:hover {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

/* ---- Send it quote ---- */
.send-it {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(255, 45, 106, 0.25);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 45, 106, 0.12), transparent 60%),
    var(--bg-card);
  position: relative;
  overflow: hidden;
}

.send-it::before {
  content: "NARC SAID";
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--neon-pink);
}

.send-it-quote {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.06em;
  line-height: 1;
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 1.5rem 0 1rem;
}

.send-it-attr {
  font-size: 0.95rem;
  color: var(--text-dim);
}

.send-it-attr span {
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ---- Sticky copy-CA bar ---- */
.sticky-buy {
  position: fixed;
  bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  left: max(0.75rem, env(safe-area-inset-left, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 900;
  padding: 0;
  border: none;
  background: transparent;
  width: auto;
  font: inherit;
  color: inherit;
  pointer-events: none;
  transform: translateY(calc(100% + 2rem));
  transition: transform 0.4s var(--ease-out);
  cursor: none;
  text-align: left;
}

.sticky-buy.show {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-buy-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.7rem 0.75rem 0.7rem 0.85rem;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(255, 45, 106, 0.12);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.sticky-buy:hover .sticky-buy-inner,
.sticky-buy:focus-visible .sticky-buy-inner {
  border-color: rgba(255, 45, 106, 0.45);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(255, 45, 106, 0.2);
}

.sticky-buy.copied .sticky-buy-inner {
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(57, 255, 20, 0.25);
}

.sticky-buy-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex: 1;
}

.sticky-buy-info img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 45, 106, 0.5);
}

.sticky-buy.copied .sticky-buy-info img {
  border-color: rgba(57, 255, 20, 0.7);
}

.sticky-buy-text {
  min-width: 0;
}

.sticky-buy-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.sticky-buy.copied .sticky-buy-info strong {
  color: var(--neon-green);
}

.sticky-buy-info span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy .sticky-buy-action {
  flex-shrink: 0;
  min-height: 44px;
  padding: 0.65rem 1.15rem;
  font-size: 0.78rem;
  pointer-events: none; /* whole bar is the click target */
}

.sticky-buy.copied .sticky-buy-action {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.35);
}

/* ---- Footer ---- */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.25rem, 5vw, 4rem) calc(5rem + env(safe-area-inset-bottom, 0px));
  background: #000;
}

@media (max-width: 400px) {
  .sticky-buy-info strong {
    font-size: 0.95rem;
  }

  .sticky-buy .sticky-buy-action {
    padding: 0.65rem 0.9rem;
    font-size: 0.72rem;
  }
}

@media (pointer: coarse) {
  .sticky-buy {
    cursor: pointer;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  background: var(--pitviper);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

/* ---- Glitch effect ---- */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip-path: inset(0 0 50% 0);
  animation: glitch-top 2.5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: 2px 0 var(--neon-pink);
  clip-path: inset(50% 0 0 0);
  animation: glitch-bot 2s infinite linear alternate-reverse;
}

@keyframes glitch-top {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
  96% { transform: translate(-2px, 0); }
}

@keyframes glitch-bot {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(3px, 0); }
  93% { transform: translate(-3px, 1px); }
  95% { transform: translate(2px, -1px); }
}

@keyframes glitch-skew {
  0%, 90%, 100% { transform: skew(0deg); }
  92% { transform: skew(1deg); }
  94% { transform: skew(-1deg); }
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* Stagger children */
.lore-cards .reveal:nth-child(1) { transition-delay: 0s; }
.lore-cards .reveal:nth-child(2) { transition-delay: 0.12s; }
.lore-cards .reveal:nth-child(3) { transition-delay: 0.24s; }
.token-cards .reveal:nth-child(1) { transition-delay: 0s; }
.token-cards .reveal:nth-child(2) { transition-delay: 0.08s; }
.token-cards .reveal:nth-child(3) { transition-delay: 0.16s; }
.token-cards .reveal:nth-child(4) { transition-delay: 0.24s; }
.howto-steps .reveal:nth-child(1) { transition-delay: 0s; }
.howto-steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.howto-steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.howto-steps .reveal:nth-child(4) { transition-delay: 0.3s; }

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

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-portrait {
    width: min(70%, 280px);
  }

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

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

  .ca-box {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .scroll-hint {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .btn-ca-nav .btn-ca-short {
    display: none;
  }

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

  .about-visual {
    max-width: 360px;
    margin: 0 auto;
  }

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

  .stat-divider {
    display: none;
  }

  .floating-tag {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav-actions .btn-primary {
    display: none;
  }

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

  .hero-title-line {
    font-size: clamp(4rem, 22vw, 6rem);
  }
}

/* Reduced motion */
@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;
  }
}
