/* ============================================
   $SLOP — Brain-Melting Slop Experience
   ============================================ */

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

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --gray-950: #0a0a0a;

  --neon-green: #39ff14;
  --neon-pink: #ff2d95;
  --neon-blue: #00f0ff;
  --neon-yellow: #fffe00;
  --neon-purple: #bf00ff;
  --neon-orange: #ff6600;

  --font-bubble: 'Baloo 2', cursive;
  --font-body: 'Nunito', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   BACKGROUND BLOBS
   ============================================ */
.blobs {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  background: var(--white);
}

.blob-1 {
  width: 600px; height: 600px;
  top: -150px; right: -150px;
  opacity: 0.04;
  animation: blobFloat1 14s ease-in-out infinite;
}
.blob-2 {
  width: 500px; height: 500px;
  bottom: 5%; left: -120px;
  opacity: 0.03;
  animation: blobFloat2 18s ease-in-out infinite;
}
.blob-3 {
  width: 450px; height: 450px;
  top: 40%; left: 40%;
  opacity: 0.035;
  animation: blobFloat3 12s ease-in-out infinite;
}
.blob-4 {
  width: 350px; height: 350px;
  top: 60%; right: 10%;
  opacity: 0.025;
  animation: blobFloat1 16s ease-in-out infinite reverse;
}
.blob-5 {
  width: 300px; height: 300px;
  top: 20%; left: 15%;
  opacity: 0.03;
  animation: blobFloat2 20s ease-in-out infinite reverse;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-80px, 100px) scale(1.2); }
  66% { transform: translate(60px, -60px) scale(0.9); }
}
@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -80px) scale(1.15); }
  66% { transform: translate(-60px, 60px) scale(0.85); }
}
@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.4); }
}

/* ============================================
   HERO DECOR — badges + thumbnails ON the hero
   ============================================ */
.hero-decor {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.slop-badge {
  position: absolute;
  font-family: var(--font-bubble);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  opacity: 0.65;
  animation: badgeSpin 8s linear infinite;
  z-index: 3;
  white-space: nowrap;
  background: var(--white);
  color: var(--black);
  border: 2px solid rgba(255,255,255,0.3);
}

.hb-1 { top: 15%; left: 6%; animation-delay: 0s; }
.hb-2 { top: 22%; right: 8%; animation-delay: 0.8s; }
.hb-3 { bottom: 30%; left: 4%; animation-delay: 1.6s; }
.hb-4 { bottom: 18%; right: 5%; animation-delay: 2.4s; }
.hb-5 { top: 35%; right: 12%; animation-delay: 3.2s; }
.hb-6 { bottom: 35%; left: 10%; animation-delay: 4s; }

.slop-thumb {
  position: absolute;
  width: 140px;
  height: auto;
  border-radius: 12px;
  border: 3px solid rgba(255,255,255,0.15);
  opacity: 0.45;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: thumbFloat 7s ease-in-out infinite;
}

.ht-1 { top: 12%; left: 3%; transform: rotate(-12deg); animation-delay: 0s; width: 130px; }
.ht-2 { top: 18%; right: 4%; transform: rotate(8deg); animation-delay: 1.2s; width: 120px; }
.ht-3 { bottom: 22%; right: 6%; transform: rotate(-6deg); animation-delay: 0.6s; width: 140px; }
.ht-4 { bottom: 15%; left: 5%; transform: rotate(10deg); animation-delay: 1.8s; width: 110px; }

.st-1 { top: 8%; left: 3%; transform: rotate(-8deg); animation-delay: 0s; width: 120px; }
.st-2 { bottom: 10%; right: 4%; transform: rotate(6deg); animation-delay: 1s; width: 150px; }
.st-3 { top: 12%; right: 3%; transform: rotate(10deg); animation-delay: 0.5s; width: 130px; }
.st-4 { bottom: 8%; left: 4%; transform: rotate(-12deg); animation-delay: 1.5s; width: 110px; }
.st-5 { top: 6%; left: 2%; transform: rotate(5deg); animation-delay: 0.3s; width: 135px; }
.st-6 { bottom: 6%; right: 3%; transform: rotate(-7deg); animation-delay: 1.2s; width: 125px; }
.st-7 { top: 10%; right: 5%; transform: rotate(-9deg); animation-delay: 0.8s; width: 115px; }
.st-8 { bottom: 12%; left: 3%; transform: rotate(11deg); animation-delay: 2s; width: 145px; }

@keyframes badgeSpin {
  0%   { transform: rotate(-3deg) scale(1); }
  25%  { transform: rotate(3deg) scale(1.05); }
  50%  { transform: rotate(-2deg) scale(1); }
  75%  { transform: rotate(4deg) scale(1.03); }
  100% { transform: rotate(-3deg) scale(1); }
}

@keyframes thumbFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  33% { transform: translateY(-12px) rotate(var(--r, 0deg)); }
  66% { transform: translateY(6px) rotate(var(--r, 0deg)); }
}

