/* ═══════════════════════════════════════════
   SHIKU INU — Premium space theme
   Palette from brand artwork
   ═══════════════════════════════════════════ */
:root {
  --bg-void: #06020f;
  --bg-deep: #0c0618;
  --bg-card: rgba(18, 10, 38, 0.72);
  --purple-mist: #3d1f6e;
  --purple-glow: #8b5cf6;
  --moon: #c4a8e8;
  --gold: #f5c518;
  --gold-bright: #ffe566;
  --gold-dim: #c9a012;
  --orange: #ff8a2b;
  --orange-glow: #ff6b1a;
  --text: #f4f0ff;
  --text-muted: rgba(244, 240, 255, 0.62);
  --border-gold: rgba(245, 197, 24, 0.45);
  --border-soft: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-void);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Background layers ── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 15% 8%, rgba(196, 168, 232, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 15%, rgba(139, 92, 246, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 138, 43, 0.08) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 70% 60%, rgba(61, 31, 110, 0.35) 0%, transparent 60%);
}

.bg-grid {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45vh;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0%, rgba(12, 6, 24, 0.4) 30%, rgba(12, 6, 24, 0.95) 100%),
    linear-gradient(90deg, transparent 49.5%, rgba(139, 92, 246, 0.06) 49.5%, rgba(139, 92, 246, 0.06) 50.5%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(139, 92, 246, 0.06) 49.5%, rgba(139, 92, 246, 0.06) 50.5%, transparent 50.5%);
  background-size: 100% 100%, 56px 56px, 56px 56px;
  mask-image: linear-gradient(180deg, transparent, black 50%);
  perspective: 400px;
  transform: rotateX(52deg) scale(1.4);
  transform-origin: center bottom;
  opacity: 0.7;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  background: rgba(6, 2, 15, 0.55);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
  transition: background 0.3s;
}

.site-header.scrolled {
  background: rgba(6, 2, 15, 0.88);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.brand img,
.logo-round {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  border: 2px solid var(--border-gold);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.25);
}

.site-nav {
  display: flex;
  gap: 2rem;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--gold-bright); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.25s, background 0.2s;
}

.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-dim) 100%);
  color: #1a0a08;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 4px 24px rgba(245, 197, 24, 0.35),
    0 8px 32px rgba(255, 107, 26, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 8px 36px rgba(245, 197, 24, 0.5),
    0 12px 40px rgba(255, 107, 26, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--border-gold);
  color: var(--gold-bright);
  background: rgba(245, 197, 24, 0.06);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 2rem;
  padding: calc(var(--header-h) + 2rem) clamp(1.25rem, 5vw, 4rem) 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Moon */
.moon {
  position: absolute;
  top: 8%;
  left: 4%;
  width: clamp(80px, 12vw, 140px);
  height: clamp(80px, 12vw, 140px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle, #c4a8e8 0%, #7c5cb0 50%, #4a3070 100%);
  box-shadow:
    0 0 60px rgba(196, 168, 232, 0.35),
    0 0 120px rgba(139, 92, 246, 0.15);
  opacity: 0.85;
  animation: moon-float 8s ease-in-out infinite;
}

.moon::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 60% 50%, rgba(255, 200, 150, 0.12), transparent 70%);
}

@keyframes moon-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Shooting star */
.shooting-star {
  position: absolute;
  top: 18%;
  right: 22%;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c084fc, #e9d5ff, transparent);
  transform: rotate(-35deg);
  animation: shoot 6s ease-in-out infinite;
  opacity: 0;
}

@keyframes shoot {
  0%, 85%, 100% { opacity: 0; transform: rotate(-35deg) translateX(0); }
  88% { opacity: 1; }
  95% { opacity: 0; transform: rotate(-35deg) translateX(80px); }
}

