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

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

html,
body {
  overflow-x: hidden;
}

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

button,
a {
  color: inherit;
}

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

ul,
ol {
  list-style: none;
}

code {
  font-family: inherit;
}

/* Variables */
:root {
  --bnb: #f3ba2f;
  --bnb-light: #ffd84d;
  --bnb-deep: #ffb800;
  --bnb-dim: #c49214;
  --black: #0a0a0a;
  --ink: #111111;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.62);
  --faint: rgba(255, 255, 255, 0.12);
  --glass: rgba(17, 17, 17, 0.62);
  --stroke: rgba(243, 186, 47, 0.28);
  --glow: rgba(243, 186, 47, 0.45);
  --display: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  --sans: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --nav-h: 76px;
  --radius: 18px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1180px;
}

/* Global */
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

::selection {
  background: var(--bnb);
  color: var(--black);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 10000;
  background: var(--bnb);
  color: var(--black);
  padding: 8px 14px;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cosmic-glow {
  position: fixed;
  inset: -20% -10% auto;
  height: 80vh;
  background:
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(243, 186, 47, 0.16), transparent 62%),
    radial-gradient(ellipse 40% 40% at 20% 20%, rgba(255, 184, 0, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: ambientPulse 9s ease-in-out infinite;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.045;
  mix-blend-mode: overlay;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main,
.nav,
.footer,
.mobile-menu {
  position: relative;
  z-index: 2;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--bnb);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  font-weight: 400;
}

.section-title em {
  font-style: normal;
  color: var(--bnb);
  text-shadow: 0 0 40px var(--glow);
}

.section-lead {
  margin-top: 16px;
  color: var(--muted);
  max-width: 520px;
}

/* Buttons */
.btn {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  overflow: hidden;
  isolation: isolate;
  touch-action: manipulation;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s, color 0.35s, border-color 0.35s;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.72rem;
}

.btn-lg {
  padding: 16px 28px;
  font-size: 0.86rem;
}

.btn-xl {
  padding: 20px 36px;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--bnb-light), var(--bnb) 40%, var(--bnb-deep));
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.35), 0 10px 30px rgba(243, 186, 47, 0.28);
}

.btn-primary:hover {
  transform: scale(1.045);
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.6), 0 14px 40px rgba(243, 186, 47, 0.45);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover {
  transform: scale(1.04);
  border-color: var(--bnb);
  box-shadow: 0 0 24px rgba(243, 186, 47, 0.18);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.38) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

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

.btn-arrow {
  display: inline-block;
  transition: transform 0.35s var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-copy {
  padding: 8px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  border-radius: 999px;
  background: var(--bnb);
  color: var(--black);
  font-weight: 700;
}

.btn-copy.is-copied {
  background: #d6ff7a;
  transform: scale(1.06);
}

.btn-copy-inline {
  margin-left: 12px;
}

/* Cursor */
.cursor {
  display: none;
}

body.has-custom-cursor .cursor {
  display: block;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.cursor-dot,
.cursor-ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: var(--bnb);
  box-shadow: 0 0 12px var(--bnb);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(243, 186, 47, 0.7);
  transition: width 0.25s, height 0.25s, margin 0.25s, border-color 0.25s, box-shadow 0.25s;
}

body.cursor-grow .cursor-ring {
  width: 56px;
  height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--bnb);
  box-shadow: 0 0 22px var(--glow);
}

