/* ==========================================================================
   $PETERPEZ — The Clown of Robinhood Chain
   Refined Design System with Sky Blue Meme Background & Cohesive Aesthetics
   ========================================================================== */

:root {
  /* Brand colors extracted from Media/ */
  --pez-blue: #1877f2;
  --pez-blue-light: #219ff6;
  --pez-blue-dark: #0f52ab;
  --rh-acid: #ddef00;
  --rh-acid-dark: #b8c900;
  --pump-green: #00c805;
  --pump-green-dark: #009604;
  --circus-pink: #ff2a6d;
  --circus-yellow: #fed225;
  --circus-orange: #ff7a00;
  
  /* Sky Blue Meme Background & Paper Tokens */
  --site-bg: #e6f3fc;
  --site-bg-alt: #dbeefb;
  --paper: #edf7ff;
  --paper-card: #ffffff;
  --ink: #11141a;
  --ink-soft: #2d3340;
  --muted: #576175;
  --border-line: rgba(17, 20, 26, 0.16);
  
  /* Cohesive Vault & Staking Tokens (Harmonious with light theme) */
  --vault-bg: #dbeefb;
  --vault-card: #ffffff;
  --vault-border: #11141a;
  --vault-panel: #f2f8fe;
  --vault-accent: #d97706;
  --vault-gold: #b45309;
  
  /* Typography & Shadows */
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --mono: "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  --shadow-brutal: 4px 4px 0 var(--ink);
  --shadow-brutal-lg: 7px 7px 0 var(--ink);
  --shadow-acid: 4px 4px 0 var(--rh-acid);
  --shadow-blue: 4px 4px 0 var(--pez-blue);
  --max: 1260px;
}

/* Base reset & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  color: var(--ink);
  font-family: var(--sans);
  background-color: #d8edf8;
  background-image:
    linear-gradient(rgba(17, 20, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 26, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 10% 12%, rgba(221, 239, 0, 0.55), transparent 42%),
    radial-gradient(circle at 92% 20%, rgba(24, 119, 242, 0.38), transparent 45%),
    radial-gradient(circle at 12% 55%, rgba(24, 119, 242, 0.32), transparent 40%),
    radial-gradient(circle at 88% 68%, rgba(221, 239, 0, 0.5), transparent 42%),
    radial-gradient(circle at 50% 90%, rgba(24, 119, 242, 0.3), transparent 45%),
    linear-gradient(155deg, #eaf8be 0%, #c4e5fa 42%, #a3d4fa 75%, #d8f5a8 100%);
  background-size: 32px 32px, 32px 32px, auto, auto, auto, auto, auto, 100% 100%;
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
}

/* Subtle tactile texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  z-index: 1000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.2'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

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

::selection {
  background: var(--rh-acid);
  color: #000;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 800;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 20px;
}

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

.roaming-orb {
  position: absolute;
  width: clamp(140px, 18vw, 240px);
  height: clamp(140px, 18vw, 240px);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: floatOrb 22s ease-in-out infinite alternate;
}

.orb-1 {
  background: radial-gradient(circle, var(--rh-acid) 0%, transparent 70%);
  top: 8%;
  left: -4%;
}

.orb-2 {
  background: radial-gradient(circle, var(--pez-blue-light) 0%, transparent 70%);
  top: 48%;
  right: -4%;
  animation-delay: -7s;
  animation-duration: 26s;
}

.orb-3 {
  background: radial-gradient(circle, #7dd3fc 0%, transparent 70%);
  bottom: 8%;
  left: 20%;
  animation-delay: -14s;
  animation-duration: 20s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, 45px) scale(1.1); }
  100% { transform: translate(-25px, 70px) scale(0.95); }
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(230, 243, 252, 0.92);
  border-bottom: 2px solid var(--ink);
  box-shadow: 0 4px 18px rgba(24, 119, 242, 0.08);
}

.header-inner {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 950;
  letter-spacing: -0.03em;
  transition: transform 0.15s ease;
}
.brand:hover {
  transform: scale(1.02);
}

.brand-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 #ddef00;
  object-fit: cover;
  background: #fff;
}

.brand-info {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-sub {
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  color: #000;
  background: #ddef00;
  border: 1.5px solid var(--ink);
  padding: 1px 6px;
  border-radius: 5px;
  text-transform: uppercase;
  margin-top: 3px;
  display: inline-block;
  width: fit-content;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink);
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:active,
.site-nav a.active {
  background: #ddef00;
  color: #000000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  overflow: hidden;
  padding: 4px;
}

.social-circle-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.social-circle-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-circle-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--pez-blue);
  border-color: var(--pez-blue);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--pez-blue);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.header-cta img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 4px;
}

.header-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--pez-blue);
  background: var(--pez-blue);
  border-color: var(--pez-blue);
  color: #fff;
}

.header-cta svg {
  width: 16px;
  height: 16px;
  fill: var(--rh-acid);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

/* Sections & Structure */
main {
  position: relative;
  z-index: 1;
}