/* Floating coins */
.coin {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe566 0%, #f5c518 40%, #c9a012 100%);
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(245, 197, 24, 0.3),
    inset 0 -4px 8px rgba(0, 0, 0, 0.2),
    inset 0 2px 4px rgba(255, 255, 255, 0.35);
  z-index: 3;
  animation: coin-float 5s ease-in-out infinite;
}

.coin::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  background: #5c4208;
  border-radius: 50% 50% 45% 45%;
  box-shadow:
    -9px 2px 0 -3px #5c4208,
    9px 2px 0 -3px #5c4208,
    -5px -6px 0 -4px #5c4208,
    5px -6px 0 -4px #5c4208;
}

.coin-l { top: 42%; left: 8%; animation-delay: 0s; }
.coin-r { top: 55%; right: 38%; animation-delay: 2.5s; width: 36px; height: 36px; }

@keyframes coin-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(12deg); }
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  background: rgba(245, 197, 24, 0.08);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 100px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.92;
  margin-bottom: 1.25rem;
}

.line-white {
  display: block;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 0 60px rgba(255, 255, 255, 0.15),
    0 4px 0 rgba(0, 0, 0, 0.5),
    0 0 80px rgba(139, 92, 246, 0.25);
  letter-spacing: 0.02em;
}

.line-gold {
  display: block;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.28em;
  padding-left: 0.08em;
  filter: drop-shadow(0 2px 8px rgba(245, 197, 24, 0.4));
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: 2rem;
  font-weight: 500;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

/* CA panel */
.ca-panel {
  margin-bottom: 2rem;
}

.ca-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.65rem 0.65rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  max-width: 400px;
}

.ca-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple-glow);
  white-space: nowrap;
}

.ca-value {
  flex: 1;
  font-family: ui-monospace, "Cascadia Code", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.06em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  color: var(--text-muted);
  cursor: not-allowed;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ca-btn:not(:disabled) {
  cursor: pointer;
  color: var(--text);
}

.ca-btn:not(:disabled):hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: var(--border-gold);
  color: var(--gold-bright);
}

.ca-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.4rem;
  min-height: 1.1em;
  opacity: 0;
  transition: opacity 0.2s;
}

.ca-hint.show { opacity: 1; }

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.stat-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border-soft);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.portal-glow {
  position: absolute;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 138, 43, 0.35) 0%, rgba(255, 107, 26, 0.1) 40%, transparent 70%);
  filter: blur(20px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.portal-ring {
  position: absolute;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(255, 138, 43, 0.5);
  box-shadow: 0 0 40px rgba(255, 138, 43, 0.25), inset 0 0 30px rgba(255, 138, 43, 0.08);
  animation: ring-spin 20s linear infinite;
}

.portal-ring.ring-2 {
  width: 88%;
  border-color: rgba(245, 197, 24, 0.25);
  animation-direction: reverse;
  animation-duration: 28s;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.hero-logo-circle {
  position: relative;
  z-index: 2;
  width: min(88vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(245, 197, 24, 0.85);
  box-shadow:
    0 0 0 6px rgba(245, 197, 24, 0.12),
    0 0 60px rgba(255, 138, 43, 0.45),
    0 24px 80px rgba(0, 0, 0, 0.55);
  animation: mascot-float 5s ease-in-out infinite;
}

.hero-mascot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.card-visual img,
.footer-brand img {
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
}

/* ═══ TICKER ═══ */
.ticker {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid var(--border-soft);
  background: linear-gradient(90deg, rgba(61, 31, 110, 0.6), rgba(12, 6, 24, 0.9), rgba(61, 31, 110, 0.6));
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 35s linear infinite;
}

.ticker-track span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-right: 3rem;
  white-space: nowrap;
  opacity: 0.9;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ═══ SECTIONS ═══ */
.section {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 520px;
}

.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.center p {
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-glow);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}

.section-head h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold-bright), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head > p {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.card:hover {
  border-color: rgba(245, 197, 24, 0.25);
  transform: translateY(-4px);
}

.card-feature {
  grid-row: span 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  pointer-events: none;
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill-list li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #d8b4fe;
}

.card-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  position: relative;
}

.card-visual img {
  width: 100%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.5));
}

