/* ============================================
   1. VARIABLES / RESET
   ============================================ */
:root {
  --bg: #06010d;
  --bg-elevated: #0c0418;
  --purple: #9945ff;
  --purple-deep: #6a0dad;
  --purple-hot: #d122e3;
  --cyan: #00d1ff;
  --solana-green: #14f195;
  --yellow: #ffe600;
  --white: #ffffff;
  --text: #f2eef8;
  --text-muted: #a89bb8;
  --border: rgba(153, 69, 255, 0.28);
  --glow-purple: rgba(153, 69, 255, 0.55);
  --glow-cyan: rgba(0, 209, 255, 0.4);
  --font-display: Impact, "Arial Black", Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --header-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 4px;
  --radius-md: 10px;
  --max-w: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   2. BASE
   ============================================ */
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 1.25rem;
  z-index: 1;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}

.section__title .line {
  display: block;
}

.section__title .line--accent {
  background: linear-gradient(110deg, var(--purple) 0%, var(--cyan) 50%, var(--solana-green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  will-change: transform;
  isolation: isolate;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-out);
  z-index: -1;
}

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

.btn:hover {
  transform: scale(1.04);
}

.btn:active {
  transform: scale(0.98);
}

.btn.magnetic:hover,
.btn.magnetic:active {
  transform: none;
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

.btn:hover .btn__arrow {
  transform: translate(3px, -3px);
}

.btn--primary {
  background: linear-gradient(120deg, var(--purple) 0%, #7b2fff 40%, var(--cyan) 100%);
  color: var(--white);
  box-shadow: 0 0 24px var(--glow-purple), 0 0 48px rgba(0, 209, 255, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 0 36px var(--glow-purple), 0 0 64px var(--glow-cyan);
}

.btn--secondary {
  background: rgba(10, 2, 18, 0.7);
  color: var(--white);
  border: 1px solid var(--purple);
  box-shadow: 0 0 18px rgba(153, 69, 255, 0.25), inset 0 0 20px rgba(153, 69, 255, 0.08);
}

.btn--secondary:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(0, 209, 255, 0.3);
}

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

.btn--ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--sm {
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1.15rem 2rem;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.btn__x-icon {
  flex-shrink: 0;
}

/* ============================================
   3. BACKGROUND
   ============================================ */
.bg-system {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-radial {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(153, 69, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 30%, rgba(0, 209, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(106, 13, 173, 0.2), transparent 55%),
    var(--bg);
}

.bg-grid {
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(153, 69, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 69, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  animation: gridDrift 40s linear infinite;
  opacity: 0.5;
}

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

.bg-orb--1 {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  background: var(--purple);
  top: 8%;
  left: -8%;
}

.bg-orb--2 {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  background: var(--cyan);
  top: 40%;
  right: -10%;
  animation-delay: -6s;
  opacity: 0.25;
}

.bg-orb--3 {
  width: min(45vw, 420px);
  height: min(45vw, 420px);
  background: var(--purple-hot);
  bottom: 5%;
  left: 30%;
  animation-delay: -12s;
  opacity: 0.3;
}

.bg-streaks {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(20, 241, 149, 0.04) 48%, transparent 56%),
    linear-gradient(155deg, transparent 30%, rgba(255, 230, 0, 0.03) 42%, transparent 50%);
  animation: streakMove 22s ease-in-out infinite alternate;
}

.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--purple), var(--cyan), var(--solana-green));
  box-shadow: 0 0 12px var(--glow-cyan);
  transform-origin: left;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s;
  mix-blend-mode: screen;
  will-change: transform;
}

body.has-cursor .cursor-glow {
  opacity: 1;
}

/* ============================================
   4. NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 1.25rem;
  transition: background 0.35s var(--ease-soft), backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(6, 1, 13, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(153, 69, 255, 0.2);
}

.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 102;
}

.nav__logo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--purple);
  box-shadow: 0 0 16px var(--glow-purple);
}

.nav__wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, var(--white), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}

.nav__links a:not(.btn) {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

.nav__links a:not(.btn):hover {
  color: var(--white);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 102;
  position: relative;
}

.nav__burger,
.nav__burger::before,
.nav__burger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}

.nav__burger {
  position: relative;
}

.nav__burger::before,
.nav__burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav__burger::before { top: -7px; }
.nav__burger::after { top: 7px; }

.nav__toggle.is-open .nav__burger {
  background: transparent;
}

.nav__toggle.is-open .nav__burger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav__toggle.is-open .nav__burger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 101;
  background: rgba(6, 1, 13, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease-out), visibility 0.4s;
}

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

.mobile-menu[hidden] {
  display: flex !important;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(20px);
  transition: transform 0.45s var(--ease-out);
}

.mobile-menu.is-open .mobile-menu__inner {
  transform: translateY(0);
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s, transform 0.25s;
}

.mobile-menu__link:hover {
  color: var(--white);
  transform: scale(1.05);
}

/* ============================================
   5. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) 1.25rem 4rem;
  z-index: 1;
  overflow: hidden;
}

.hero__bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 28vw, 28rem);
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(153, 69, 255, 0.12);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  opacity: 0;
  animation: heroBgWordIn 1.2s var(--ease-out) 0.2s forwards;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--solana-green);
  border: 1px solid rgba(20, 241, 149, 0.4);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 20px rgba(20, 241, 149, 0.15);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  line-height: 0.85;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.hero__title-word {
  display: inline-block;
  background: linear-gradient(180deg, #fff 20%, #c4a0ff 70%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(153, 69, 255, 0.5));
  opacity: 0;
  transform: translateY(60px);
  animation: heroTitleIn 1s var(--ease-out) 0.35s forwards;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.08em;
  color: var(--cyan);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 24px var(--glow-cyan);
}

.hero__copy {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 45vw, 560px);
}

.hero__parallax {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  will-change: transform;
}

.hero__parallax .hero__cat-wrap {
  pointer-events: auto;
}

.hero__glow {
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.55) 0%, rgba(0, 209, 255, 0.15) 45%, transparent 70%);
  filter: blur(20px);
  opacity: 0;
  transform: scale(0.6);
  animation: heroGlowIn 1.4s var(--ease-out) 0.7s forwards, glowPulse 4s ease-in-out 2.2s infinite;
  will-change: transform, opacity;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border: 1px solid;
  opacity: 0.5;
  animation: shapeFloat 8s ease-in-out infinite;
}

.shape--1 {
  width: 48px;
  height: 48px;
  border-color: var(--cyan);
  top: 12%;
  right: 8%;
  transform: rotate(25deg);
  box-shadow: 0 0 16px var(--glow-cyan);
}

.shape--2 {
  width: 28px;
  height: 28px;
  border-color: var(--solana-green);
  bottom: 22%;
  left: 5%;
  transform: rotate(-15deg) skewX(-12deg);
  animation-delay: -2s;
}

.shape--3 {
  width: 18px;
  height: 18px;
  border-color: var(--yellow);
  background: rgba(255, 230, 0, 0.15);
  top: 35%;
  left: 12%;
  border-radius: 2px;
  animation-delay: -4s;
  box-shadow: 0 0 12px rgba(255, 230, 0, 0.4);
}

.hero__particles-local {
  position: absolute;
  inset: 10%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, var(--yellow), transparent),
    radial-gradient(2px 2px at 70% 20%, var(--cyan), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, var(--purple), transparent),
    radial-gradient(2px 2px at 85% 60%, var(--solana-green), transparent),
    radial-gradient(1.5px 1.5px at 55% 40%, var(--yellow), transparent);
  opacity: 0;
  animation: fadeIn 1s ease 1.2s forwards, localParticleDrift 12s ease-in-out infinite;
}

.hero__cat-wrap {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  opacity: 0;
  transform: scale(0.9);
  animation: heroCatIn 1.1s var(--ease-out) 0.55s forwards;
  will-change: transform, opacity;
}

.hero__cat-float {
  position: relative;
  animation: catFloat 6s ease-in-out 1.8s infinite;
  will-change: transform;
}

.hero__parallax .hero__particles-local,
.hero__parallax .hero__shapes {
  inset: 0;
}

.hero__cat {
  width: 100%;
  border-radius: 8% 8% 12% 12%;
  object-fit: cover;
  box-shadow:
    0 0 0 2px rgba(153, 69, 255, 0.35),
    0 0 60px rgba(153, 69, 255, 0.45),
    0 0 100px rgba(0, 209, 255, 0.2),
    0 30px 60px rgba(0, 0, 0, 0.5);
  mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.hero__paw-accents {
  position: absolute;
  right: 8%;
  top: 42%;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.paw-spark {
  position: absolute;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow), 0 0 20px rgba(255, 230, 0, 0.6);
  border-radius: 2px;
  opacity: 0;
  animation: sparkPop 0.5s var(--ease-out) forwards;
}

.paw-spark--1 {
  --r: -25deg;
  width: 18px;
  height: 3px;
  top: 10px;
  left: 20px;
  animation-delay: 1.3s;
}

.paw-spark--2 {
  --r: 5deg;
  width: 14px;
  height: 3px;
  top: 24px;
  left: 28px;
  animation-delay: 1.4s;
}

.paw-spark--3 {
  --r: 30deg;
  width: 12px;
  height: 3px;
  top: 36px;
  left: 18px;
  animation-delay: 1.5s;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Hero reveal helpers (JS adds .is-visible to .reveal) */
.hero .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.hero .reveal.is-visible {
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.hero .reveal[data-delay="1"].is-visible { animation-delay: 0.15s; }
.hero .reveal[data-delay="2"].is-visible { animation-delay: 0.3s; }
.hero .reveal[data-delay="3"].is-visible { animation-delay: 0.45s; }

/* Force hero reveals on load via body class */
body.is-loaded .hero .reveal {
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

body.is-loaded .hero .reveal[data-delay="1"] { animation-delay: 0.5s; }
body.is-loaded .hero .reveal[data-delay="2"] { animation-delay: 0.7s; }
body.is-loaded .hero .reveal[data-delay="3"] { animation-delay: 0.9s; }

/* ============================================
   6. MARQUEE
   ============================================ */
.marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid rgba(153, 69, 255, 0.25);
  background: rgba(153, 69, 255, 0.06);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}

.marquee__sep {
  color: var(--yellow);
  opacity: 0.85;
}

/* ============================================
   7. SECTIONS (About, Manifesto, Token)
   ============================================ */
.about {
  overflow: hidden;
}

.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
}

.about__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.2) contrast(1.05);
  mask-image: linear-gradient(to bottom, transparent, black 25%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 25%, black 70%, transparent);
}

.about__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.about__labels {
  position: absolute;
  inset: -2rem 0;
  pointer-events: none;
}

.float-label {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  letter-spacing: 0.2em;
  padding: 0.35rem 0.7rem;
  border: 1px solid;
  opacity: 0.7;
  animation: labelFloat 7s ease-in-out infinite;
}

.float-label--1 {
  top: 5%;
  right: 5%;
  color: var(--yellow);
  border-color: rgba(255, 230, 0, 0.4);
}

.float-label--2 {
  top: 40%;
  right: -2%;
  color: var(--cyan);
  border-color: rgba(0, 209, 255, 0.4);
  animation-delay: -2s;
}

.float-label--3 {
  bottom: 15%;
  left: -4%;
  color: var(--purple);
  border-color: rgba(153, 69, 255, 0.5);
  animation-delay: -4s;
}

.float-label--4 {
  top: 15%;
  left: 0;
  color: var(--solana-green);
  border-color: rgba(20, 241, 149, 0.4);
  animation-delay: -1s;
}

.about__lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.about__body p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 1rem;
}