/* ============================================
   SECTION DECOR (smaller sections)
   ============================================ */
.section-decor {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

/* ============================================
   SECTION BACKGROUND IMAGES
   ============================================ */
.section-bg {
  position: relative;
}

.section-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0.12;
}

.section-bg-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--black) 0%, rgba(0,0,0,0.7) 50%, var(--black) 100%);
  z-index: 1;
}

.section-bg .container {
  position: relative;
  z-index: 4;
}

/* ============================================
   HERO DIVIDER — hard cut between hero and content
   ============================================ */
.hero-divider {
  position: relative;
  z-index: 10;
  height: 6px;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-pink), var(--neon-blue), var(--neon-yellow), var(--neon-purple), var(--neon-green));
  background-size: 300% 100%;
  animation: dividerShift 4s linear infinite;
  box-shadow: 0 0 20px rgba(57,255,20,0.4), 0 0 40px rgba(255,45,149,0.3);
}

@keyframes dividerShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ============================================
   HERO BACKGROUND IMAGE
   ============================================ */
.hero {
  position: relative;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('hero-bg.png') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

/* ============================================
   NAVIGATION — fully transparent
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 2rem;
  background: transparent;
  border-bottom: none;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-bubble);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  transform: scale(1.1);
}

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

.nav-socials a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-socials a:hover {
  color: var(--white);
  transform: scale(1.2) rotate(-10deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-family: var(--font-bubble);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 60px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: scale(1.08) translateY(-3px);
}

.btn-x {
  gap: 0;
  padding: 0;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  border: none;
  background: var(--white);
  color: var(--black);
}

.btn-x:hover {
  background: var(--gray-200);
  color: var(--black);
  transform: scale(1.12) translateY(-3px);
}

.btn-x svg {
  fill: currentColor;
}

.btn-lg {
  padding: 1.25rem 3.5rem;
  font-size: 1.1rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-shadow: 0 2px 30px rgba(0,0,0,0.6);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeSlideDown 0.8s ease-out both;
}

.hero-title {
  font-family: var(--font-bubble);
  font-size: clamp(4rem, 14vw, 10rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 0.02em;
  color: var(--white);
}

.bounce-letter {
  display: inline-block;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--i) * 0.07s);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.3s ease;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.8), 6px 6px 0 rgba(0,0,0,0.4), 0 0 40px rgba(0,0,0,0.6);
}

.bounce-letter:hover {
  transform: scale(1.25) rotate(-10deg);
  text-shadow: 4px 4px 0 rgba(0,0,0,0.9), 8px 8px 0 rgba(0,0,0,0.4), 0 0 60px rgba(0,0,0,0.7);
}

@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(80px) scale(0.3) rotate(20deg); }
  60% { opacity: 1; transform: translateY(-15px) scale(1.1) rotate(-5deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}

@keyframes fadeSlideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  animation: fadeSlideDown 0.8s ease-out 0.6s both;
}

.hero-ca {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--black);
  background: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  animation: fadeSlideDown 0.8s ease-out 0.8s both;
  transition: background 0.3s ease;
}

.hero-ca:hover {
  background: var(--gray-200);
}

.hero-ca-label {
  color: var(--black);
  font-weight: 700;
}

.hero-ca-address {
  color: var(--gray-700);
}

.copy-btn {
  background: none;
  border: none;
  color: var(--gray-600);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.copy-btn:hover {
  color: var(--black);
  transform: scale(1.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 700;
  animation: fadeSlideDown 0.8s ease-out 1s both;
  z-index: 5;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ============================================
   SECTIONS — base
   ============================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.section-dark {
  background: var(--gray-950);
}

.section-dark .section-bg-overlay {
  background: linear-gradient(180deg, var(--gray-950) 0%, rgba(10,10,10,0.75) 50%, var(--gray-950) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-family: var(--font-bubble);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}

.section-body {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.highlight-text {
  font-family: var(--font-bubble);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 3rem;
}

.center-text {
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   GLITCH EFFECT ON SECTION TITLES
   ============================================ */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch::before {
  color: var(--neon-pink);
  animation: glitchBefore 3s infinite linear;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  z-index: -1;
}

.glitch::after {
  color: var(--neon-blue);
  animation: glitchAfter 3s infinite linear;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  z-index: -1;
}

@keyframes glitchBefore {
  0%   { transform: translate(0); }
  2%   { transform: translate(3px, -2px); }
  4%   { transform: translate(-3px, 2px); }
  6%   { transform: translate(0); }
  20%  { transform: translate(0); }
  22%  { transform: translate(-4px, 1px); }
  24%  { transform: translate(4px, -1px); }
  26%  { transform: translate(0); }
  48%  { transform: translate(0); }
  50%  { transform: translate(2px, 3px); }
  52%  { transform: translate(-2px, -3px); }
  54%  { transform: translate(0); }
  100% { transform: translate(0); }
}

@keyframes glitchAfter {
  0%   { transform: translate(0); }
  3%   { transform: translate(-2px, 3px); }
  5%   { transform: translate(2px, -3px); }
  7%   { transform: translate(0); }
  30%  { transform: translate(0); }
  32%  { transform: translate(3px, 2px); }
  34%  { transform: translate(-3px, -2px); }
  36%  { transform: translate(0); }
  60%  { transform: translate(0); }
  62%  { transform: translate(-3px, -1px); }
  64%  { transform: translate(3px, 1px); }
  66%  { transform: translate(0); }
  100% { transform: translate(0); }
}

/* ============================================
   SLOP ZONE — brain-melting section animations
   ============================================ */
.slop-zone {
  animation: slopHue 12s linear infinite;
}

@keyframes slopHue {
  0%   { filter: hue-rotate(0deg); }
  25%  { filter: hue-rotate(15deg); }
  50%  { filter: hue-rotate(-10deg); }
  75%  { filter: hue-rotate(20deg); }
  100% { filter: hue-rotate(0deg); }
}

.slop-zone .section-title {
  animation: titlePulse 2s ease-in-out infinite alternate;
}

@keyframes titlePulse {
  0% { text-shadow: 0 0 10px rgba(255,45,149,0.3), 0 0 30px rgba(0,240,255,0.2); }
  100% { text-shadow: 0 0 20px rgba(57,255,20,0.5), 0 0 60px rgba(191,0,255,0.3), 0 0 80px rgba(255,254,0,0.2); }
}

/* Narrative blocks — wild hover & entrance */
.slop-zone .narrative-block {
  animation: cardWobble 6s ease-in-out infinite;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.slop-zone .narrative-block:nth-child(1) { animation-delay: 0s; }
.slop-zone .narrative-block:nth-child(2) { animation-delay: 2s; }
.slop-zone .narrative-block:nth-child(3) { animation-delay: 4s; }

@keyframes cardWobble {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15% { transform: rotate(-1.5deg) scale(1.01); }
  30% { transform: rotate(1deg) scale(0.99); }
  45% { transform: rotate(-0.5deg) scale(1.02); }
  60% { transform: rotate(1.5deg) scale(1); }
  75% { transform: rotate(-1deg) scale(1.01); }
}

.slop-zone .narrative-block:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255,45,149,0.3), inset 0 0 30px rgba(255,45,149,0.05);
  transform: translateY(-10px) rotate(-2deg) scale(1.04);
  background: rgba(255,45,149,0.04);
}

