:root {
  --bg: #071013;
  --bg-deep: #0b0622;
  --surface: rgba(19, 18, 54, 0.72);
  --surface-strong: rgba(27, 24, 78, 0.9);
  --ink: #f2f7f2;
  --muted: rgba(242, 247, 242, 0.78);
  --primary: #2de2e6;
  --secondary: #f706cf;
  --accent: #f5d547;
  --line: rgba(45, 226, 230, 0.24);
  --line-strong: rgba(247, 6, 207, 0.28);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(247, 6, 207, 0.18), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(45, 226, 230, 0.16), transparent 20%),
    radial-gradient(circle at 50% 80%, rgba(245, 213, 71, 0.1), transparent 22%),
    linear-gradient(180deg, #0a0430 0%, #071013 52%, #09151c 100%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.sky-noise,
.orbital-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.sky-noise {
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,.9) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(255,255,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 30%, rgba(245,213,71,.9) 0 1.5px, transparent 3px),
    radial-gradient(circle at 85% 60%, rgba(45,226,230,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 55% 45%, rgba(247,6,207,.6) 0 1px, transparent 2px);
  background-size: 260px 260px, 320px 320px, 420px 420px, 340px 340px, 380px 380px;
  opacity: .5;
}

.orbital-grid {
  background:
    linear-gradient(rgba(45,226,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,226,230,.05) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 88%);
  opacity: .3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 16, 19, 0.58);
  border-bottom: 1px solid rgba(45, 226, 230, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(45, 226, 230, 0.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text strong {
  font-family: "Baloo 2", cursive;
  font-size: 1.3rem;
  letter-spacing: .01em;
}
.brand-text em {
  font-style: normal;
  color: var(--primary);
  font-weight: 800;
  font-size: .92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  color: var(--muted);
  font-weight: 800;
  font-size: .96rem;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--ink); }

.nav-cta {
  padding: 12px 16px;
  border-radius: 999px;
  color: #071013 !important;
  background: linear-gradient(135deg, var(--accent), #fff18e);
  box-shadow: 0 10px 24px rgba(245, 213, 71, 0.25);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--ink);
  border-radius: 999px;
  margin: 5px 0;
}

.hero {
  position: relative;
  padding: 18px 0 30px;
}
.hero-banner-wrap {
  position: absolute;
  inset: 0 0 auto 0;
  height: min(74vh, 760px);
  overflow: hidden;
  z-index: -1;
}
.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.03) contrast(1.02);
}
.hero-banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 5, 28, 0.24) 0%, rgba(7, 16, 19, 0.28) 35%, rgba(7, 16, 19, 0.94) 100%),
    linear-gradient(90deg, rgba(7, 16, 19, 0.24) 0%, rgba(7, 16, 19, 0.05) 50%, rgba(7, 16, 19, 0.42) 100%);
}

.hero-inner {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 34px;
  padding-top: 130px;
  padding-bottom: 50px;
}

.hero-copy {
  max-width: 660px;
}

.kicker-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242, 247, 242, 0.18);
  background: rgba(11, 7, 38, 0.52);
  color: var(--ink);
  font-weight: 800;
  font-size: .92rem;
}
.live-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px rgba(45, 226, 230, 0.12);
}

h1, h2, h3 {
  margin: 0;
  line-height: .96;
  font-family: "Baloo 2", cursive;
}

h1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 18px;
}
.title-cloud {
  font-size: clamp(3.3rem, 9vw, 7.8rem);
  letter-spacing: -.02em;
  color: var(--ink);
  text-shadow:
    0 5px 0 rgba(30, 44, 120, 0.55),
    0 0 28px rgba(45, 226, 230, 0.14);
}
.ticker-burst {
  font-size: clamp(2rem, 5vw, 4.2rem);
  color: var(--primary);
  text-shadow: 0 4px 0 rgba(15, 56, 70, 0.7);
}

.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.65;
  color: var(--ink);
  max-width: 58ch;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  border: 0;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .01em;
  padding: 15px 22px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: #081014;
  background: linear-gradient(135deg, var(--primary), #8ef4f6);
  box-shadow: 0 16px 30px rgba(45, 226, 230, 0.24);
}
.btn-secondary {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(247, 6, 207, 0.2), rgba(247, 6, 207, 0.08));
  border: 1px solid rgba(247, 6, 207, 0.35);
}