.section-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
  gap: 20px;
  flex-wrap: wrap;
}

.section-number {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  color: #000;
  background: #ddef00;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  margin-bottom: 10px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddef00;
  border: 2px solid var(--ink);
}

.eyebrow.blue::before {
  background: #ddef00;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--ink);
}

.section-intro {
  margin-top: 10px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.45;
}

/* Paper / Scrapbook Cards */
.paper {
  position: relative;
  background: var(--paper-card);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-brutal-lg);
  padding: clamp(22px, 3.5vw, 42px);
  clip-path: polygon(
    0 0, 100% 0, 100% 97%, 96% 99%, 91% 97%, 86% 99%, 81% 97%,
    75% 98%, 68% 96%, 60% 99%, 53% 97%, 45% 99%, 38% 97%, 31% 98%,
    24% 96%, 17% 99%, 10% 97%, 4% 99%, 0 97%
  );
}

.paper::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(var(--ink) 0.75px, transparent 0.75px);
  background-size: 6px 6px;
}

/* Tape, Pins & Paperclips */
.tape {
  position: absolute;
  width: 110px;
  height: 32px;
  background: rgba(221, 239, 0, 0.9);
  border: 1px dashed rgba(0, 0, 0, 0.25);
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.tape.tl {
  top: -14px;
  left: 20px;
  transform: rotate(-6deg);
}

.tape.tr {
  top: -14px;
  right: 20px;
  transform: rotate(5deg);
}

.tape.pink {
  background: rgba(255, 42, 109, 0.8);
}

.tape.blue {
  background: rgba(33, 159, 246, 0.8);
}

.pin {
  position: absolute;
  z-index: 12;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ef4444, #991b1b 75%, #000 100%);
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.3);
}

.pin::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 14px;
  background: #333;
  top: 15px;
  left: 9px;
  transform: rotate(10deg);
  opacity: 0.6;
}

.paperclip {
  position: absolute;
  width: 26px;
  height: 72px;
  border: 4px solid #4b5563;
  border-radius: 18px;
  opacity: 0.85;
  z-index: 11;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.65);
}

.paperclip.left {
  left: -12px;
  top: 36%;
  transform: rotate(-8deg);
}

.paperclip.right {
  right: -12px;
  top: 30%;
  transform: rotate(8deg);
}

/* Buttons */
.btn {
  appearance: none;
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-brutal);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-brutal-lg);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn-primary {
  background: var(--rh-acid);
  color: #000;
}
.btn-primary:hover {
  background: #e7fa1a;
}

.btn-blue {
  background: var(--pez-blue);
  color: #fff;
}
.btn-blue:hover {
  background: var(--pez-blue-light);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: #000;
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn .btn-icon-img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: contain;
  display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding: clamp(54px, 7vw, 84px) 0 clamp(44px, 7vw, 76px);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.hero-copy {
  transform: rotate(-1deg);
  z-index: 5;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-bottom: 8px;
  color: var(--ink);
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #ddef00;
  color: #000;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  border-radius: 999px;
  border: 2px solid var(--ink);
  margin-bottom: 14px;
}

.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.38;
  margin: 18px 0 24px;
  color: var(--ink-soft);
}

