/* ============================================
   TRUMPTACIO — Comic Desert Meme Landing
   Pure CSS · No frameworks
   ============================================ */

:root {
  --orange: #e67e22;
  --orange-deep: #c4451a;
  --orange-hot: #ff8c2a;
  --red-dust: #a83220;
  --red-bright: #e74c3c;
  --red-tie: #dc143c;
  --gold: #f1c40f;
  --gold-bright: #ffd700;
  --gold-deep: #d4a017;
  --navy: #1a2744;
  --navy-deep: #0d1526;
  --navy-mid: #243556;
  --cream: #fdf6e3;
  --cream-soft: #fff8e7;
  --ink: #1a1208;
  --solana-green: #14f195;
  --solana-purple: #9945ff;
  --glass: rgba(26, 18, 8, 0.72);
  --radius: 18px;
  --radius-sm: 10px;
  --outline: 3px solid var(--ink);
  --shadow-comic: 6px 6px 0 var(--ink);
  --shadow-comic-lg: 10px 10px 0 var(--ink);
  --font-display: "Arial Black", "Helvetica Neue", Impact, Haettenschweiler, sans-serif;
  --font-body: "Segoe UI", Candara, "Trebuchet MS", Geneva, sans-serif;
  --max: 1180px;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--navy-deep);
  line-height: 1.55;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

body.touch-device {
  cursor: auto;
}

body.touch-device .cursor-dot,
body.touch-device .cursor-ring {
  display: none !important;
}

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

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

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

body.touch-device button,
body.touch-device a {
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

/* ---------- Utilities ---------- */

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  text-shadow: 0 0 24px rgba(241, 196, 15, 0.35);
}

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

.section__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section__header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section__header--center {
  text-align: center;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.text-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 18, 8, 0.2);
}

.text-red {
  color: var(--red-bright);
  text-shadow: 3px 3px 0 var(--ink);
}

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

/* ---------- Scroll progress ---------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--gold), var(--red-bright), var(--solana-green));
  box-shadow: 0 0 12px rgba(241, 196, 15, 0.6);
  transform-origin: left;
  pointer-events: none;
}

/* ---------- Custom cursor ---------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.8);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(241, 196, 15, 0.7);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out), border-color 0.25s ease, background 0.25s ease;
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  border-color: var(--red-bright);
  background: rgba(231, 76, 60, 0.12);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

/* ---------- Grain overlay ---------- */

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 900;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Buttons ---------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: var(--outline);
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  isolation: isolate;
  white-space: nowrap;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn--primary {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: var(--ink);
  box-shadow: var(--shadow-comic), 0 0 0 0 rgba(241, 196, 15, 0.4);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 8px 10px 0 var(--ink), 0 0 28px rgba(241, 196, 15, 0.45);
}

.btn--buy {
  background: linear-gradient(180deg, var(--red-bright), #b71c1c);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 0.75rem 1.35rem;
}

.btn--buy:hover,
.btn--buy:focus-visible {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 6px 6px 0 var(--ink), 0 0 20px rgba(231, 76, 60, 0.45);
}

.btn--ghost {
  background: rgba(253, 246, 227, 0.06);
  color: var(--cream);
  backdrop-filter: blur(8px);
  box-shadow: 4px 4px 0 rgba(26, 18, 8, 0.55);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(253, 246, 227, 0.14);
  transform: translateY(-3px);
  box-shadow: 6px 8px 0 rgba(26, 18, 8, 0.7);
}

.btn--x {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-comic);
}

.btn--x:hover,
.btn--x:focus-visible {
  transform: translateY(-3px);
  box-shadow: 8px 10px 0 rgba(0, 0, 0, 0.85);
}

.btn--lg {
  padding: 1.15rem 2.2rem;
  font-size: 1.05rem;
}

.btn__icon {
  flex-shrink: 0;
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(26, 18, 8, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(230, 126, 34, 0.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  width: min(100%, calc(var(--max) + 4rem));
  margin-inline: auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.nav__logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.45);
  aspect-ratio: 1;
}

.nav__name {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 0.5px rgba(26, 18, 8, 0.25);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem 1.35rem;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.88;
  transition: opacity 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav__link:hover,
.nav__link:focus-visible {
  opacity: 1;
  color: var(--gold);
  transform: translateY(-1px);
}

.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 2px solid rgba(253, 246, 227, 0.35);
  border-radius: 12px;
  z-index: 2;
  background: rgba(26, 18, 8, 0.35);
}

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

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

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

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

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

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

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + 1.5rem) 1.25rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(255, 180, 60, 0.35), transparent 55%),
    linear-gradient(180deg, #c4451a 0%, #a83220 38%, #6b2418 72%, #1a1208 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  width: 55vmax;
  height: 55vmax;
  top: -10%;
  left: 45%;
  background: radial-gradient(circle, rgba(255, 200, 80, 0.45), transparent 65%);
  animation: glowDrift 12s ease-in-out infinite alternate;
  will-change: transform;
}

