/* ============================================================
   USDC — design tokens
   ============================================================ */
:root {
  --blue: #2775CA;
  --blue-bright: #4DA3FF;
  --blue-light: #BFE1FF;
  --navy: #071321;
  --black: #03080F;
  --white: #FFFFFF;
  --gold: #E8B84B;

  --font-display: 'Fredoka', ui-rounded, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'SFMono-Regular', monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-card: 0 14px 30px rgba(3, 8, 15, 0.35);
  --shadow-pop: 0 6px 0 rgba(3, 8, 15, 0.9);

  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  line-height: 1.05;
}

p { margin: 0 0 1em; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--blue-bright);
  color: var(--black);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--blue-bright);
  text-transform: uppercase;
  margin: 0 0 10px;
  font-weight: 600;
}
.eyebrow.center { text-align: center; }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  color: var(--white);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-title.center { text-align: center; }

.section-sub {
  font-size: 1.05rem;
  color: var(--blue-light);
  max-width: 560px;
}
.section-sub.center { margin: 0 auto 40px; text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 15px 26px;
  border-radius: 999px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(3px) scale(0.98); }

.btn-primary {
  background: var(--blue-bright);
  color: var(--black);
  box-shadow: 0 5px 0 #1c6ab0;
}
.btn-primary:hover { background: #62b3ff; }
.btn-primary:active { box-shadow: 0 2px 0 #1c6ab0; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--blue);
  box-shadow: 0 5px 0 rgba(39, 117, 202, 0.4);
}
.btn-secondary:hover { background: rgba(39, 117, 202, 0.18); }
.btn-secondary:active { box-shadow: 0 2px 0 rgba(39, 117, 202, 0.4); }

.btn-large { padding: 18px 34px; font-size: 1.08rem; }
.btn-small { padding: 10px 18px; font-size: 0.85rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(3, 8, 15, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(77, 163, 255, 0.15);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 6px;
  margin-left: -6px;
  border-radius: 12px;
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.08); }
.logo-icon {
  width: 36px; height: 36px;
  object-fit: contain;
  transition: transform 0.2s ease;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.main-nav { display: flex; gap: 22px; margin-left: 12px; flex: 1; }
.main-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--blue-light);
  opacity: 0.85;
}
.main-nav a:hover { opacity: 1; color: var(--blue-bright); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.icon-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--blue-light);
  width: 38px; height: 38px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.icon-btn:hover { background: rgba(255,255,255,0.14); }
.icon-sound-off { display: block; }
.icon-sound-on { display: none; }
.icon-btn[aria-pressed="true"] .icon-sound-off { display: none; }
.icon-btn[aria-pressed="true"] .icon-sound-on { display: block; }

.text-btn {
  width: auto;
  border-radius: 999px;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 20px;
  background: var(--navy);
  border-top: 1px solid rgba(77,163,255,0.15);
}
.mobile-nav a, .mobile-nav .btn { padding: 12px 6px; text-decoration: none; font-weight: 700; color: var(--blue-light); }
.mobile-nav .btn { margin-top: 8px; text-align: center; color: var(--black); }
.mobile-nav.open { display: flex; }

@media (max-width: 900px) {
  .main-nav, .header-actions .text-btn, .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
}

/* ============================================================
   Scroll progress (5-stage indicator)
   ============================================================ */
.scroll-progress {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-progress-track {
  width: 4px;
  height: 220px;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  position: relative;
  order: 2;
}
.scroll-progress-fill {
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue));
  border-radius: 4px;
  transition: height 0.15s linear;
}
.scroll-progress-stages {
  display: none;
}
@media (max-width: 1180px), (max-height: 700px) {
  .scroll-progress { display: none; }
}

/* ============================================================
   Intro overlay
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease;
}
.intro[hidden] { display: none; }
.intro.fading { opacity: 0; pointer-events: none; }

.intro-skip {
  position: absolute;
  top: 22px; right: 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  z-index: 2;
}
.intro-skip:hover { background: rgba(255,255,255,0.18); }

.intro-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
  padding: 0 20px;
}
.intro-img {
  height: min(30vh, 260px);
  width: auto;
  object-fit: contain;
  animation: introPop 0.5s ease;
  filter: drop-shadow(0 20px 40px rgba(39,117,202,0.35));
}
@keyframes introPop {
  0% { transform: scale(0.6); opacity: 0; }
  60% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); }
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: var(--white);
  letter-spacing: 0.01em;
  margin: 0;
}
.intro-dots { display: flex; gap: 10px; }
.intro-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s ease, transform 0.2s ease;
}
.intro-dots span.active { background: var(--blue-bright); transform: scale(1.3); }

.intro-finale {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 40%, rgba(39,117,202,0.35), var(--black) 70%);
  gap: 14px;
  padding: 0 20px;
}
.intro-finale.show { display: flex; }
.intro-finale-name {
  font-size: clamp(2.2rem, 9vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1em;
}
.intro-finale-name span:nth-child(1) { color: var(--blue-bright); }
.intro-finale-name span:nth-child(2) { color: var(--blue-light); }
.intro-finale-name span:nth-child(3) { color: var(--white); }
.intro-finale-ticker {
  font-family: var(--font-mono);
  color: var(--blue-bright);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.08em;
}
.intro-finale-line {
  color: var(--blue-light);
  font-size: 1rem;
  max-width: 420px;
}

/* ============================================================
   Paw prints + bats (micro interactions)
   ============================================================ */