.highlight {
  background: linear-gradient(transparent 20%, var(--rh-acid) 20%, var(--rh-acid) 90%, transparent 90%);
  padding: 0 0.15em;
  font-weight: 800;
  color: #000;
}

.highlight-blue {
  background: linear-gradient(transparent 20%, rgba(33, 159, 246, 0.28) 20%, rgba(33, 159, 246, 0.28) 90%, transparent 90%);
  padding: 0 0.15em;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-platform-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.platform-pill {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 2px solid var(--ink);
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.platform-pill img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}

.platform-pill:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--pez-blue);
  border-color: var(--pez-blue);
  background: #fff;
}

/* Hero Stage / Character Area */
.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

.character-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
  background: radial-gradient(circle at center, #60a5fa 0%, #1e40af 100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.character-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.character-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.character-aura {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(221, 239, 0, 0.45) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  animation: pulseAura 4s ease-in-out infinite alternate;
}

@keyframes pulseAura {
  0% { opacity: 0.4; transform: scale(0.95); }
  100% { opacity: 0.85; transform: scale(1.08); }
}

/* Floating Badges on Character */
.stage-orbit-badge {
  position: absolute;
  padding: 8px 16px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  white-space: nowrap;
  animation: floatBadge 5s ease-in-out infinite alternate;
}

.orbit-badge-top {
  top: -12px;
  right: -10px;
  background: var(--rh-acid);
  color: #000;
  transform: rotate(4deg);
}

.orbit-badge-bottom {
  bottom: 20px;
  left: -14px;
  background: #fff;
  color: var(--ink);
  transform: rotate(-5deg);
  animation-delay: -2.5s;
}

@keyframes floatBadge {
  0% { transform: translateY(0) rotate(4deg); }
  100% { transform: translateY(-8px) rotate(6deg); }
}

.stage-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 8;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
  line-height: 1;
  padding-bottom: 3px;
  user-select: none;
}

.stage-nav-btn:hover {
  background: var(--pez-blue);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transform: translateY(-50%) scale(1.1);
}

.stage-nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.stage-nav-prev {
  left: 14px;
}

.stage-nav-next {
  right: 14px;
}

/* Character Mood Switcher Tabs */
.character-modes {
  display: flex;
  gap: 6px;
  margin-top: 18px;
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 4px 4px 0 var(--ink);
  position: relative;
  z-index: 6;
}

.mode-btn {
  appearance: none;
  border: 2px solid transparent;
  background: transparent;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.mode-btn:hover {
  color: #000;
  background: rgba(221, 239, 0, 0.35);
}

.mode-btn.active {
  background: #ddef00;
  color: #000000;
  border-color: #000000;
  box-shadow: 0 3px 10px rgba(221, 239, 0, 0.6);
}

/* Hero Side Column */
.hero-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 5;
}

.side-card {
  position: relative;
  background: #ffffff;
  border: 2.5px solid var(--ink);
  box-shadow: var(--shadow-brutal);
  padding: 24px 22px;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.side-card:hover {
  transform: rotate(1deg) scale(1.02);
  box-shadow: 6px 6px 0 var(--pez-blue);
}

.side-note {
  background: #fffbe8;
  border-color: var(--ink);
  transform: rotate(2deg);
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
}

.side-note:hover {
  transform: rotate(0.5deg) scale(1.02);
  box-shadow: 7px 7px 0 var(--pez-blue);
}

.note-pin {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff4d4d 0%, #dc2626 65%, #7f1d1d 100%);
  border: 2px solid var(--ink);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.35);
  z-index: 15;
}

.note-pin::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
}

.note-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  gap: 10px;
}

.note-header h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 950;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.cheer-dispenser-btn {
  appearance: none;
  background: var(--rh-acid);
  color: #000;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 5px 12px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 2px 2px 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cheer-dispenser-btn:hover {
  background: var(--pez-blue);
  color: #ffffff;
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(-1px, -1px);
}