.card-sm {
  padding: 1.75rem;
}

.card-icon {
  display: flex;
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--gold);
}

.card-icon svg { width: 100%; height: 100%; }

.card-sm h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.card-sm p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Lore */
.section-lore {
  background: linear-gradient(180deg, transparent, rgba(61, 31, 110, 0.12), transparent);
}

.lore-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}

.lore-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-gold), var(--purple-glow), var(--border-gold), transparent);
  z-index: 0;
}

.lore-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lore-dot {
  width: 14px;
  height: 14px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px rgba(245, 197, 24, 0.6);
  border: 3px solid var(--bg-void);
}

.lore-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lore-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.lore-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-glow);
}

.lore-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0.4rem 0 0.5rem;
  color: var(--gold-bright);
}

.lore-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Steps */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step-card {
  padding: 1.75rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 197, 24, 0.3);
}

.step-n {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.buy-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 2.5rem;
  background:
    linear-gradient(135deg, rgba(245, 197, 24, 0.08) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.buy-banner h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.buy-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Social */
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.social-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.social-tg::before { background: radial-gradient(circle at 0% 0%, rgba(34, 211, 238, 0.15), transparent 60%); }
.social-x::before { background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.08), transparent 60%); }
.social-pump::before { background: radial-gradient(circle at 0% 0%, rgba(255, 138, 43, 0.15), transparent 60%); }

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.social-card:hover::before { opacity: 1; }

.social-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.social-svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.social-arrow {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.25s, color 0.25s;
}

.social-card:hover .social-arrow {
  transform: translate(4px, -4px);
  color: var(--gold-bright);
}

.social-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.social-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Launch panel */
.launch-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--border-soft);
}

.launch-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.35;
  filter: saturate(1.2) blur(1px);
}

.launch-content {
  position: relative;
  z-index: 1;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(6, 2, 15, 0.5), rgba(6, 2, 15, 0.85));
}

.launch-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(255, 138, 43, 0.4);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.launch-content h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.launch-content p {
  color: var(--text-muted);
  font-weight: 500;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-soft);
  background: rgba(6, 2, 15, 0.8);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  border-radius: 50%;
  border: 2px solid var(--border-gold);
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.footer-brand span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-bright); }

.footer-ca {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.legal {
  text-align: center;
  font-size: 0.68rem;
  color: rgba(244, 240, 255, 0.35);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.5;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--header-h) + 1.5rem);
  }

  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-actions { display: flex; justify-content: center; }
  .ca-panel { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .ca-inner { margin: 0 auto; }
  .hero-stats { display: inline-flex; }
  .coin-l { left: 2%; }
  .coin-r { right: 5%; }
  .moon { left: 50%; transform: translateX(-120%); }

  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .card-feature {
    grid-column: span 2;
  }

  .lore-track {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .lore-track::before { display: none; }
}

@media (max-width: 768px) {
  .site-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }

  .site-header.nav-open .site-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    padding: 1.5rem;
    gap: 1rem;
    background: rgba(6, 2, 15, 0.97);
    border-bottom: 1px solid var(--border-soft);
  }

  .site-header.nav-open .header-cta {
    display: flex;
    position: absolute;
    top: calc(var(--header-h) + 180px);
    left: 1.5rem;
  }

  .bento { grid-template-columns: 1fr; }
  .card-feature { grid-template-columns: 1fr; grid-column: span 1; }
  .card-visual { order: -1; padding-top: 1.5rem; }

  .lore-track { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: 1fr; }

  .buy-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem;
  }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 480px) {
  .steps-row { grid-template-columns: 1fr; }
  .hero-logo-circle { width: min(75vw, 320px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