.hero__sun {
  position: absolute;
  width: clamp(120px, 18vw, 220px);
  height: clamp(120px, 18vw, 220px);
  top: 12%;
  left: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff3c4, #f1c40f 45%, #e67e22 80%);
  box-shadow: 0 0 60px rgba(241, 196, 15, 0.45), 0 0 120px rgba(230, 126, 34, 0.25);
  will-change: transform;
}

.hero__mesa {
  position: absolute;
  bottom: 12%;
  background: linear-gradient(180deg, #8b2e1f, #4a1810);
  border: 2px solid rgba(26, 18, 8, 0.4);
  will-change: transform;
}

.hero__mesa--1 {
  left: -5%;
  width: 38%;
  height: 18%;
  clip-path: polygon(0 100%, 8% 40%, 22% 55%, 38% 20%, 55% 48%, 72% 28%, 88% 50%, 100% 35%, 100% 100%);
  opacity: 0.55;
}

.hero__mesa--2 {
  right: -8%;
  width: 42%;
  height: 22%;
  clip-path: polygon(0 100%, 5% 55%, 18% 35%, 30% 50%, 48% 18%, 65% 42%, 80% 25%, 100% 45%, 100% 100%);
  opacity: 0.4;
}

.hero__ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background:
    linear-gradient(180deg, transparent, rgba(26, 18, 8, 0.55)),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(26, 18, 8, 0.08) 40px, rgba(26, 18, 8, 0.08) 42px),
    linear-gradient(180deg, #c45a2a, #6b2418 60%, #1a1208);
  will-change: transform;
}

.hero__heat {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(180deg, transparent, rgba(255, 160, 60, 0.08));
  animation: heatWave 4s ease-in-out infinite;
  opacity: 0.6;
  pointer-events: none;
}

.hero__halftone {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(circle, rgba(26, 18, 8, 0.7) 1.2px, transparent 1.4px);
  background-size: 10px 10px;
  mix-blend-mode: multiply;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1rem;
  opacity: 0.55;
  will-change: transform;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.3));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.hero__copy {
  max-width: 36rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__line {
  display: block;
  text-shadow: 4px 5px 0 rgba(26, 18, 8, 0.55);
}

.hero__line--accent {
  background: linear-gradient(180deg, #fff3b0 0%, var(--gold-bright) 40%, var(--orange-hot) 75%, var(--red-bright) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(26, 18, 8, 0.35);
  filter: drop-shadow(4px 5px 0 rgba(26, 18, 8, 0.55));
}

.hero__support {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(253, 246, 227, 0.9);
  max-width: 32rem;
  margin-bottom: 1.75rem;
  text-wrap: pretty;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  background: rgba(13, 21, 38, 0.55);
  border: 2px solid rgba(20, 241, 149, 0.45);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(20, 241, 149, 0.15);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--solana-green);
  box-shadow: 0 0 10px var(--solana-green);
  animation: pulseDot 1.6s ease-in-out infinite;
}

.hero__mascot-wrap {
  display: flex;
  justify-content: center;
  perspective: 1000px;
  animation: mascotFloat 5.5s ease-in-out infinite;
  will-change: transform;
}

.hero__mascot {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 1;
  will-change: transform;
  transform-style: preserve-3d;
}

.hero__mascot-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 196, 15, 0.4), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite;
}

.hero__mascot-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  border: 4px solid var(--ink);
  box-shadow:
    12px 14px 0 rgba(26, 18, 8, 0.75),
    0 20px 60px rgba(0, 0, 0, 0.45);
  aspect-ratio: 1;
}

.hero__burst {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background:
    conic-gradient(from 0deg, transparent 0 8%, rgba(241, 196, 15, 0.2) 8% 10%, transparent 10% 20%, rgba(231, 76, 60, 0.15) 20% 22%, transparent 22% 100%);
  border-radius: 50%;
  animation: burstSpin 28s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(253, 246, 227, 0.7);
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
}

.scroll-hint__mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(253, 246, 227, 0.55);
  border-radius: 12px;
  position: relative;
}

.scroll-hint__mouse::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  animation: scrollTick 1.6s ease-in-out infinite;
}

/* ---------- Marquee ---------- */

.marquee {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-bright), var(--gold));
  border-block: 4px solid var(--ink);
  overflow: hidden;
  padding: 0.85rem 0;
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.25);
}