/* Token cards — psycho hover */
.slop-zone .token-card {
  animation: cardFloat 5s ease-in-out infinite;
  transition: all 0.3s ease;
}

.slop-zone .token-card:nth-child(1) { animation-delay: 0s; }
.slop-zone .token-card:nth-child(2) { animation-delay: 1.25s; }
.slop-zone .token-card:nth-child(3) { animation-delay: 2.5s; }
.slop-zone .token-card:nth-child(4) { animation-delay: 3.75s; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(0.5deg); }
  50% { transform: translateY(4px) rotate(-0.5deg); }
  75% { transform: translateY(-3px) rotate(0.3deg); }
}

.slop-zone .token-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 40px rgba(57,255,20,0.3), inset 0 0 30px rgba(57,255,20,0.05);
  transform: translateY(-8px) scale(1.05) rotate(-1deg);
}

.slop-zone .token-card:hover .token-card-value {
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(57,255,20,0.6);
}

/* Steps — cascade in */
.slop-zone .step {
  animation: stepSlide 6s ease-in-out infinite;
  transition: all 0.3s ease;
}

.slop-zone .step:nth-child(1) { animation-delay: 0s; }
.slop-zone .step:nth-child(2) { animation-delay: 1.5s; }
.slop-zone .step:nth-child(3) { animation-delay: 3s; }
.slop-zone .step:nth-child(4) { animation-delay: 4.5s; }