.countdown-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.count-pill {
  min-width: 170px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(11, 7, 38, 0.7);
  border: 1px solid rgba(45, 226, 230, 0.16);
  box-shadow: var(--shadow);
}
.count-num {
  display: block;
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.count-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.hero-sticker-field {
  position: relative;
  min-height: 620px;
}
.sticker-card {
  position: absolute;
  border-radius: 26px;
  background: rgba(15, 10, 49, 0.76);
  border: 2px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.moon-card {
  top: 24px;
  right: 18px;
  width: min(340px, 100%);
  padding: 24px;
  transform: rotate(4deg);
}
.moon-card h2 {
  font-size: 2rem;
  margin: 8px 0 10px;
}
.moon-card p { margin: 0; line-height: 1.6; color: var(--muted); }
.sticker-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--accent), #ffef96);
  color: #5e4200;
}

.mascot-orbit {
  position: absolute;
  left: 24px;
  top: 150px;
  width: min(460px, 100% - 30px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  --mx: 0px;
  --my: 0px;
  transform: translate(var(--mx), var(--my));
}
.mascot-core {
  width: 74%;
  max-width: 320px;
  filter: drop-shadow(0 18px 40px rgba(45, 226, 230, 0.18));
  z-index: 2;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed rgba(45, 226, 230, 0.34);
}
.orbit-ring-one { inset: 10%; animation: spin 20s linear infinite; }
.orbit-ring-two {
  inset: 0;
  border-color: rgba(247, 6, 207, 0.25);
  transform: rotate(18deg);
  animation: spinReverse 26s linear infinite;
}
.spark {
  position: absolute;
  width: 16px;
  height: 16px;
  background: radial-gradient(circle, #fff 0%, var(--accent) 45%, transparent 70%);
  border-radius: 50%;
}
.spark-1 { top: 12%; left: 18%; }
.spark-2 { right: 10%; top: 32%; }
.spark-3 { bottom: 17%; left: 11%; }

.rocket-card {
  left: 14px;
  bottom: 24px;
  width: 280px;
  padding: 18px 20px;
  transform: rotate(-5deg);
  background: linear-gradient(145deg, rgba(247, 6, 207, 0.18), rgba(45, 226, 230, 0.12));
}
.mini-stats {
  display: grid;
  gap: 10px;
}
.mini-stats span {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
  font-weight: 800;
}

.float-a, .float-b, .float-c { animation: bob 6s ease-in-out infinite; }
.float-b { animation-delay: -1.4s; }
.float-c { animation-delay: -2.2s; }

.section {
  padding: 90px 0;
  position: relative;
}
.eyebrow {
  display: inline-block;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-intro h2,
.lore-copy h2,
.how-card h2,
.token-card h2,
.faq-intro h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 12px;
}
.section-intro p,
.lore-copy p,
.how-card p,
.token-card p,
.faq-intro p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}
.centered { text-align: center; }

.launchpad-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.launchpad-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mission-board {
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.mission-board h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.mission-a {
  background: linear-gradient(160deg, rgba(45,226,230,.14), rgba(255,255,255,.04));
}
.mission-b {
  background: linear-gradient(160deg, rgba(247,6,207,.16), rgba(255,255,255,.04));
  transform: translateY(26px);
}
.mission-c {
  grid-column: span 2;
  background: linear-gradient(160deg, rgba(245,213,71,.14), rgba(255,255,255,.04));
}

.lore-layout {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 32px;
  align-items: center;
}
.lore-comic {
  display: grid;
  gap: 16px;
}
.comic-panel {
  position: relative;
  padding: 22px 24px 22px 72px;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  line-height: 1.65;
  color: var(--ink);
}
.panel-1 { transform: rotate(-2deg); }
.panel-2 { transform: rotate(2.5deg); }
.panel-3 { transform: rotate(-1deg); }
.panel-tag {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--secondary), #ff75dc);
  font-family: "Baloo 2", cursive;
  font-size: 1.1rem;
}

blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--primary);
  background: rgba(45,226,230,.08);
  border-radius: 0 18px 18px 0;
  font-size: 1.1rem;
  color: var(--ink);
}

.booster-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.booster {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  min-height: 260px;
}
.booster-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.booster-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), #b4feff);
  color: #092429;
  display: grid;
  place-items: center;
  font-family: "Baloo 2", cursive;
  font-size: 1.2rem;
}
.booster h3 {
  font-size: 1.6rem;
}
.booster p { color: var(--muted); line-height: 1.7; }

.how-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.how-card,
.token-card,
.faq-list,
.faq-intro {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 16px;
}
.steps li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  line-height: 1.6;
  color: var(--ink);
}
.steps strong { color: var(--accent); min-width: 28px; }

