/* Asteroid Shiba — mission control × plush mascot */

:root {
  --space: #05070f;
  --space-deep: #02040a;
  --navy: #0b1224;
  --navy-mid: #121a30;
  --suit: #7e92a8;
  --suit-dark: #5a6f84;
  --earth: #4aa3d9;
  --orange: #e8893a;
  --orange-hot: #f5a24a;
  --bnb: #f0b90b;
  --bnb-deep: #c99400;
  --bnb-glow: rgba(240, 185, 11, 0.35);
  --white: #f7f4ef;
  --muted: #a8b3c7;
  --line: rgba(255, 255, 255, 0.1);
  --panel: rgba(14, 20, 38, 0.72);
  --radius: 14px;
  --header-h: 72px;
  --max: 1180px;
  --font-display: "Arial Black", "Arial Narrow", Impact, Haettenschweiler, "Franklin Gothic Bold", sans-serif;
  --font-body: "Segoe UI", Candara, "Trebuchet MS", Geneva, Tahoma, sans-serif;
  --font-mono: "Cascadia Mono", "Consolas", "Courier New", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--space-deep);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

code {
  font-family: var(--font-mono);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.65rem 1rem;
  background: var(--bnb);
  color: #111;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

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

/* ——— Space background ——— */
.space-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 15% 10%, rgba(74, 163, 217, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 20%, rgba(232, 137, 58, 0.1), transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(240, 185, 11, 0.06), transparent 55%),
    linear-gradient(180deg, #02040a 0%, #070b18 45%, #05070f 100%);
}

.stars {
  position: absolute;
  inset: -10%;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.85), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 55% 25%, rgba(255, 255, 255, 0.9), transparent),
    radial-gradient(1px 1px at 75% 45%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 90% 15%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 20% 80%, rgba(255, 255, 255, 0.65), transparent),
    radial-gradient(1px 1px at 48% 90%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 65% 70%, rgba(255, 255, 255, 0.75), transparent),
    radial-gradient(2px 2px at 85% 85%, rgba(240, 185, 11, 0.55), transparent),
    radial-gradient(1px 1px at 5% 50%, rgba(255, 255, 255, 0.45), transparent);
  background-size: 100% 100%;
  opacity: 0.85;
  animation: star-drift 90s linear infinite;
}

.stars-b {
  opacity: 0.45;
  transform: scale(1.15) rotate(8deg);
  animation-duration: 140s;
  animation-direction: reverse;
}

.nebula {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(126, 146, 168, 0.08), transparent 40%),
    radial-gradient(circle at 25% 70%, rgba(74, 163, 217, 0.07), transparent 35%);
}

@keyframes star-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-2%, 1.5%, 0); }
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(2, 4, 10, 0.78);
  border-bottom: 1px solid var(--line);
  animation: header-in 0.7s var(--ease) both;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 185, 11, 0.55);
  box-shadow: 0 0 0 3px rgba(240, 185, 11, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-ticker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--bnb);
  letter-spacing: 0.12em;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--white);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1rem;
  border-top: 1px solid var(--line);
  background: rgba(2, 4, 10, 0.95);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.75rem 0.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:hover {
  color: var(--bnb);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1.5px solid transparent;
  transition:
    transform 0.18s var(--ease),
    background 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    color 0.18s ease;
}

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

.btn-lg {
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  font-size: 0.88rem;
}

.btn-buy {
  background: linear-gradient(180deg, #ffd24a 0%, var(--bnb) 55%, var(--bnb-deep) 100%);
  color: #1a1200;
  box-shadow:
    0 0 0 1px rgba(255, 220, 120, 0.35) inset,
    0 8px 24px var(--bnb-glow);
}

.btn-buy:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 220, 120, 0.5) inset,
    0 12px 28px rgba(240, 185, 11, 0.45);
}

.btn-chart {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(126, 146, 168, 0.55);
  color: var(--white);
}

.btn-chart:hover {
  border-color: var(--earth);
  background: rgba(74, 163, 217, 0.12);
  transform: translateY(-2px);
}

.btn-x {
  background: #111;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.btn-x:hover {
  background: #000;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.x-icon {
  width: 0.95em;
  height: 0.95em;
  flex-shrink: 0;
}

.btn-copy {
  flex-shrink: 0;
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  background: rgba(240, 185, 11, 0.15);
  border: 1px solid rgba(240, 185, 11, 0.45);
  color: var(--bnb);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-copy:hover {
  background: rgba(240, 185, 11, 0.25);
}

.btn-copy.is-copied {
  background: rgba(74, 163, 217, 0.2);
  border-color: var(--earth);
  color: var(--earth);
}

/* ——— Layout shell ——— */
.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2,
.reward-copy h2,
.comms-panel h2,
.final-inner h2 {
  margin: 0.35rem 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.mission-stamp,
.mission-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bnb);
}

.mission-arrow {
  color: var(--suit);
}