@keyframes stepSlide {
  0%, 100% { transform: translateX(0) rotate(0deg); }
  20% { transform: translateX(4px) rotate(0.3deg); }
  40% { transform: translateX(-3px) rotate(-0.2deg); }
  60% { transform: translateX(2px) rotate(0.4deg); }
  80% { transform: translateX(-4px) rotate(-0.3deg); }
}

.slop-zone .step:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 30px rgba(0,240,255,0.3), inset 0 0 20px rgba(0,240,255,0.05);
  transform: translateY(-8px) scale(1.04) rotate(1deg);
  background: rgba(0,240,255,0.03);
}

.slop-zone .step:hover .step-icon {
  background: var(--neon-blue);
  color: var(--black);
  box-shadow: 0 0 20px rgba(0,240,255,0.5);
}

/* Stats — neon flash on hover */
.slop-zone .stat-value:hover {
  color: var(--neon-yellow);
  text-shadow: 0 0 20px rgba(255,254,0,0.5), 0 0 40px rgba(255,254,0,0.3);
}

/* ============================================
   SCANLINE OVERLAY for slop-zone sections
   ============================================ */
.slop-zone::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.015) 2px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
  z-index: 5;
  animation: scanDrift 10s linear infinite;
}

@keyframes scanDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(4px); }
}

/* ============================================
   STATS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  border-top: 1px solid var(--gray-800);
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.stat { text-align: center; }

.stat-value {
  font-family: var(--font-bubble);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: var(--white);
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

/* ============================================
   NARRATIVE BLOCKS
   ============================================ */
.narrative-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.narrative-block {
  padding: 2.5rem 2rem;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
}

.narrative-block h3 {
  font-family: var(--font-bubble);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.narrative-block p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-400);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-wrapper {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  position: relative;
  z-index: 1;
}

.marquee {
  display: flex;
  width: fit-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 18s linear infinite;
  white-space: nowrap;
  font-family: var(--font-bubble);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.marquee-dot {
  font-size: 0.6rem;
  opacity: 0.3;
}

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

/* ============================================
   TOKENOMICS GRID
   ============================================ */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.token-card {
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
}

.token-card-header {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.token-card-value {
  font-family: var(--font-bubble);
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--white);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.token-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   STEPS
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255,255,255,0.08);
  align-items: flex-start;
}

.step-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all 0.3s ease;
}

.step-content h3 {
  font-family: var(--font-bubble);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.step-content p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-400);
}

/* ============================================
   CTA SECTION — also gets the slop treatment
   ============================================ */
.cta-section {
  padding: 10rem 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-bubble);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  color: var(--white);
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gray-400);
  margin-bottom: 3rem;
  font-style: italic;
}

/* CTA slop-zone scanlines need higher z than the content */
.cta-section.slop-zone::after {
  z-index: 1;
}

/* ============================================
   VHS / NOISE FLICKER on scroll (via JS class)
   ============================================ */
.slop-glitch-flash {
  animation: glitchFlash 0.15s ease;
}

@keyframes glitchFlash {
  0%   { filter: hue-rotate(90deg) brightness(2) contrast(1.5); transform: translateX(3px); }
  30%  { filter: hue-rotate(-90deg) brightness(0.8) contrast(2); transform: translateX(-3px); }
  60%  { filter: hue-rotate(45deg) brightness(1.5) contrast(1.2); transform: translateX(2px); }
  100% { filter: none; transform: translateX(0); }
}

/* ============================================
   DISTORTION BAR — random color bar
   ============================================ */
.distortion-bar {
  position: fixed;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  animation: distortionFlash 0.2s ease forwards;
}

@keyframes distortionFlash {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .narrative-blocks { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-value { font-size: 2rem; }
  .tokenomics-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: row; }
  .hero-decor .slop-badge { font-size: 0.7rem; padding: 0.35rem 0.7rem; }
  .hero-decor .slop-thumb { width: 80px !important; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }
  .section { padding: 4.5rem 0; }
  .cta-section { padding: 6rem 0; }
  .narrative-block { padding: 1.5rem; }
  .token-card { padding: 1.5rem; }
  .stats-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .step { flex-direction: column; align-items: center; text-align: center; }
  .hero-decor .slop-badge { display: none; }
  .hero-decor .slop-thumb { width: 60px !important; opacity: 0.3; }
}