.cheer-dispenser-btn:active {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.side-note p {
  font-size: 0.94rem;
  color: #4a3806;
  line-height: 1.48;
  font-weight: 500;
  min-height: 68px;
  transition: opacity 0.2s ease;
}

.cheer-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.68rem;
  color: #8c7324;
  font-weight: 700;
  border-top: 1px dashed rgba(140, 115, 36, 0.35);
  padding-top: 8px;
}

.side-quote {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--ink);
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--pez-blue);
}

.side-quote:hover {
  transform: rotate(-0.5deg) scale(1.02);
  box-shadow: 8px 8px 0 var(--pez-blue);
}

.side-quote .quote-kicker {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pez-blue);
  font-weight: 900;
  margin-bottom: 8px;
}

.side-quote .big-quote {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink);
}

.quote-source {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 700;
}

/* ==========================================================================
   MARQUEE BANNER
   ========================================================================== */
.marquee-wrap {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--rh-acid);
  overflow: hidden;
  user-select: none;
  padding: 14px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollTicker 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-right: 32px;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.96rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

.marquee-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000;
}

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

/* ==========================================================================
   LORE SECTION
   ========================================================================== */
.section {
  padding: clamp(52px, 8vw, 96px) 0;
  position: relative;
}

.lore-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.lore-card {
  transform: rotate(-0.5deg);
}

.lore-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.lore-card p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.lore-polaroids {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.polaroid-frame {
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-brutal);
  padding: 12px 12px 28px;
  border-radius: 6px;
  transition: transform 0.25s ease;
}

.polaroid-frame:nth-child(1) {
  transform: rotate(2deg);
}
.polaroid-frame:nth-child(2) {
  transform: rotate(-2.5deg);
}

.polaroid-frame:hover {
  transform: scale(1.03) rotate(0deg);
  z-index: 10;
  box-shadow: var(--shadow-brutal-lg);
}

.polaroid-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  margin-bottom: 12px;
}

.polaroid-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  text-align: center;
  color: var(--muted);
}

/* ==========================================================================
   COHESIVE BUYBACK VAULT & STAKING SECTION
   Matches the site palette with paper cards, clean borders, and gold accents
   ========================================================================== */
.vault-section {
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  position: relative;
}

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  position: relative;
  z-index: 2;
}

.vault-card {
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow-brutal-lg);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vault-card:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0 var(--ink);
}

.vault-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.vault-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 2px solid var(--ink);
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 3px 3px 0 var(--ink);
}

.vault-icon-circle.gold-bg {
  background: #fef3c7;
}

.vault-icon-circle.green-bg {
  background: #dcfce7;
}

.vault-icon-circle svg {
  width: 26px;
  height: 26px;
  fill: var(--ink);
}

.vault-card-title {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.vault-badge-tag {
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid var(--ink);
  display: inline-block;
  margin-top: 4px;
}

.vault-badge-tag.gold {
  background: #fef3c7;
  color: #92400e;
}

.vault-badge-tag.green {
  background: #dcfce7;
  color: #166534;
}

.vault-card-desc {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Vault Inner Stats Table */
.vault-stats-panel {
  background: var(--vault-panel);
  border: 2px dashed var(--border-line);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vault-stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(17, 20, 26, 0.08);
}
.vault-stat-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.vault-stat-label {
  color: var(--muted);
  font-weight: 600;
}

.vault-stat-val {
  font-family: var(--mono);
  font-weight: 800;
  color: var(--ink);
}

.vault-stat-val.gold {
  color: #b45309;
  font-size: 1.05rem;
}

.vault-stat-val.green {
  color: var(--pump-green-dark);
  font-weight: 900;
}

/* Interactive Staking Estimator */
.vault-calc-box {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 2px solid var(--border-line);
}

.calc-title {
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000;
  background: #ddef00;
  border: 1.5px solid var(--ink);
  padding: 3px 10px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 16px;
}

.calc-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.calc-slider-wrap label {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
}

.calc-slider-wrap label strong {
  color: var(--ink);
  font-family: var(--mono);
}

.calc-slider {
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e5f7b8;
  outline: none;
}

.calc-slider::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddef00;
  cursor: pointer;
  border: 2.5px solid var(--ink);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ddef00;
  cursor: pointer;
  border: 2.5px solid var(--ink);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
}

.calc-output {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--ink);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.88rem;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-output-val {
  font-family: var(--mono);
  font-weight: 950;
  color: #000;
  background: #ddef00;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1.5px solid var(--ink);
  font-size: 0.95rem;
}

/* ==========================================================================
   TOKENOMICS SECTION
   ========================================================================== */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.token-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-brutal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.token-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-brutal-lg);
}