.paw-layer, .bat-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.paw-print {
  position: absolute;
  width: 14px; height: 14px;
  background: var(--blue-bright);
  opacity: 0.5;
  border-radius: 50% 50% 50% 60%;
  animation: pawFade 1s ease forwards;
}
@keyframes pawFade {
  to { opacity: 0; transform: scale(0.6); }
}
.stray-bat {
  position: absolute;
  font-size: 22px;
  animation: batFly 6s linear forwards;
  opacity: 0.85;
}
@keyframes batFly {
  from { transform: translateX(-10vw) translateY(0) scaleX(1); }
  to { transform: translateX(110vw) translateY(-40px) scaleX(1); }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 56px 0 0;
  background:
    radial-gradient(ellipse 900px 500px at 80% -10%, rgba(39,117,202,0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 0% 20%, rgba(77,163,255,0.14), transparent 60%),
    var(--black);
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
}
.hl-blue { color: var(--blue-bright); }
.hero-sub {
  color: var(--blue-light);
  font-size: 1.1rem;
  max-width: 480px;
  margin-top: 18px;
}
.hero-ticker-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-weight: 700;
  background: rgba(39,117,202,0.22);
  border: 1px solid var(--blue);
  color: var(--blue-bright);
  padding: 8px 16px;
  border-radius: 999px;
  margin-top: 18px;
  letter-spacing: 0.05em;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.watch-origin-link {
  display: block;
  width: max-content;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ca-bar {
  margin-top: 22px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px dashed rgba(77,163,255,0.5);
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  max-width: 100%;
  flex-wrap: wrap;
}
.ca-label { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue-bright); font-weight: 700; }
.ca-value {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--white);
  opacity: 0.85;
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-copy {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
}
.ca-copy:hover { background: var(--blue-bright); color: var(--black); }
.ca-copy-confirm {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: var(--blue-bright);
  color: var(--black);
  border-radius: 999px;
}
.ca-copy.copied .ca-copy-label { visibility: hidden; }
.ca-copy.copied .ca-copy-confirm { display: flex; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-blob {
  position: absolute;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(77,163,255,0.35), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}
.hero-hat-hitbox {
  position: relative;
  z-index: 1;
  cursor: pointer;
  animation: heroFloat 4.5s ease-in-out infinite;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 4px solid var(--blue-bright);
  transform: rotate(-2deg);
  box-shadow: 0 26px 50px rgba(0,0,0,0.5);
}
.hero-hat-hitbox::before {
  content: "";
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 64px; height: 26px;
  background: rgba(191,225,255,0.55);
  border: 1px solid rgba(255,255,255,0.6);
}
@keyframes heroFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-16px); }
}
.hero-character {
  width: min(390px, 76vw);
  border-radius: calc(var(--radius-lg) - 10px);
  display: block;
}

.marquee {
  margin-top: 56px;
  border-top: 1px solid rgba(77,163,255,0.2);
  border-bottom: 1px solid rgba(77,163,255,0.2);
  background: rgba(39,117,202,0.1);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-bright);
  padding-right: 4px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: left; padding-top: 20px; }
  .hero-visual { order: -1; margin-bottom: 10px; }
  .hero-character { width: min(320px, 70vw); }
}

/* ============================================================
   Origin / Lore
   ============================================================ */
.origin { padding: 100px 0; background: var(--navy); position: relative; }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.origin-copy p { color: var(--blue-light); font-size: 1.02rem; }
.origin-punch { color: var(--white); font-weight: 700; font-size: 1.2rem; font-family: var(--font-display); }
.origin-post-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(77,163,255,0.35);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 18px 0;
  color: var(--white);
  font-weight: 600;
  transition: background 0.15s ease;
}
.origin-post-card:hover { background: rgba(39,117,202,0.18); }
.origin-post-icon { color: var(--blue-bright); flex-shrink: 0; }
.origin-post-arrow { margin-left: auto; color: var(--blue-bright); font-size: 1.3rem; }