/* ——— Hero ——— */
.hero {
  padding: 2rem 1.25rem 3.5rem;
  max-width: calc(var(--max) + 2.5rem);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.hero-title {
  margin: 0.6rem 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 20%, #d9e2ef 70%, var(--suit) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}

.ticker-chip,
.chain-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.ticker-chip {
  background: rgba(240, 185, 11, 0.15);
  border: 1px solid rgba(240, 185, 11, 0.45);
  color: var(--bnb);
}

.chain-chip {
  background: rgba(126, 146, 168, 0.15);
  border: 1px solid rgba(126, 146, 168, 0.4);
  color: var(--suit);
}

.hero-hook {
  margin: 0 0 0.65rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 650;
  line-height: 1.35;
  max-width: 28ch;
}

.hero-support {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 36ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.ca-panel {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(240, 185, 11, 0.06) inset;
  max-width: 100%;
}

.ca-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.ca-chain {
  color: var(--bnb);
}

.ca-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.ca-value {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.45rem 0;
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  letter-spacing: 0.04em;
  word-break: break-all;
  color: var(--white);
}

/* Hero stage — free-standing character */
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  isolation: isolate;
}

.stage-glow {
  position: absolute;
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(240, 185, 11, 0.22) 0%, rgba(232, 137, 58, 0.12) 35%, transparent 68%);
  filter: blur(8px);
  z-index: 0;
}

.orbit-ring {
  position: absolute;
  width: min(88%, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(126, 146, 168, 0.35);
  box-shadow:
    0 0 0 1px rgba(240, 185, 11, 0.08),
    inset 0 0 30px rgba(74, 163, 217, 0.08);
  z-index: 1;
  animation: orbit-spin 28s linear infinite;
}

.orbit-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: var(--bnb);
  box-shadow: 0 0 12px var(--bnb);
}

.orbit-ring-b {
  width: min(72%, 380px);
  border-color: rgba(232, 137, 58, 0.25);
  animation-duration: 40s;
  animation-direction: reverse;
  opacity: 0.7;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.asteroid-bits {
  position: absolute;
  inset: 10%;
  z-index: 1;
  pointer-events: none;
}

.bit {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 40% 60% 55% 45%;
  background: linear-gradient(135deg, #6a7588, #3a4254);
  opacity: 0.75;
  animation: bit-float 7s ease-in-out infinite;
}

.bit-1 { top: 12%; left: 18%; width: 14px; height: 11px; }
.bit-2 { top: 22%; right: 14%; width: 8px; height: 8px; animation-delay: -1.5s; }
.bit-3 { bottom: 28%; left: 10%; width: 12px; height: 9px; animation-delay: -3s; }
.bit-4 { bottom: 18%; right: 20%; width: 7px; height: 7px; animation-delay: -4.5s; background: linear-gradient(135deg, var(--bnb), var(--orange)); }

@keyframes bit-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(12deg); }
}

.hero-character {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.55));
  animation: hero-float 5.5s ease-in-out infinite;
}

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

/* ——— Story ——— */
.story {
  background:
    linear-gradient(180deg, transparent, rgba(11, 18, 36, 0.65) 12%, rgba(11, 18, 36, 0.65) 88%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.story-narrative p {
  margin: 0 0 1rem;
  color: #d5dce8;
  max-width: 42ch;
  font-size: 1.08rem;
}

.story-tagline {
  color: var(--bnb) !important;
  font-weight: 650;
}

.mission-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(240, 185, 11, 0.35);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  padding: 1.1rem 0 1.1rem 1.35rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bnb);
  box-shadow: 0 0 0 4px rgba(240, 185, 11, 0.18);
}

.tl-num {
  grid-row: 1 / 3;
  align-self: start;
  font-family: var(--font-mono);
  font-size: 1.35rem;
  color: var(--bnb);
  letter-spacing: 0.04em;
  padding-top: 0.1rem;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tl-copy {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Rewards ——— */
.rewards {
  position: relative;
  overflow: hidden;
}

.rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.reward-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}

.reward-capsule {
  width: min(100%, 320px);
  aspect-ratio: 1.15 / 1;
  border-radius: 50% / 42%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(240, 185, 11, 0.35), transparent 55%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(14, 20, 38, 0.9));
  border: 2px solid rgba(240, 185, 11, 0.55);
  box-shadow:
    0 0 40px rgba(240, 185, 11, 0.2),
    inset 0 0 40px rgba(240, 185, 11, 0.08);
}

.capsule-label {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.04em;
  color: var(--bnb);
  text-shadow: 0 0 24px rgba(240, 185, 11, 0.45);
}

.reward-plush {
  position: absolute;
  width: 140px;
  height: auto;
  object-fit: contain;
  background: transparent;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
  animation: orbit-plush 9s linear infinite;
  transform-origin: center;
}

@keyframes orbit-plush {
  from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

.reward-statement {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-weight: 700;
  line-height: 1.35;
  max-width: 22ch;
}

.reward-note {
  margin: 0;
  color: var(--muted);
}

/* ——— How to buy ——— */
.howto {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(240, 185, 11, 0.07), transparent 60%),
    rgba(8, 12, 24, 0.5);
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.buy-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(14, 20, 38, 0.55);
  border: 1px solid var(--line);
}