.token-card .label {
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.token-card .value {
  font-family: var(--sans);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin: 10px 0;
}

.token-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.token-card.acid {
  background: var(--rh-acid);
}

.token-card.blue,
.token-card.green {
  background: #ddef00;
  color: #000;
}
.token-card.blue .label, .token-card.blue p, .token-card.blue .value,
.token-card.green .label, .token-card.green p, .token-card.green .value {
  color: #000;
}

.token-card.dark {
  background: var(--ink);
  color: #fff;
}
.token-card.dark .label, .token-card.dark p, .token-card.dark .value {
  color: #fff;
}

.stamp {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 2px dashed var(--ink);
  padding: 4px 8px;
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(12deg);
  opacity: 0.85;
}

.token-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: #ffffff;
  border: 2px dashed var(--border-line);
  border-radius: 12px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ==========================================================================
   HOW TO BUY SECTION
   ========================================================================== */
.buy-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 3.5vw, 44px);
  align-items: start;
}

.network-card {
  transform: rotate(-1deg);
}

.network-marks {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.network-logo-pill {
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 0.84rem;
  box-shadow: 2px 2px 0 var(--ink);
}

.network-details {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.network-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.network-row span {
  color: var(--muted);
  font-weight: 700;
}

.network-row strong {
  font-family: var(--mono);
  font-weight: 900;
  color: var(--ink);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  position: relative;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--shadow-brutal);
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.18s ease;
}

.step-card:hover {
  transform: translateX(4px);
  box-shadow: 6px 6px 0 var(--pez-blue);
}

.step-badge {
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 950;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--rh-acid);
  border: 2px solid var(--ink);
  display: grid;
  place-items: center;
  box-shadow: 2px 2px 0 var(--ink);
}

.step-content h3 {
  font-size: 1.08rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
}

.inline-link {
  color: var(--pez-blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================================
   COMMUNITY SECTION
   ========================================================================== */
.community-panel {
  background: #ddef00;
  border: 3px solid var(--ink);
  border-radius: 28px;
  padding: clamp(36px, 6vw, 68px) clamp(24px, 4vw, 56px);
  text-align: center;
  color: #000;
  box-shadow: 10px 10px 0 var(--ink);
  position: relative;
  overflow: hidden;
}

.community-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.community-panel h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin: 12px 0 16px;
  color: #000;
}

.community-panel p {
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 32px;
  color: #11141a;
  opacity: 0.95;
}

.community-social-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.community-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.95rem;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.community-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.community-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 60px 0 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 40px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 10px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 850;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--pez-blue);
  text-decoration: underline;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid var(--border-line);
  border-radius: 14px;
  padding: 20px;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.disclaimer-box strong {
  color: var(--ink);
}