.disclaimer {
  font-size: 0.85rem;
  color: rgba(191,225,255,0.65);
  border-left: 3px solid var(--blue);
  padding-left: 14px;
  margin-top: 20px;
}

.origin-visual { position: relative; }
.origin-banner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77,163,255,0.25);
  box-shadow: var(--shadow-card);
}

@media (max-width: 900px) {
  .origin-grid { grid-template-columns: 1fr; }
  .origin-visual { order: -1; }
}

/* ============================================================
   Build-A-Beast
   ============================================================ */
.build {
  position: relative;
  padding: 110px 0;
  background: var(--black);
  overflow: hidden;
}
.build-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
  margin: 46px 0 34px;
}
.build-character-wrap {
  background: radial-gradient(ellipse at 50% 30%, rgba(39,117,202,0.28), transparent 65%), #0A0D14;
  border: 1px solid rgba(77,163,255,0.25);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 40px 20px;
  min-height: 320px;
}
.build-character {
  height: 220px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(.34,1.56,.64,1);
}
.build-character.pop { animation: buildPop 0.5s cubic-bezier(.34,1.56,.64,1); }
@keyframes buildPop {
  0% { transform: scale(0.7) rotate(-6deg); }
  60% { transform: scale(1.15) rotate(3deg); }
  100% { transform: scale(1) rotate(0); }
}
.build-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue-light);
  margin: 0;
  text-align: center;
}

.build-board {
  background: repeating-linear-gradient(135deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 14px), rgba(191,225,255,0.03);
  border: 2px dashed rgba(77,163,255,0.3);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.build-board-hint {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(191,225,255,0.6);
  margin: 0 0 14px;
}
.build-board-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: flex-start;
  flex: 1;
}
.board-photo {
  background: var(--white);
  padding: 8px 8px 22px;
  border-radius: 6px;
  width: 108px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
  position: relative;
  animation: pinDrop 0.4s ease;
}
@keyframes pinDrop {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 0; }
  100% { opacity: 1; }
}
.board-photo img { width: 100%; height: 80px; object-fit: contain; }
.board-photo span {
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--black);
  letter-spacing: 0.05em;
}
.board-photo::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(-8deg);
  width: 30px; height: 14px;
  background: rgba(77,163,255,0.7);
  opacity: 0.85;
}

.build-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.build-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  background: var(--navy);
  border: 2px solid var(--blue);
  color: var(--white);
  padding: 14px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}
.build-btn:hover:not(:disabled) { background: var(--blue); }
.build-btn:active:not(:disabled) { transform: scale(0.96); }
.build-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.build-btn.done { background: var(--blue-bright); color: var(--black); border-color: var(--blue-bright); }

.build-complete {
  text-align: center;
  margin-top: 40px;
  padding: 34px 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(39,117,202,0.25), transparent);
  border: 1px solid rgba(77,163,255,0.35);
}
.build-complete-tag {
  font-family: var(--font-mono);
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 6px;
}
.build-complete h3 {
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  margin-bottom: 20px;
}
.build-complete-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 150;
}

.fat-mode-banner {
  position: fixed;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 3rem);
  color: var(--blue-bright);
  background: rgba(3,8,15,0.85);
  border: 2px solid var(--blue-bright);
  padding: 20px 34px;
  border-radius: var(--radius-lg);
  z-index: 160;
  text-align: center;
}
.shake { animation: shakeScreen 0.5s ease; }
@keyframes shakeScreen {
  0%, 100% { transform: translate(0,0); }
  20% { transform: translate(-6px, 4px); }
  40% { transform: translate(6px, -4px); }
  60% { transform: translate(-4px, 6px); }
  80% { transform: translate(4px, -6px); }
}

@media (max-width: 800px) {
  .build-stage { grid-template-columns: 1fr; }
}

/* ============================================================
   Why this meme
   ============================================================ */
.why { padding: 100px 0; background: var(--navy); }
.why-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 4px 26px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.why-scroll::-webkit-scrollbar { height: 8px; }
.why-scroll::-webkit-scrollbar-thumb { background: rgba(77,163,255,0.4); border-radius: 8px; }

.why-card {
  scroll-snap-align: start;
  flex: 0 0 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(77,163,255,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
}
.why-card:nth-child(odd) { transform: rotate(-1.2deg); }
.why-card:nth-child(even) { transform: rotate(1.2deg); }
.why-word {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--blue-bright);
  margin-bottom: 10px;
}
.why-card p:last-child { color: var(--blue-light); margin: 0; font-size: 0.95rem; }

.why-close {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: var(--white);
  max-width: 520px;
  margin: 20px auto 0;
}

/* ============================================================
   Bull case
   ============================================================ */