.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(0.95rem, 2.2vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.marquee__sep {
  opacity: 0.7;
}

/* ---------- About ---------- */

.about {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(230, 126, 34, 0.18), transparent 50%),
    linear-gradient(180deg, #1a1208 0%, #1a2744 50%, #152038 100%);
}

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about__frame {
  position: relative;
  border-radius: 24px;
  border: 4px solid var(--ink);
  box-shadow: var(--shadow-comic-lg);
  overflow: hidden;
  background: #a83220;
  aspect-ratio: 1;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.about__frame:hover .about__img {
  transform: scale(1.04);
}

.about__stamp {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 0.75rem;
  background: var(--red-bright);
  color: var(--cream);
  border: 2px solid var(--ink);
  transform: rotate(-6deg);
  box-shadow: 3px 3px 0 var(--ink);
}

.about__copy {
  color: rgba(253, 246, 227, 0.88);
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  margin-bottom: 1rem;
  max-width: 36rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.stat {
  background: linear-gradient(160deg, rgba(253, 246, 227, 0.08), rgba(230, 126, 34, 0.12));
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.stat:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 6px 8px 0 rgba(0, 0, 0, 0.4);
}

.stat__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: rgba(253, 246, 227, 0.55);
  margin-bottom: 0.25rem;
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  letter-spacing: 0.02em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---------- Why ---------- */

.why {
  background:
    radial-gradient(circle at 80% 20%, rgba(153, 69, 255, 0.12), transparent 40%),
    linear-gradient(180deg, #152038, #0d1526 60%, #1a1208);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.why-card {
  position: relative;
  background: linear-gradient(165deg, #2a3a58, #1a2744);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.6rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.45);
  transform-style: preserve-3d;
  transition: box-shadow 0.3s ease;
  will-change: transform;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(241, 196, 15, 0.12), transparent 50%);
  pointer-events: none;
}

.why-card:hover {
  box-shadow: 8px 12px 0 rgba(0, 0, 0, 0.5), 0 0 30px rgba(241, 196, 15, 0.12);
}

.why-card__icon {
  margin-bottom: 1rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(253, 246, 227, 0.06);
  border: 2px solid rgba(253, 246, 227, 0.15);
  border-radius: 14px;
}

.why-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
  color: var(--gold);
}

.why-card__text {
  color: rgba(253, 246, 227, 0.8);
  font-size: 0.98rem;
}

/* ---------- How to buy ---------- */

.howtobuy {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(241, 196, 15, 0.15), transparent 55%),
    linear-gradient(180deg, #1a1208, #2a1810 40%, #1a2744);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  counter-reset: none;
  margin-bottom: 2.5rem;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 3.25rem;
  left: 12%;
  right: 12%;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 12px,
    transparent 12px 22px
  );
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  background: rgba(253, 246, 227, 0.05);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-comic);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 8px 12px 0 rgba(0, 0, 0, 0.45);
}

.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--red-bright));
}

.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1;
  background: linear-gradient(180deg, rgba(241, 196, 15, 0.35), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.step__text {
  color: rgba(253, 246, 227, 0.82);
  margin-bottom: 0.85rem;
}

.step__link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.step__link:hover,
.step__link:focus-visible {
  color: var(--gold-bright);
}

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

/* ---------- Showcase ---------- */

.showcase {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(230, 126, 34, 0.25), transparent 60%),
    linear-gradient(180deg, #1a2744, #0d1526);
  overflow: hidden;
}

.showcase__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
}

.showcase__backdrop {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  font-family: var(--font-display);
  font-size: clamp(4rem, 16vw, 12rem);
  letter-spacing: -0.04em;
  color: rgba(253, 246, 227, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.showcase__stage {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  perspective: 1200px;
  animation: showcaseFloat 6s ease-in-out infinite;
  will-change: transform;
}

.showcase__frame {
  position: relative;
  border-radius: 20px;
  border: 4px solid var(--ink);
  box-shadow:
    14px 16px 0 rgba(26, 18, 8, 0.7),
    0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  aspect-ratio: 16 / 9;
  background: #a83220;
}

.showcase__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 40px rgba(241, 196, 15, 0.35), 0 0 80px rgba(230, 126, 34, 0.2);
  pointer-events: none;
  z-index: 2;
}

.showcase__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.showcase__star {
  position: absolute;
  z-index: 3;
  font-size: clamp(1.25rem, 3vw, 2rem);
  filter: drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.5));
  animation: twinkle 2.8s ease-in-out infinite;
}

.showcase__star--1 { top: 8%; left: 4%; }
.showcase__star--2 { top: 12%; right: 6%; animation-delay: 0.6s; }
.showcase__star--3 { bottom: 14%; left: 8%; animation-delay: 1.1s; }
.showcase__star--4 { bottom: 10%; right: 5%; animation-delay: 1.7s; }

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

.showcase__policy {
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.16em;
  color: rgba(253, 246, 227, 0.7);
  margin-bottom: 0.75rem;
}