.copyright {
  border-top: 1px solid var(--border-line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: #fff;
  border: 2px solid var(--rh-acid);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

/* ==========================================================================
   RESPONSIVE DESIGN & MOBILE DRAWER
   ========================================================================== */
@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-side {
    grid-column: span 2;
    flex-direction: row;
    gap: 20px;
  }
  .side-card {
    flex: 1;
  }
  .buy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    border-bottom-width: 2px;
  }
  .header-inner {
    min-height: 66px;
  }
  .brand-title {
    font-size: 1.15rem;
  }
  .brand-avatar {
    width: 40px;
    height: 40px;
  }
  .hero {
    padding: 36px 0 48px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-side {
    grid-column: span 1;
    flex-direction: column;
    gap: 20px;
  }
  .side-card {
    transform: none !important;
  }
  .hero-copy {
    transform: none !important;
  }
  .lore-grid, .buy-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(230, 243, 252, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--ink);
    padding: 20px 16px;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 999;
    gap: 8px;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    text-align: center;
    padding: 13px 18px;
    font-size: 1rem;
    font-weight: 850;
    border: 2px solid var(--ink);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 3px 3px 0 var(--ink);
    transition: all 0.15s ease;
  }
  .site-nav a:hover,
  .site-nav a:active {
    background: #ddef00;
    color: #000000;
    box-shadow: 3px 3px 0 var(--ink);
  }
  .header-socials, .header-cta {
    display: none;
  }
  .vault-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .section-shell {
    width: calc(100% - 24px);
  }
  .hero {
    padding: 24px 0 40px;
  }
  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.5rem);
    letter-spacing: -0.05em;
  }
  .hero-badge-tag {
    font-size: 0.68rem;
    padding: 4px 10px;
  }
  .hero-lede {
    font-size: 1.02rem;
    line-height: 1.45;
    margin: 14px 0 20px;
  }
  .paper {
    padding: 24px 16px;
    clip-path: polygon(
      0 0, 100% 0, 100% 98%, 95% 99%, 90% 98%, 85% 99%, 80% 98%,
      75% 99%, 70% 98%, 65% 99%, 60% 98%, 55% 99%, 50% 98%, 45% 99%,
      40% 98%, 35% 99%, 30% 98%, 25% 99%, 20% 98%, 15% 99%, 10% 98%, 5% 99%, 0 98%
    );
  }
  .button-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
  .hero-platform-grid {
    gap: 8px;
  }
  .platform-pill {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    padding: 5px;
  }
  .character-card {
    max-width: 320px;
    border-radius: 22px;
  }
  .stage-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }
  .stage-nav-prev {
    left: 8px;
  }
  .stage-nav-next {
    right: 8px;
  }
  .character-modes {
    width: 100%;
    max-width: 320px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3px;
    padding: 3px;
  }
  .mode-btn {
    padding: 8px 4px;
    font-size: 0.7rem;
    min-height: 38px;
  }
  .stage-orbit-badge {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
  .orbit-badge-top {
    top: -8px;
    right: -4px;
  }
  .orbit-badge-bottom {
    bottom: 12px;
    left: -4px;
  }
  .side-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .note-header h3 {
    font-size: 1.2rem;
  }
  .side-note p {
    font-size: 0.88rem;
    min-height: auto;
  }
  .side-quote .big-quote {
    font-size: 1.05rem;
  }
  .section {
    padding: 44px 0;
  }
  .section-title {
    font-size: 1.9rem;
  }
  .section-head {
    margin-bottom: 24px;
  }
  .polaroid-img {
    height: 200px;
  }
  .vault-card {
    padding: 22px 16px;
    border-radius: 18px;
  }
  .vault-card-title {
    font-size: 1.25rem;
  }
  .vault-stats-panel {
    padding: 14px 12px;
  }
  .vault-stat-row {
    font-size: 0.82rem;
  }
  .tokenomics-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .token-card {
    padding: 20px 16px;
    min-height: 140px;
  }
  .token-card .value {
    font-size: 2.1rem;
  }
  .network-card {
    transform: none;
    padding: 20px 16px;
  }
  .network-details {
    padding: 12px 14px;
    margin: 14px 0;
  }
  .network-row {
    font-size: 0.82rem;
  }
  .step-card {
    padding: 16px 14px;
    gap: 12px;
  }
  .step-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 0.95rem;
  }
  .step-content h3 {
    font-size: 0.98rem;
  }
  .step-content p {
    font-size: 0.85rem;
  }
  .community-panel {
    padding: 36px 16px;
    border-radius: 20px;
    box-shadow: 6px 6px 0 var(--ink);
  }
  .community-panel h2 {
    font-size: 1.85rem;
  }
  .community-panel p {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .community-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }
  .community-btn {
    width: 100%;
    padding: 12px 10px;
    font-size: 0.84rem;
    justify-content: center;
    gap: 6px;
  }
  .footer-brand {
    font-size: 1.4rem;
  }
  .footer-links {
    gap: 10px;
    font-size: 0.78rem;
  }
  .copyright {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 0.76rem;
  }
}