.about__tag {
  color: var(--cyan) !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Manifesto */
.manifesto {
  text-align: center;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(153, 69, 255, 0.12), transparent 70%);
}

.manifesto__inner {
  max-width: 900px;
}

.manifesto__lines {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.manifesto__line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.manifesto__line strong {
  color: var(--white);
  background: linear-gradient(90deg, var(--yellow), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.manifesto__finale {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(110deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 1rem;
}

/* Token */
.token {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.token__inner {
  max-width: 560px;
}

.token__card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(153, 69, 255, 0.1), rgba(6, 1, 13, 0.8));
  padding: 1.5rem 1.75rem;
  box-shadow: 0 0 40px rgba(153, 69, 255, 0.12);
}

.token__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.token__row:last-child {
  border-bottom: none;
}

.token__label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.token__value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
}

.token__value--sol {
  background: linear-gradient(90deg, var(--solana-green), var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.token__value--ca {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: clamp(0.65rem, 1.6vw, 0.85rem);
  letter-spacing: 0;
  color: var(--cyan);
  max-width: min(100%, 280px);
  word-break: break-all;
  text-align: right;
  line-height: 1.35;
}

/* ============================================
   8. MEME SECTION
   ============================================ */
.meme {
  overflow: hidden;
}

.meme__title {
  text-align: center;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.meme__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(360px, 60vw, 620px);
  margin-top: 2rem;
}

.meme__cat {
  position: relative;
  z-index: 2;
  width: min(90%, 480px);
  transform-style: preserve-3d;
  will-change: transform;
}

.meme__glow {
  position: absolute;
  inset: -15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.5), rgba(0, 209, 255, 0.15), transparent 70%);
  filter: blur(30px);
  animation: glowPulse 5s ease-in-out infinite;
  z-index: -1;
}

.meme__img {
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow:
    0 0 0 3px rgba(153, 69, 255, 0.4),
    0 0 80px rgba(153, 69, 255, 0.4),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.meme__callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.callout {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  animation: calloutFloat 5s ease-in-out infinite;
}

.callout__q {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
  padding: 0.45rem 0.85rem;
  background: rgba(6, 1, 13, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0 0 20px rgba(153, 69, 255, 0.2);
}

.callout__a {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  filter: drop-shadow(0 0 8px rgba(255, 230, 0, 0.5));
}

.callout--1 { top: 8%; left: 2%; animation-delay: 0s; }
.callout--2 { top: 8%; right: 2%; animation-delay: -1.2s; }
.callout--3 { bottom: 12%; left: 5%; animation-delay: -2.4s; }
.callout--4 { bottom: 12%; right: 5%; animation-delay: -3.6s; }

/* ============================================
   9. HOW TO BUY
   ============================================ */
.howtobuy .section__title {
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.step {
  position: relative;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(153, 69, 255, 0.08), transparent);
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.step:hover {
  border-color: var(--cyan);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(153, 69, 255, 0.2);
}

.step__num {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--solana-green);
  margin-bottom: 1rem;
}

.step__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.step__text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.howtobuy__cta {
  text-align: center;
}

/* ============================================
   10. COMMUNITY / CHART
   ============================================ */
.chart {
  overflow: hidden;
  text-align: center;
}

.chart__visual {
  position: absolute;
  inset: 10% 0 0;
  opacity: 0.35;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}

.chart__svg {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.chart__line {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawChart 3s var(--ease-out) forwards;
}

.chart__area {
  opacity: 0;
  animation: fadeIn 1.5s ease 1s forwards;
}

.chart__inner {
  position: relative;
  z-index: 1;
}

.chart__text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.community {
  text-align: center;
  overflow: hidden;
}

.community__paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.paw-mark {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.15;
  animation: pawDrift 10s ease-in-out infinite;
  filter: hue-rotate(40deg);
}

.paw-mark:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.paw-mark:nth-child(2) { top: 25%; right: 12%; animation-delay: -2s; }
.paw-mark:nth-child(3) { bottom: 20%; left: 18%; animation-delay: -4s; }
.paw-mark:nth-child(4) { bottom: 30%; right: 20%; animation-delay: -6s; }
.paw-mark:nth-child(5) { top: 50%; left: 50%; animation-delay: -3s; }

.community__x {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 3rem;
  border: 1px solid var(--border);
  background: rgba(153, 69, 255, 0.08);
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}

.community__x:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 50px rgba(153, 69, 255, 0.35);
  transform: scale(1.03);
}

.community__x:hover .community__x-icon {
  transform: skewX(-4deg) scale(1.08);
  filter: drop-shadow(0 0 12px var(--cyan));
}

.community__x-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(153, 69, 255, 0.35), transparent 60%);
  opacity: 0.6;
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

.community__x-icon {
  position: relative;
  z-index: 1;
  width: clamp(48px, 10vw, 72px);
  height: clamp(48px, 10vw, 72px);
  transition: transform 0.35s var(--ease-out), filter 0.35s;
}

.community__x-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  letter-spacing: 0.08em;
}

/* ============================================
   11. CTA
   ============================================ */
.final-cta {
  text-align: center;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
}

.final-cta__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.3) brightness(0.7);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
}