.showcase__slogan {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(180deg, var(--gold-bright), var(--orange-hot) 60%, var(--red-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(4px 5px 0 rgba(26, 18, 8, 0.65));
}

/* ---------- Community ---------- */

.community {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(241, 196, 15, 0.2), transparent 55%),
    linear-gradient(180deg, #0d1526, #2a1810 70%, #1a1208);
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.community__glow {
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(241, 196, 15, 0.28), rgba(230, 126, 34, 0.12), transparent 65%);
  animation: spotlightPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.community__mascot {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: min(55vw, 560px);
  opacity: 0.18;
  pointer-events: none;
  animation: mascotFloat 7s ease-in-out infinite;
  filter: saturate(1.1);
}

.community__mascot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}

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

.community__title {
  margin-bottom: 1rem;
}

.community__copy {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(253, 246, 227, 0.88);
  margin-bottom: 2rem;
}

.community__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* ---------- Footer ---------- */

.footer {
  background: #0a0e16;
  border-top: 4px solid var(--ink);
  padding: 2.5rem 1.25rem 2rem;
}

.footer__inner {
  width: min(100%, var(--max));
  margin-inline: auto;
  display: grid;
  gap: 1.5rem;
}

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

.footer__logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  border: 2px solid var(--ink);
  aspect-ratio: 1;
}

.footer__ticker {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.footer__tagline {
  font-size: 0.95rem;
  color: rgba(253, 246, 227, 0.75);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer__links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253, 246, 227, 0.8);
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--gold);
}

.footer__disclaimer {
  font-size: 0.82rem;
  color: rgba(253, 246, 227, 0.45);
  max-width: 52rem;
  line-height: 1.5;
}

/* ---------- Reveal system ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: calc(var(--delay, 0) * 80ms);
}

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

.reveal[data-delay="1"] { --delay: 1; }
.reveal[data-delay="2"] { --delay: 2; }
.reveal[data-delay="3"] { --delay: 3; }
.reveal[data-delay="4"] { --delay: 4; }
.reveal[data-delay="5"] { --delay: 5; }

/* ---------- Keyframes ---------- */

@keyframes mascotFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1.2deg); }
}

@keyframes glowDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-8%, 6%) scale(1.08); }
}

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

@keyframes heatWave {
  0%, 100% { transform: translateY(0) skewX(0deg); opacity: 0.5; }
  50% { transform: translateY(-6px) skewX(1deg); opacity: 0.75; }
}

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

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

@keyframes scrollTick {
  0% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70% { transform: translateX(-50%) translateY(10px); opacity: 0; }
  100% { transform: translateX(-50%) translateY(0); opacity: 0; }
}

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

@keyframes showcaseFloat {
  0%, 100% { transform: translateY(0) rotateX(2deg) rotateY(-2deg); }
  50% { transform: translateY(-10px) rotateX(0deg) rotateY(2deg); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.85; }
  50% { transform: scale(1.25) rotate(12deg); opacity: 1; }
}

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

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    max-width: 40rem;
    margin-inline: auto;
  }

  .hero__support {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__mascot {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .about__inner {
    grid-template-columns: 1fr;
  }

  .about__visual {
    order: -1;
    max-width: 380px;
    margin-inline: auto;
  }

  .about__text {
    text-align: center;
  }

  .about__copy {
    margin-inline: auto;
  }

  .stats {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
  }

  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .nav__toggle {
    display: grid;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(13, 21, 38, 0.97);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 2rem;
  }

  .nav.is-open .nav__links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav.is-open .nav__links .nav__link,
  .nav.is-open .nav__links .nav__buy {
    font-size: 1.35rem;
    transform: translateY(0);
    animation: mobileLinkIn 0.45s var(--ease-out) both;
  }

  .nav.is-open .nav__links .nav__link:nth-child(1) { animation-delay: 0.05s; }
  .nav.is-open .nav__links .nav__link:nth-child(2) { animation-delay: 0.1s; }
  .nav.is-open .nav__links .nav__link:nth-child(3) { animation-delay: 0.15s; }
  .nav.is-open .nav__links .nav__link:nth-child(4) { animation-delay: 0.2s; }
  .nav.is-open .nav__links .nav__buy { animation-delay: 0.25s; }

  .steps {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  .hero {
    padding-bottom: 4.5rem;
  }

  .scroll-hint {
    display: none;
  }

  .community__mascot {
    opacity: 0.1;
    right: -20%;
  }
}

@media (max-width: 520px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: clamp(2.6rem, 14vw, 3.4rem);
  }

  .btn {
    width: 100%;
  }

  .hero__actions,
  .howtobuy__cta,
  .community__actions {
    flex-direction: column;
    width: 100%;
  }

  .nav__name {
    font-size: 0.95rem;
  }
}

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

/* ---------- Reduced motion ---------- */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }

  .hero__mascot-wrap,
  .showcase__stage,
  .community__mascot {
    animation: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  body {
    cursor: auto;
  }
}