.buy-step h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.buy-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.step-num {
  font-family: var(--font-mono);
  color: var(--bnb);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  padding-top: 0.15rem;
}

.howto-cta {
  margin-top: 1.75rem;
}

/* ——— Gallery ——— */
.gallery {
  border-top: 1px solid var(--line);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-layout figure {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 22, 0.8);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.gallery-layout figure:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.gal-stack .gal-item:nth-child(even):hover {
  transform: translateY(-6px) rotate(0.7deg);
}

.gallery-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.gallery-layout figure:hover img {
  transform: scale(1.04);
}

.gal-feature img,
.gal-item img {
  aspect-ratio: 1 / 1;
}

.gal-banner img,
.gal-wide img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gal-cutout {
  background:
    radial-gradient(circle at 50% 60%, rgba(240, 185, 11, 0.12), transparent 55%),
    #05070f;
}

.gal-cutout img {
  object-fit: contain;
  padding: 1.25rem;
  background: transparent;
}

.gallery-layout figcaption {
  padding: 0.65rem 0.9rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ——— Community ——— */
.community {
  border-top: 1px solid var(--line);
}

.comms-panel {
  padding: clamp(1.75rem, 4vw, 3rem);
  border-radius: 20px;
  border: 1px solid rgba(240, 185, 11, 0.28);
  background:
    linear-gradient(135deg, rgba(240, 185, 11, 0.08), transparent 40%),
    linear-gradient(180deg, rgba(18, 26, 48, 0.9), rgba(8, 12, 22, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.comms-panel p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  max-width: 40ch;
}

.comms-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

/* ——— Final CTA ——— */
.final-cta {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(232, 137, 58, 0.12), transparent 60%);
}

.final-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(240, 185, 11, 0.5);
  margin-bottom: 1rem;
}

.final-ticker {
  margin: 0 0 0.5rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: var(--bnb);
}

.final-line {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--space-deep);
  padding: 2.5rem 1.25rem 3rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(240, 185, 11, 0.4);
}

.footer-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.footer-meta {
  margin: 0.15rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--bnb);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--bnb);
}

.footer-ca {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-ca code {
  color: var(--white);
  word-break: break-all;
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: #7d8799;
  max-width: 48ch;
}

/* ——— Scroll reveal ——— */
.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.js .reveal {
  opacity: 0;
}

.js .reveal[data-reveal="up"] {
  transform: translateY(28px);
}

.js .reveal[data-reveal="left"] {
  transform: translateX(-28px);
}

.js .reveal[data-reveal="right"] {
  transform: translateX(28px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.timeline-item.reveal.is-visible {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ——— Responsive ——— */
@media (min-width: 640px) {
  .buy-steps {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-layout {
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: auto auto auto;
  }

  .gal-feature {
    grid-row: 1 / 3;
  }

  .gal-stack {
    display: grid;
    gap: 1rem;
    grid-row: 1 / 3;
  }

  .gal-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .mobile-nav,
  .mobile-nav[hidden] {
    display: none !important;
  }

  .brand-name {
    font-size: 1.05rem;
  }

  .hero {
    padding-top: 2.75rem;
    padding-bottom: 4.5rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 1.5rem 2rem;
    align-items: center;
  }

  .hero-stage {
    min-height: 480px;
  }

  .story-body {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .rewards-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .footer-links {
    justify-content: end;
  }

  .footer-ca,
  .footer-disclaimer {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .header-ctas {
    gap: 0.55rem;
  }

  .btn {
    min-height: 44px;
  }

  .hero-character {
    width: min(100%, 560px);
  }

  .orbit-ring {
    width: min(92%, 500px);
  }

  .buy-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  .section-shell {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 767px) {
  .hero-stage {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

  .hero-grid {
    gap: 1.25rem;
  }

  .orbit-ring,
  .orbit-ring-b {
    width: min(78%, 340px);
    opacity: 0.55;
  }

  .asteroid-bits {
    display: none;
  }

  .reward-plush {
    width: 110px;
  }

  @keyframes orbit-plush {
    from { transform: rotate(0deg) translateX(90px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
  }
}

@media (max-width: 430px) {
  .header-inner {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    gap: 0.5rem;
  }

  .brand-text {
    display: none;
  }

  .header-ctas {
    gap: 0.35rem;
  }

  .btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    min-height: 40px;
  }

  .hero,
  .section-shell {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  .hero-ctas .btn-lg,
  .comms-ctas .btn-lg,
  .final-ctas .btn-lg {
    flex: 1 1 auto;
  }

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

  .btn-copy {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .header-ctas .btn-chart {
    padding-left: 0.65rem;
    padding-right: 0.65rem;
  }
}

/* ——— 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;
  }

  .js .reveal,
  .js .reveal[data-reveal] {
    opacity: 1;
    transform: none;
  }

  .stars,
  .stars-b,
  .orbit-ring,
  .orbit-ring-b,
  .hero-character,
  .reward-plush,
  .bit {
    animation: none !important;
  }

  .gallery-layout figure:hover,
  .gallery-layout figure:hover img {
    transform: none;
  }
}