.token-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 22px 0;
}
.token-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(7,16,19,.5);
  border: 1px solid rgba(45,226,230,.14);
}
.token-grid span {
  display: block;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.token-grid strong { font-size: 1rem; }

.contract-strip {
  width: 100%;
  text-align: left;
  background: linear-gradient(135deg, rgba(245,213,71,.18), rgba(247,6,207,.14));
  color: var(--ink);
  border: 1px solid rgba(245,213,71,.28);
  border-radius: 20px;
  padding: 16px 18px;
  cursor: pointer;
}
.contract-strip span,
.contract-strip em {
  display: block;
}
.contract-strip span {
  color: var(--muted);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.contract-strip strong {
  display: block;
  margin: 4px 0;
  word-break: break-all;
}
.contract-strip em {
  font-style: normal;
  color: var(--accent);
  font-weight: 800;
}

.timeline {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: linear-gradient(var(--primary), var(--secondary), var(--accent));
  border-radius: 999px;
}
.timeline-stop {
  position: relative;
  margin-left: 46px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.stop-dot {
  position: absolute;
  left: -38px;
  top: 28px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(245,213,71,.12);
}
.timeline-stop h3 {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.timeline-stop p { margin: 0; color: var(--muted); line-height: 1.7; }

.faq-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-list details {
  border-radius: 18px;
  background: rgba(7,16,19,.45);
  border: 1px solid rgba(45,226,230,.13);
  padding: 16px 18px;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding: 28px 0 42px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.09);
}
.footer-wrap p { margin: 4px 0 0; color: var(--muted); }
.back-top {
  font-weight: 900;
  color: var(--primary);
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(11, 7, 38, 0.92);
  border: 1px solid rgba(45,226,230,.24);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 70;
}
.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes spinReverse {
  from { transform: rotate(18deg); }
  to { transform: rotate(-342deg); }
}

@media (max-width: 1080px) {
  .hero-inner,
  .launchpad-layout,
  .lore-layout,
  .how-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
    padding-top: 120px;
  }

  .hero-sticker-field {
    min-height: 780px;
    overflow: clip;
  }

  .moon-card { right: auto; left: 10px; }
  .mascot-orbit {
    left: 50%;
    top: 190px;
    width: min(420px, calc(100% - 24px));
    transform: translate(calc(-50% + var(--mx)), var(--my));
  }
  .rocket-card { right: 12px; left: auto; bottom: 40px; }

  .booster-track,
  .launchpad-right {
    grid-template-columns: 1fr;
  }
  .mission-c { grid-column: span 1; }
  .mission-b { transform: none; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 22px;
    background: rgba(10, 6, 34, .96);
    border: 1px solid rgba(45,226,230,.18);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }

  h1 { align-items: flex-start; }
  .title-cloud { font-size: clamp(2.8rem, 16vw, 5rem); }
  .ticker-burst { font-size: clamp(1.8rem, 9vw, 3.2rem); }
  .hero-sticker-field {
    min-height: 660px;
    overflow: clip;
  }
  .mascot-orbit {
    left: 50%;
    width: min(320px, calc(100% - 40px));
    top: 210px;
    transform: translateX(-50%);
  }
  .moon-card { width: calc(100% - 20px); }
  .rocket-card { width: 220px; }
  .token-grid { grid-template-columns: 1fr; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 20px)); }
  .nav-wrap { min-height: 72px; }
  .brand-logo { width: 48px; height: 48px; }
  .hero { padding-top: 8px; }
  .hero-inner { padding-top: 92px; min-height: auto; }
  .status-pill { font-size: .82rem; }
  .hero-actions, .countdown-ribbon { flex-direction: column; }
  .btn, .count-pill { width: 100%; }
  .hero-sticker-field {
    min-height: 520px;
    overflow: clip;
  }
  .moon-card { top: 0; padding: 18px; }
  .moon-card h2 { font-size: 1.6rem; }
  .mascot-orbit {
    left: 50%;
    top: 176px;
    width: min(180px, calc(100% - 120px));
    transform: translateX(-50%);
  }
  .mascot-core {
    width: 68%;
    max-width: 120px;
  }
  .spark {
    width: 12px;
    height: 12px;
  }
  .rocket-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(-3deg);
    bottom: 18px;
    width: min(210px, 82%);
  }
  .section { padding: 72px 0; }
  .how-card, .token-card, .faq-list, .faq-intro, .timeline-stop, .booster, .mission-board { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