/* Navbar */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  padding: 0 18px;
  margin-bottom: -90px;
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(243, 186, 47, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-inner.is-scrolled {
  background: rgba(10, 10, 10, 0.82);
  border-color: rgba(243, 186, 47, 0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--stroke);
  transition: transform 0.5s var(--ease);
}

.nav-logo:hover img {
  transform: rotate(-12deg) scale(1.06);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 10px;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 1px;
  background: var(--bnb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  border-radius: 50%;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  pointer-events: none;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}

.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  align-items: stretch;
  gap: 8px;
  padding: 96px 5vw 0;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.hero-left {
  position: relative;
  z-index: 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--bnb-light);
  background: rgba(243, 186, 47, 0.06);
  width: fit-content;
}

.hero-title {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(5.6rem, 14vw, 11.5rem);
  line-height: 0.78;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-title-cat {
  color: var(--bnb);
  text-shadow: 0 0 48px var(--glow);
}

.hero-ticker {
  margin-top: 10px;
}

.hero-ticker span {
  display: inline-block;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.22em;
  color: var(--bnb-light);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-shadow: 0 0 22px var(--glow);
}

.hero-lead {
  margin-top: 22px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.25;
  max-width: 18em;
}

.hero-sub {
  margin-top: 14px;
  color: var(--muted);
  max-width: 22em;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-x {
  display: inline-block;
  margin-top: 18px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  position: relative;
  width: fit-content;
}

.hero-x::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--bnb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.hero-x:hover {
  color: var(--white);
}

.hero-x:hover::after {
  transform: scaleX(1);
}

.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: calc(100dvh - 88px);
  overflow: visible;
}

.hero-visual {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  margin-left: -12%;
  margin-bottom: -36px;
  will-change: transform;
}

.hero-visual-glow {
  position: absolute;
  inset: 22% 12% 8%;
  background: radial-gradient(ellipse at center, rgba(243, 186, 47, 0.4), transparent 68%);
  filter: blur(18px);
  animation: glowPulse 4.5s ease-in-out infinite;
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  inset: 10% 6% 6%;
  border: 1px dashed rgba(243, 186, 47, 0.22);
  border-radius: 50%;
  animation: spinSlow 48s linear infinite;
  pointer-events: none;
}

.hero-visual-float {
  animation: heroFloat 7s ease-in-out infinite;
  transform-origin: 50% 85%;
}

.hero-visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(54vw, 860px);
  max-height: calc(100dvh - 72px);
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 28px 46px rgba(0, 0, 0, 0.55));
}

.mission-badge {
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--stroke);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

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

/* Contract */
.ca-bar {
  padding: 0 6vw 28px;
  position: relative;
  z-index: 4;
}

.ca-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 14px 22px;
  background: linear-gradient(90deg, rgba(243, 186, 47, 0.1), rgba(17, 17, 17, 0.7));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  --glow-x: 50%;
  --glow-y: 50%;
}

.ca-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--bnb);
  font-weight: 700;
}

.ca-value {
  flex: 1;
  min-width: 0;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Marquee */
.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(243, 186, 47, 0.16);
  border-bottom: 1px solid rgba(243, 186, 47, 0.16);
  background: rgba(243, 186, 47, 0.04);
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

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

.marquee-group {
  display: flex;
  align-items: center;
  gap: 42px;
  padding-right: 42px;
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--bnb);
  white-space: nowrap;
}

.marquee-group span:nth-child(odd) {
  color: var(--white);
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 120px 6vw;
  max-width: 1320px;
  margin: 0 auto;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  aspect-ratio: 1;
}

.portrait {
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  inset: 11%;
  border: 2px solid rgba(243, 186, 47, 0.45);
  box-shadow: 0 0 60px rgba(243, 186, 47, 0.22), inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(243, 186, 47, 0.2);
  pointer-events: none;
}

.orbit-ring-a {
  inset: 0;
  animation: spinSlow 36s linear infinite;
  border-style: dashed;
}

.orbit-ring-b {
  inset: 7%;
  animation: spinSlow 22s linear infinite reverse;
  border-color: rgba(255, 255, 255, 0.12);
}

.orbit-moon {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--bnb-light), var(--bnb-dim));
  box-shadow: 0 0 16px var(--glow);
  top: 4%;
  right: 18%;
  animation: bob 5s ease-in-out infinite;
}

.bnb-shape {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--bnb);
  transform: rotate(45deg);
  box-shadow: 0 0 16px var(--glow);
}

.bnb-shape-1 {
  bottom: 18%;
  left: 2%;
  animation: bob 4.5s ease-in-out infinite 0.4s;
}

.bnb-shape-2 {
  top: 22%;
  right: 0;
  width: 12px;
  height: 12px;
  animation: bob 6s ease-in-out infinite 0.8s;
}

.deco-star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
}

.deco-star-1 { top: 12%; left: 12%; }
.deco-star-2 { bottom: 14%; right: 10%; }

.deco-paw {
  position: absolute;
  font-size: 1.4rem;
  opacity: 0.55;
  filter: grayscale(0.2);
}

.deco-paw-1 {
  bottom: 6%;
  left: 22%;
  transform: rotate(-18deg);
  animation: bob 6s ease-in-out infinite;
}

.deco-paw-2 {
  top: 8%;
  right: 6%;
  transform: rotate(22deg);
  animation: bob 5s ease-in-out infinite 0.6s;
}