.bull { padding: 100px 0; background: var(--black); }
.bull-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.bull-item {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--blue-bright);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 22px 26px;
}
.bull-item h3 {
  font-size: 1.08rem;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 600;
}
.bull-item p { color: var(--blue-light); margin: 0; font-size: 0.95rem; }

@media (max-width: 800px) {
  .bull-list { grid-template-columns: 1fr; }
}

/* ============================================================
   Meme gallery
   ============================================================ */
.gallery { padding: 100px 0; background: var(--navy); }
.gallery-viewer {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.gallery-arrow {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(77,163,255,0.3);
  color: var(--white);
  width: 46px; height: 46px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.gallery-arrow:hover { background: var(--blue); }

.gallery-main { text-align: center; }
.gallery-figure-btn {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(77,163,255,0.25);
  border-radius: var(--radius-lg);
  padding: 14px;
  cursor: zoom-in;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}
.gallery-img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: var(--radius-md);
}
.gallery-img.img-pop { animation: galleryPop 0.16s ease; }
@keyframes galleryPop {
  from { opacity: 0.5; transform: scale(0.985); }
  to { opacity: 1; transform: scale(1); }
}
.gallery-caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue-light);
  margin: 18px 0 6px;
}
.gallery-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}
.gallery-counter {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: rgba(191,225,255,0.6);
  margin-right: 6px;
}
.gallery-tool-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(77,163,255,0.3);
  color: var(--blue-light);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}
.gallery-tool-btn:hover { background: var(--blue); color: var(--white); }

.gallery-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 30px 4px 4px;
}
.gallery-thumb {
  flex: 0 0 auto;
  width: 68px; height: 68px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--blue-bright); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3,8,15,0.94);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 640px) {
  .gallery-viewer { grid-template-columns: 40px 1fr 40px; }
  .gallery-arrow { width: 38px; height: 38px; }
}

/* ============================================================
   Community
   ============================================================ */
.community { padding: 100px 0; background: var(--black); }
.community-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.community-copy p { color: var(--blue-light); font-size: 1.05rem; max-width: 460px; }
.community-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.community-visual img {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77,163,255,0.25);
}

@media (max-width: 900px) {
  .community-grid { grid-template-columns: 1fr; }
  .community-visual { order: -1; }
}

/* ============================================================
   Token details
   ============================================================ */
.token { padding: 100px 0; background: var(--navy); }
.token-table {
  max-width: 640px;
  margin: 40px auto 20px;
  border: 1px solid rgba(77,163,255,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.token-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 26px;
  border-bottom: 1px solid rgba(77,163,255,0.15);
}
.token-row:last-child { border-bottom: none; }
.token-row dt {
  font-family: var(--font-mono);
  color: var(--blue-bright);
  font-size: 0.85rem;
  font-weight: 700;
}
.token-row dd {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: var(--white);
  text-align: right;
}
.token-note {
  text-align: center;
  color: rgba(191,225,255,0.6);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 100px 0; background: var(--black); }
.faq-list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(77,163,255,0.2);
  border-radius: var(--radius-md);
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--blue-bright);
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--blue-light); padding-bottom: 18px; margin: 0; }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 130px 0 110px;
  background: linear-gradient(180deg, var(--navy), var(--black));
  text-align: center;
  overflow: hidden;
}
.final-cta-img {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 340px;
  opacity: 0.9;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transform: rotate(6deg);
}
.final-cta-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.final-cta h2 { font-size: clamp(2.2rem, 6vw, 3.6rem); }
.final-cta-sub {
  font-family: var(--font-mono);
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  font-size: 1.05rem;
  margin-top: 12px;
}
.final-cta-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 30px; }
.final-cta-line { margin-top: 26px; color: rgba(191,225,255,0.6); font-size: 0.92rem; }

@media (max-width: 700px) {
  .final-cta-img { width: 200px; right: -30px; bottom: -20px; opacity: 0.5; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--black); border-top: 1px solid rgba(77,163,255,0.15); padding: 50px 0 34px; }
.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 20px; }
.footer-logo { width: 30px; height: 30px; object-fit: contain; }
.footer-brand p { margin: 0; font-family: var(--font-display); font-weight: 600; }
.footer-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.footer-links a, .footer-link-btn {
  color: var(--blue-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.footer-links a:hover, .footer-link-btn:hover { color: var(--blue-bright); }
.footer-disclaimer, .footer-risk {
  max-width: 640px;
  margin: 0 auto 10px;
  font-size: 0.78rem;
  color: rgba(191,225,255,0.5);
}
.footer-line {
  margin-top: 18px;
  font-family: var(--font-display);
  color: var(--blue-bright);
  font-size: 0.95rem;
}

/* ============================================================
   Toast
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--blue-bright);
  color: var(--black);
  font-weight: 700;
  font-family: var(--font-display);
  padding: 12px 22px;
  border-radius: 999px;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