.final-cta__title {
  text-shadow: 0 0 60px rgba(153, 69, 255, 0.4);
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   12. FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem 2rem;
  border-top: 1px solid rgba(153, 69, 255, 0.2);
  background: rgba(6, 1, 13, 0.9);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer__logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--purple);
}

.footer__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.footer__sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: var(--cyan);
}

.footer__disclaimer {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(168, 155, 184, 0.7);
  line-height: 1.6;
  text-align: center;
}

/* ============================================
   13. ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroCatIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroGlowIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes heroBgWordIn {
  to { opacity: 1; }
}

@keyframes sparkPop {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(var(--r, 0deg));
  }
  70% {
    opacity: 1;
    transform: scale(1.15) rotate(var(--r, 0deg));
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(var(--r, 0deg));
  }
}

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

@keyframes glowPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -40px); }
  66% { transform: translate(-20px, 20px); }
}

@keyframes gridDrift {
  from { transform: translate(0, 0); }
  to { transform: translate(64px, 64px); }
}

@keyframes streakMove {
  from { transform: translateX(-5%) rotate(0deg); }
  to { transform: translateX(5%) rotate(1deg); }
}

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

@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(25deg); }
  50% { transform: translateY(-16px) rotate(35deg); }
}

@keyframes labelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes calloutFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes localParticleDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(8px, -12px); }
}

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

@keyframes pawDrift {
  0%, 100% { transform: translate(0, 0) rotate(-10deg); opacity: 0.12; }
  50% { transform: translate(12px, -20px) rotate(10deg); opacity: 0.25; }
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

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

.reveal[data-split] .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal[data-split].is-visible .line {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-split].is-visible .line:nth-child(2) {
  transition-delay: 0.12s;
}

.steps .step.reveal:nth-child(1) { transition-delay: 0s; }
.steps .step.reveal:nth-child(2) { transition-delay: 0.12s; }
.steps .step.reveal:nth-child(3) { transition-delay: 0.24s; }

.manifesto__line.reveal:nth-child(1) { transition-delay: 0s; }
.manifesto__line.reveal:nth-child(2) { transition-delay: 0.1s; }
.manifesto__line.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   14. RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    order: 1;
  }

  .hero__visual {
    order: 0;
    min-height: clamp(240px, 55vw, 400px);
  }

  .hero__cat-wrap {
    width: min(85%, 400px);
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__copy {
    margin-left: auto;
    margin-right: auto;
  }

  .about__labels {
    display: none;
  }

  .callout--1 { left: 0; top: 0; }
  .callout--2 { right: 0; top: 0; }
  .callout--3 { left: 0; bottom: 0; }
  .callout--4 { right: 0; bottom: 0; }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: clamp(4.5rem, 22vw, 8rem);
  }

  .section__title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }

  .meme__stage {
    min-height: 420px;
    padding-block: 2rem;
  }

  .callout__q {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
  }

  .community__x {
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 360px;
  }

  .float-label {
    display: none;
  }

  .bg-orb {
    filter: blur(60px);
    opacity: 0.3;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-bottom: 3rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .final-cta__actions .btn {
    width: 100%;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
  }

  .hero__bg-word {
    font-size: 6rem;
  }

  .paw-spark {
    transform-origin: left center;
  }
}

@media (max-width: 375px) {
  .section {
    padding-inline: 1rem;
  }

  .hero__badge {
    font-size: 0.65rem;
  }

  .btn--lg {
    padding: 1rem 1.25rem;
  }
}

@media (max-width: 320px) {
  .hero__title {
    font-size: 3.75rem;
  }

  .section__title {
    font-size: 2.25rem;
  }

  .nav__wordmark {
    font-size: 1.1rem;
  }
}

@media (min-width: 1440px) {
  .hero__cat-wrap {
    width: min(100%, 560px);
  }
}

@media (min-width: 1920px) {
  :root {
    --max-w: 1400px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .hero .reveal,
  .hero__title-word,
  .hero__cat-wrap,
  .hero__glow,
  .hero__bg-word,
  .hero__particles-local,
  .paw-spark {
    opacity: 1 !important;
    transform: none !important;
  }

  .hero__cat-float {
    animation: none !important;
  }

  .marquee__track {
    animation: none;
  }

  .cursor-glow {
    display: none !important;
  }
}

/* Touch / coarse pointer — disable cursor glow visuals */
@media (hover: none), (pointer: coarse) {
  .cursor-glow {
    display: none !important;
  }
}