.about-body {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-up {
  font-family: var(--display);
  font-size: 4.5rem;
  color: var(--bnb);
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 0 40px var(--glow);
}

.about-formula {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.about-formula .plus {
  color: var(--bnb);
  opacity: 0.8;
}

.bnb-chip {
  background: var(--bnb);
  color: var(--black);
  padding: 2px 8px;
  border-radius: 6px;
}

/* Mission */
.mission {
  padding: 80px 6vw 120px;
  max-width: 1320px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
  counter-reset: stage;
}

.mission-card {
  --glow-x: 50%;
  --glow-y: 30%;
  position: relative;
  padding: 28px 22px 26px;
  min-height: 280px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(17, 17, 17, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}

.mission-card:hover,
.buy-card:hover,
.token-panel:hover {
  border-color: rgba(243, 186, 47, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(243, 186, 47, 0.12);
  transform: translateY(-6px);
}

.mission-num {
  display: block;
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 0.85;
  color: var(--bnb);
  text-shadow: 0 0 24px var(--glow);
}

.mission-card h3,
.buy-card h3 {
  margin-top: 18px;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.mission-card p,
.buy-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.mission-icon {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 1.6rem;
  opacity: 0.8;
}

/* Moon */
.moon-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 80px 6vw;
}

.moon-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, #fff, transparent),
    radial-gradient(1px 1px at 80% 30%, #ffd84d, transparent),
    radial-gradient(1.5px 1.5px at 30% 80%, #fff, transparent),
    radial-gradient(1px 1px at 90% 70%, #fff, transparent),
    radial-gradient(1px 1px at 60% 15%, #ffd84d, transparent);
  opacity: 0.7;
  pointer-events: none;
}

.moon-body {
  position: relative;
  width: min(78vw, 760px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.moon-sphere {
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffe07a 0%, var(--bnb-light) 18%, var(--bnb) 42%, #a37610 68%, #3a2a08 100%);
  box-shadow:
    0 0 80px 18px rgba(243, 186, 47, 0.28),
    inset -50px -30px 70px rgba(0, 0, 0, 0.45),
    inset 20px 10px 30px rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.moon-crater {
  position: absolute;
  border-radius: 50%;
  background: rgba(80, 55, 8, 0.35);
  box-shadow: inset 4px 4px 10px rgba(0, 0, 0, 0.25);
}

.c1 { width: 18%; height: 18%; top: 22%; left: 18%; }
.c2 { width: 10%; height: 10%; top: 48%; left: 62%; }
.c3 { width: 14%; height: 14%; top: 64%; left: 28%; }
.c4 { width: 7%; height: 7%; top: 18%; left: 58%; }
.c5 { width: 9%; height: 9%; top: 72%; left: 70%; }

.moon-halo {
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  box-shadow: 0 0 120px 40px rgba(243, 186, 47, 0.18);
  pointer-events: none;
}

.moon-orbit {
  position: absolute;
  border: 1px dashed rgba(243, 186, 47, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.moon-orbit-1 {
  inset: -2%;
  animation: spinSlow 22s linear infinite;
}

.moon-orbit-2 {
  inset: 10%;
  animation: spinSlow 14s linear infinite reverse;
}

.moon-orbiter {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bnb);
  box-shadow: 0 0 20px var(--glow);
  animation: spinSlow 22s linear infinite reverse;
}

.orbit-dot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: 50%;
  background: var(--bnb-light);
  box-shadow: 0 0 12px var(--bnb);
}

.moon-statement {
  position: absolute;
  left: 6vw;
  top: 22%;
  z-index: 3;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.65);
  pointer-events: none;
}

.moon-statement p {
  font-family: var(--display);
  font-size: clamp(3.4rem, 9vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
}

.moon-statement span {
  display: block;
}

.moon-accent {
  color: var(--bnb);
  text-shadow: 0 0 40px var(--glow);
}

.moon-fore {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: auto;
  height: 24%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.moon-fore-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.fore-horizon {
  position: absolute;
  left: -18%;
  width: 136%;
  height: 240%;
  bottom: -168%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 8%, rgba(255, 216, 77, 0.28) 0%, transparent 32%),
    linear-gradient(180deg, #4a3a0c 0%, #1a1608 36%, #0a0a0a 100%);
  box-shadow: 0 -24px 70px rgba(243, 186, 47, 0.18);
}

.fore-ridge {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 216, 77, 0.55), transparent);
}

.fore-crater {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  box-shadow: inset 2px 3px 8px rgba(0, 0, 0, 0.35);
}

.fc1 { width: 64px; height: 22px; left: 14%; top: 42%; }
.fc2 { width: 42px; height: 14px; left: 38%; top: 58%; }
.fc3 { width: 54px; height: 18px; right: 18%; top: 48%; }

.fore-paw {
  position: absolute;
  right: 16%;
  top: 28%;
  font-size: 1.6rem;
  opacity: 0.45;
  animation: bob 5s ease-in-out infinite;
}

/* Token */
.token,
.buy {
  padding: 100px 6vw;
  max-width: 1320px;
  margin: 0 auto;
}

.token-panel {
  --glow-x: 30%;
  --glow-y: 20%;
  margin-top: 40px;
  border: 1px solid rgba(243, 186, 47, 0.22);
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(243, 186, 47, 0.06), rgba(17, 17, 17, 0.4));
}

.token-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.token-row:last-child {
  border-bottom: 0;
}

.token-key {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  font-weight: 600;
}

.token-val {
  font-size: 1.2rem;
  font-weight: 600;
}

.token-ticker {
  color: var(--bnb);
  letter-spacing: 0.12em;
}

.token-ca {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* How To Buy */
.buy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.buy-card {
  --glow-x: 50%;
  --glow-y: 20%;
  position: relative;
  padding: 28px 22px 26px;
  min-height: 260px;
  background: rgba(17, 17, 17, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
}

.buy-step {
  font-family: var(--display);
  font-size: 3.4rem;
  color: var(--bnb);
  line-height: 1;
}

.buy-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--bnb);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  position: relative;
}

.buy-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--bnb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.buy-link:hover::after {
  transform: scaleX(1);
}

.glow-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(240px circle at var(--glow-x) var(--glow-y), rgba(243, 186, 47, 0.16), transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.glow-track {
  position: relative;
}

.glow-track:hover::before {
  opacity: 1;
}

/* Community */
.community {
  position: relative;
  text-align: center;
  padding: 140px 6vw;
  overflow: hidden;
}

.community-copy {
  margin: 22px auto 36px;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 500;
  line-height: 1.3;
}

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

.float-item {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.55;
  animation: bob 6s ease-in-out infinite;
}

.f1 { top: 18%; left: 12%; }
.f2 { top: 28%; right: 14%; animation-delay: 0.5s; }
.f3 { bottom: 22%; left: 18%; animation-delay: 0.9s; }
.f4 { top: 16%; left: 48%; animation-delay: 1.2s; font-size: 2rem; }
.f5 { bottom: 18%; right: 20%; animation-delay: 0.3s; }
.f6 { top: 60%; left: 8%; animation-delay: 1.5s; }
.f7 { top: 55%; right: 8%; animation-delay: 0.7s; }

.cat-sil {
  position: absolute;
  width: 42px;
  height: 28px;
  background: rgba(243, 186, 47, 0.35);
  border-radius: 50% 50% 40% 40%;
  opacity: 0.5;
}

.cat-sil::before,
.cat-sil::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 16px;
  background: inherit;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  top: -10px;
}

.cat-sil::before { left: 6px; }
.cat-sil::after { right: 6px; }

.s1 { top: 34%; left: 22%; animation: bob 7s ease-in-out infinite; }
.s2 { bottom: 28%; right: 24%; animation: bob 6s ease-in-out infinite 0.8s; }

/* Banner */
.banner-break {
  padding: 20px 4vw 80px;
}

.banner-frame {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(243, 186, 47, 0.28);
  box-shadow: 0 0 80px rgba(243, 186, 47, 0.18), 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #050505;
}

.banner-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  will-change: transform;
}

/* Final CTA */
.final-cta {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 6vw;
  overflow: hidden;
}

.final-silhouette {
  position: absolute;
  width: min(70vw, 720px);
  opacity: 0.12;
  filter: grayscale(0.2) brightness(0.8);
  pointer-events: none;
  animation: bob 8s ease-in-out infinite;
}

.final-title {
  font-family: var(--display);
  font-size: clamp(4.4rem, 12vw, 11rem);
  line-height: 0.82;
}

.final-title span {
  display: block;
}

.final-accent {
  color: var(--bnb);
  text-shadow: 0 0 50px var(--glow);
}

.final-copy {
  margin: 22px 0 36px;
  color: var(--muted);
  font-size: 1.15rem;
}

.final-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Footer */
.footer {
  padding: 48px 6vw 36px;
  border-top: 1px solid rgba(243, 186, 47, 0.16);
  background: linear-gradient(180deg, transparent, rgba(243, 186, 47, 0.04));
}

.footer-top {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--stroke);
}

.footer-brand strong {
  display: block;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.footer-brand span {
  color: var(--bnb);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.footer-network {
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--bnb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

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

.footer-links a:hover::after {
  transform: scaleX(1);
}

.footer-bottom {
  max-width: 1180px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
}

.footer-disclaimer {
  max-width: 420px;
}

/* Animations */
@keyframes heroFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-0.4deg); }
  50% { transform: translate3d(0, -14px, 0) rotate(0.4deg); }
}

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

@keyframes ambientPulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

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

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

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(8px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

body.is-ready .hero-badge { transition-delay: 0.05s; }
body.is-ready .hero-title { transition-delay: 0.16s; }
body.is-ready .hero-ticker { transition-delay: 0.32s; }
body.is-ready .hero-lead { transition-delay: 0.5s; }
body.is-ready .hero-sub { transition-delay: 0.6s; }
body.is-ready .hero-ctas { transition-delay: 0.72s; }
body.is-ready .hero-x { transition-delay: 0.84s; }
body.is-ready .mission-badge { transition-delay: 0.9s; }

body.is-ready .hero-visual {
  animation: heroEnter 1.15s var(--ease) both;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    translate: 40px 80px;
    scale: 0.96;
  }
  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

.nav {
  opacity: 0;
  transform: translateY(-16px);
  animation: navDrop 0.7s var(--ease) 0.1s forwards;
}

@keyframes navDrop {
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive */
@media (min-width: 1440px) {
  .hero-visual img {
    max-width: min(52vw, 940px);
    max-height: calc(100dvh - 56px);
  }
}

@media (max-width: 1200px) {
  .nav-links a {
    padding: 8px 7px;
    letter-spacing: 0.1em;
  }

  .hero-visual {
    margin-left: -6%;
  }

  .hero-visual img {
    max-width: min(58vw, 720px);
  }

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

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(8, 8, 8, 0.96);
    padding: 100px 32px 40px;
    gap: 32px;
    transform: translateX(110%);
    transition: transform 0.45s var(--ease);
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-menu.is-open {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: grid;
    gap: 8px;
  }

  .mobile-menu nav a {
    text-decoration: none;
    font-family: var(--display);
    font-size: clamp(2.4rem, 8vw, 3.6rem);
    letter-spacing: 0.06em;
    line-height: 1.1;
  }

  .mobile-menu-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 108px 6vw 0;
  }

  .hero-left {
    padding-bottom: 32px;
  }

  .hero-right {
    min-height: 0;
    height: auto;
    order: -1;
    justify-content: center;
  }

  .hero-visual {
    position: relative;
    margin: 0 auto -16px;
  }

  .hero-visual img {
    max-width: min(520px, 100%);
    max-height: min(72vh, 680px);
    margin: 0 auto;
  }

  .mission-badge {
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .about-body {
    justify-items: center;
  }

  .about-formula {
    justify-content: center;
  }

  .section-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .moon-statement {
    left: 50%;
    top: auto;
    bottom: 10%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    mix-blend-mode: normal;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
    z-index: 4;
  }

  .moon-fore {
    height: 14%;
  }

  .token-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(4.6rem, 22vw, 7rem);
  }

  .hero-ctas,
  .final-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn,
  .final-actions .btn {
    width: 100%;
  }

  .ca-bar-inner {
    flex-wrap: wrap;
  }

  .mission-grid,
  .buy-grid {
    grid-template-columns: 1fr;
  }

  .banner-frame {
    border-radius: 16px;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 430px) {
  .nav {
    top: 8px;
    padding: 0 10px;
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-visual {
    width: auto;
    max-width: 100%;
    margin-left: 0;
  }

  .hero-visual img {
    max-width: 100%;
    max-height: min(68vh, 560px);
  }

  .about-up {
    font-size: 3.4rem;
  }

  .token-row,
  .ca-bar-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mission-badge {
    font-size: 0.64rem;
  }
}

@media (max-width: 390px) {
  .hero-lead {
    font-size: 1.05rem;
  }

  .btn-lg {
    padding: 14px 20px;
  }
}

@media (max-width: 360px) {
  .nav-logo span {
    font-size: 0.74rem;
  }

  .hero-title {
    font-size: 4.2rem;
  }
}

@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;
    scroll-behavior: auto !important;
  }

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

  .nav {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero-visual-float,
  .hero-visual-glow,
  .hero-orbit,
  .marquee-track {
    animation: none !important;
  }

  body.is-ready .hero-visual {
    animation: none;
  }
}
