/* =========================================================
   MEMECOIN.ORG CLONE — visual system
   Colors, pixel fonts, space journey, motion
   ========================================================= */

@font-face {
  font-family: "PixelOperator";
  src: url("_next/static/media/d4328700c7c43c5e-s.p.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "PixelOperator";
  src: url("_next/static/media/1f2b740570f813dd-s.p.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "PixelOperator8";
  src: url("_next/static/media/923348a36cff9142-s.p.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "CousineLocal";
  src: url("_next/static/media/d16270d7490c791f-s.p.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #18202e;
  --bg-deep: #010e30;
  --bg-mid: #102c52;
  --bg-card: #122f55;
  --sky-top: #4ea5d9;
  --sky-mid: #5dc2fa;
  --sky-bright: #60c7ff;
  --sky-deep: #295d88;
  --text: #ffffff;
  --text-dim: #a2aec0;
  --text-mute: #6b7a90;
  --lavender: #a89cc8;
  --cyan: #35b0bb;
  --cyan-bright: #5cc0f6;
  --green: #64b865;
  --yellow: #f8c34b;
  --red: #e53e3d;
  --coral: #f5665e;
  --purple: #8982f3;
  --gray: #a2aec0;
  --header-h: 64px;
  --chain-bar-h: 28px;
  --rh-green: #00c805;
  --pixel: "PixelOperator", "VT323", "Courier New", monospace;
  --pixel8: "PixelOperator8", "PixelOperator", monospace;
  --body: "CousineLocal", "Cousine", ui-monospace, monospace;
  --ease-out: cubic-bezier(0.15, 1.15, 0.6, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: crosshair;
}

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

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

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

.pixel {
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

.pixel-font {
  font-family: var(--pixel);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #121210;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s var(--ease-smooth), visibility 0.5s;
}
.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-coin {
  animation: bob 1.2s ease-in-out infinite;
  filter: drop-shadow(0 0 18px rgba(248, 195, 75, 0.45));
}
.loader-bar {
  width: 160px;
  height: 8px;
  border: 2px solid #fff;
  image-rendering: pixelated;
  position: relative;
  overflow: hidden;
}
.loader-bar span {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: 30%;
  background: var(--yellow);
  animation: loadBar 1.1s linear infinite;
}
.loader p {
  color: var(--text-dim);
  font-size: 14px;
}

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

/* ---------- Chain bar (Robinhood) ---------- */
.chain-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--chain-bar-h);
  overflow: hidden;
  background: linear-gradient(90deg, #041a08 0%, #0a2e12 50%, #041a08 100%);
  border-bottom: 1px solid rgba(0, 200, 5, 0.45);
  color: var(--rh-green);
  font-size: 11px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
}
.chain-bar-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  padding-left: 100%;
}
.chain-bar-track span {
  flex-shrink: 0;
  text-shadow: 0 0 8px rgba(0, 200, 5, 0.45);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: var(--chain-bar-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: linear-gradient(180deg, rgba(1, 14, 48, 0.85) 0%, rgba(1, 14, 48, 0.35) 70%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(18, 32, 46, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chain-pill {
  display: none;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: #041404;
  background: linear-gradient(180deg, #39e63f 0%, #00c805 100%);
  border: 1px solid #9dff9d;
  padding: 3px 8px;
  box-shadow: 0 0 12px rgba(0, 200, 5, 0.35);
  text-shadow: none;
}
@media (min-width: 520px) {
  .chain-pill { display: inline-block; }
}
.brand-logo {
  width: 36px;
  height: 36px;
  animation: spinSlow 12s linear infinite;
}
@keyframes spinSlow {
  to { transform: rotate(360deg); }
}
.brand-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--yellow);
  text-shadow: 2px 2px 0 #8b5a00, 0 0 12px rgba(248, 195, 75, 0.35);
}

.nav-desktop {
  display: none;
  gap: 22px;
}
.nav-desktop a {
  font-family: var(--pixel);
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s, text-shadow 0.2s;
}
.nav-desktop a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(96, 199, 255, 0.6);
}

.live-clock {
  display: none;
  font-size: 11px;
  color: var(--cyan-bright);
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding: 4px 10px;
  border: 1px solid rgba(96, 199, 255, 0.35);
  border-radius: 4px;
  background: rgba(1, 14, 48, 0.55);
  text-shadow: 0 0 8px rgba(96, 199, 255, 0.45);
  animation: pulseText 2s ease-in-out infinite;
}
@media (min-width: 720px) {
  .live-clock { display: block; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* X (Twitter) — top-right, pixel meme style */
.btn-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  color: #f8c34b;
  background: linear-gradient(180deg, #1a2438 0%, #0a1424 100%);
  border: 2px solid #f8c34b;
  box-shadow:
    0 0 0 1px #8b5a00,
    0 3px 0 #8b5a00,
    0 0 16px rgba(248, 195, 75, 0.35);
  image-rendering: pixelated;
  text-decoration: none;
  cursor: pointer;
  order: 99; /* keep farthest right */
  transition: transform 0.15s, box-shadow 0.2s, color 0.2s, border-color 0.2s, background 0.2s;
}
.btn-x:hover {
  color: #0a1018;
  background: linear-gradient(180deg, #f8c34b 0%, #e09a1a 100%);
  border-color: #fff3a0;
  box-shadow:
    0 0 0 1px #8b5a00,
    0 4px 0 #8b5a00,
    0 0 28px rgba(248, 195, 75, 0.55);
  transform: translateY(-2px);
}
.btn-x:active {
  transform: translateY(1px);
  box-shadow: 0 0 0 1px #8b5a00, 0 1px 0 #8b5a00;
}
.inline-x-link {
  color: var(--cyan-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.inline-x-link:hover {
  color: var(--yellow);
}
.btn-x .x-logo {
  display: block;
  width: 18px;
  height: 18px;
  image-rendering: pixelated;
  shape-rendering: crispEdges;
}
@media (max-width: 480px) {
  .btn-x {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
  }
  .btn-x .x-logo {
    width: 16px;
    height: 16px;
  }
}

.planet-live {
  font-size: 11px;
  color: var(--cyan-bright);
  margin: 8px 0 12px;
  letter-spacing: 0.04em;
}

.nav-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: calc(var(--header-h) + var(--chain-bar-h));
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(18, 32, 46, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile a {
  font-family: var(--pixel);
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--pixel);
  font-size: 13px;
  padding: 10px 16px;
  border: 2px solid transparent;
  image-rendering: pixelated;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  text-align: center;
  line-height: 1.2;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-claim {
  background: linear-gradient(180deg, #f8c34b 0%, #e09a1a 100%);
  color: #1a1200;
  border-color: #fff3a0;
  box-shadow: 0 0 0 1px #8b5a00, 0 4px 0 #8b5a00, 0 0 20px rgba(248, 195, 75, 0.35);
  font-weight: 700;
  font-size: 12px;
}
.btn-claim:hover {
  box-shadow: 0 0 0 1px #8b5a00, 0 6px 0 #8b5a00, 0 0 28px rgba(248, 195, 75, 0.55);
}

.btn-hero {
  flex-direction: column;
  background: linear-gradient(180deg, #60c7ff 0%, #2b7fd4 100%);
  color: #03101f;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 2px #0a3a6e,
    0 6px 0 #0a3a6e,
    0 0 40px rgba(96, 199, 255, 0.45);
  padding: 14px 28px;
  font-size: 14px;
  max-width: 100%;
}
.btn-hero strong {
  font-size: 16px;
  letter-spacing: 0.06em;
}
.btn-pulse {
  animation: pulseText 1.4s ease-in-out infinite;
  opacity: 0.85;
  font-size: 12px;
}
@keyframes pulseText {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; text-shadow: 0 0 12px #fff; }
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}
.btn-outline:hover {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(96, 199, 255, 0.35);
}
.btn-solid {
  background: linear-gradient(180deg, #64b865 0%, #3d8a40 100%);
  border: 2px solid #a8e0aa;
  color: #041404;
  font-weight: 700;
  box-shadow: 0 4px 0 #245826;
}
.btn-sm {
  padding: 8px 14px;
  font-size: 12px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-h) + var(--chain-bar-h) + 24px) 16px 0;
  overflow: hidden;
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      #4ea5d9 0%,
      #5dc2fa 18%,
      #60c7ff 28%,
      #4ea5d9 38%,
      #295d88 52%,
      #214e77 62%,
      #102c52 74%,
      #010e30 88%,
      #18202e 100%
    );
  z-index: 0;
  transition: filter 0.3s;
}

.stars {
  position: absolute;
  inset: 40% 0 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.float-asset {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}

.cloud {
  opacity: 0.9;
  animation: drift 18s ease-in-out infinite;
}
.cloud-1 { top: 12%; left: 6%; width: 90px; animation-duration: 22s; }
.cloud-2 { top: 18%; right: 8%; width: 110px; animation-duration: 26s; animation-delay: -4s; }
.cloud-3 { top: 28%; left: 18%; width: 70px; animation-duration: 20s; animation-delay: -8s; }
.cloud-4 { top: 22%; right: 22%; width: 60px; animation-duration: 24s; animation-delay: -2s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(18px, -12px); }
}

.doge-rocket {
  top: 10%;
  right: 4%;
  width: min(160px, 28vw);
  z-index: 5;
  animation: rocket 6s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}
@keyframes rocket {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  50% { transform: translate(-12px, -28px) rotate(-4deg); }
}

.ufo {
  top: 36%;
  left: 5%;
  width: 56px;
  animation: ufo 8s ease-in-out infinite;
  opacity: 0.95;
}
@keyframes ufo {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 20px); }
}

.potz {
  top: 42%;
  right: 8%;
  width: 48px;
  animation: bob 3s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 640px;
  margin-top: 8vh;
}

.hero-coin {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 0 24px rgba(248, 195, 75, 0.5));
  animation: bob 2.4s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(28px, 7vw, 56px);
  line-height: 1.05;
  font-weight: 700;
}
.hero-title .line-1 {
  display: block;
  color: #fff;
  text-shadow: 3px 3px 0 rgba(1, 14, 48, 0.45);
}
.hero-title .line-2 {
  display: block;
  color: var(--yellow);
  font-size: 1.08em;
  text-shadow:
    3px 3px 0 #8b5a00,
    0 0 24px rgba(248, 195, 75, 0.55);
  animation: glowPulse 2.5s ease-in-out infinite;
}

.glow-text {
  color: var(--yellow);
  text-shadow:
    2px 2px 0 #8b5a00,
    0 0 18px rgba(248, 195, 75, 0.45);
}

@keyframes glowPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.hero-tagline {
  font-size: clamp(14px, 3vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 8px rgba(1, 14, 48, 0.5);
}
.hero-chain {
  font-family: var(--pixel);
  font-size: clamp(18px, 4.2vw, 28px);
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow:
    2px 2px 0 #8b5a00,
    0 0 18px rgba(248, 195, 75, 0.5);
  margin-top: 2px;
  animation: glowPulse 2.5s ease-in-out infinite;
}
.about-chain-list {
  margin: 14px 0 4px;
}
.about-chain-list li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.about-chain-list strong {
  color: var(--rh-green);
}

.scroll-hint {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.75;
  animation: bob 1.6s ease-in-out infinite;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

/* Pepe interactive */
.pepe-stage {
  position: relative;
  z-index: 8;
  margin-top: auto;
  width: 100%;
  max-width: 420px;
  display: flex;
  justify-content: center;
  padding-bottom: 0;
  pointer-events: none;
}
.pepe-wrap {
  position: relative;
  width: min(320px, 72vw);
  aspect-ratio: 1;
  transform-origin: center bottom;
  animation: pepeRise 1.2s var(--ease-out) both;
}
@keyframes pepeRise {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.pepe-head {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}
.pepe-eye {
  position: absolute;
  width: 22%;
  height: 16%;
  overflow: hidden;
  border-radius: 50%;
}
.pepe-eye-l {
  top: 36%;
  left: 24%;
}
.pepe-eye-r {
  top: 36%;
  left: 54%;
}
.eye-mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.eyeball {
  position: absolute;
  width: 38%;
  height: 48%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.06s linear;
  z-index: 1;
  filter: drop-shadow(0 0 2px #fff);
}

/* ---------- Sections common ---------- */
.section {
  position: relative;
  padding: 80px 20px;
  z-index: 2;
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.eyebrow {
  font-size: 13px;
  color: var(--cyan-bright);
  margin-bottom: 10px;
  letter-spacing: 0.12em;
}
.section-title {
  font-size: clamp(22px, 4.5vw, 36px);
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}
.body-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  max-width: 640px;
  margin-bottom: 12px;
}
.body-text.dim,
.dim {
  color: var(--text-dim);
  font-size: 13px;
}
.center { text-align: center; }
.center.narrow,
.narrow { margin-left: auto; margin-right: auto; }

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- About ---------- */
.about-section {
  background: linear-gradient(180deg, #18202e 0%, #102c52 50%, #0a1830 100%);
}
.about-card {
  display: grid;
  gap: 32px;
  align-items: center;
  background: linear-gradient(145deg, rgba(33, 78, 119, 0.35), rgba(1, 14, 48, 0.55));
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.about-gif {
  width: min(200px, 50vw);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}
.stonk-gif {
  width: min(160px, 40vw);
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
  animation: bob 2.8s ease-in-out infinite;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ---------- Space journey ---------- */
.space-journey {
  position: relative;
  padding: 60px 16px 100px;
  background:
    linear-gradient(
      180deg,
      #0a1830 0%,
      #010e30 30%,
      #102c52 55%,
      #122f55 75%,
      #18202e 100%
    );
  overflow: hidden;
}
.space-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 70% 20%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1.5px 1.5px at 40% 70%, rgba(96, 199, 255, 0.6), transparent),
    radial-gradient(1px 1px at 85% 60%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(255, 255, 255, 0.4), transparent);
  background-size: 100% 100%;
  opacity: 0.7;
  pointer-events: none;
  animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle {
  from { opacity: 0.45; }
  to { opacity: 0.85; }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 700px);
  aspect-ratio: 1;
  border: 1px dashed rgba(96, 199, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: spinSlow 40s linear infinite;
}
.orbit-img {
  position: absolute;
  top: 12%;
  right: 5%;
  width: 80px;
  opacity: 0.5;
  animation: spinSlow 20s linear infinite reverse;
}

.junk {
  opacity: 0.7;
  animation: floatJunk 10s ease-in-out infinite;
}
.junk-1 { top: 8%; left: 4%; width: 70px; }
.junk-2 { top: 55%; right: 3%; width: 48px; animation-delay: -3s; }
.junk-3 { bottom: 12%; left: 12%; width: 40px; animation-delay: -6s; }
@keyframes floatJunk {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -20px) rotate(12deg); }
}

.planets-grid {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.planet-card {
  display: grid;
  gap: 20px;
  align-items: center;
  background: rgba(18, 47, 85, 0.45);
  border: 2px solid rgba(96, 199, 255, 0.15);
  border-radius: 20px;
  padding: 24px 20px;
  backdrop-filter: blur(6px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.planet-card:hover {
  border-color: rgba(96, 199, 255, 0.45);
  box-shadow: 0 0 40px rgba(96, 199, 255, 0.12), 0 16px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}
.planet-card:nth-child(even) .planet-visual {
  order: 0;
}

.planet-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}
.planet-gif {
  width: min(220px, 55vw);
  filter: drop-shadow(0 0 28px rgba(96, 199, 255, 0.25));
  animation: planetFloat 5s ease-in-out infinite;
}
@keyframes planetFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-12px) scale(1.03); }
}

.stonk-coins {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.stonk-coins img {
  position: absolute;
  width: min(180px, 45vw);
  opacity: 0.85;
}

.planet-date {
  display: inline-block;
  font-size: 12px;
  color: var(--yellow);
  margin-bottom: 6px;
  letter-spacing: 0.08em;
}
.planet-info h3 {
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 0 16px rgba(96, 199, 255, 0.35);
}
.planet-info p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 10px;
}
.fire-tag {
  color: var(--coral) !important;
  font-family: var(--pixel);
  font-size: 16px !important;
  text-shadow: 0 0 12px rgba(245, 102, 94, 0.5);
  animation: pulseText 1.2s ease-in-out infinite;
}

.bullet-list {
  list-style: none;
  margin: 10px 0 14px;
}
.bullet-list li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.bullet-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 9px;
  top: 3px;
}

/* ---------- Network (Robinhood) ---------- */
.network-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 200, 5, 0.12), transparent 55%),
    linear-gradient(180deg, #0a1830 0%, #061410 40%, #0d1a2c 100%);
}
.network-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .network-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .network-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.network-card {
  background: rgba(0, 200, 5, 0.06);
  border: 2px solid rgba(0, 200, 5, 0.28);
  border-radius: 12px;
  padding: 20px 16px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}
.network-card:hover {
  border-color: rgba(0, 200, 5, 0.65);
  box-shadow: 0 0 28px rgba(0, 200, 5, 0.15);
  transform: translateY(-3px);
}
.network-label {
  display: block;
  font-size: 11px;
  color: var(--rh-green);
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  opacity: 0.9;
}
.network-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}
.network-card p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ---------- Claim banner ---------- */
.claim-banner {
  padding: 40px 20px 80px;
  background: linear-gradient(180deg, #0d1a2c 0%, #010e30 50%, #18202e 100%);
}
.claim-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 28px;
  background:
    linear-gradient(135deg, rgba(248, 195, 75, 0.12), rgba(96, 199, 255, 0.1));
  border: 3px solid rgba(248, 195, 75, 0.45);
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(248, 195, 75, 0.15), inset 0 0 40px rgba(96, 199, 255, 0.06);
  text-align: center;
}
.claim-coin {
  width: 72px;
  animation: bob 2s ease-in-out infinite;
}
.claim-banner-inner h2 {
  font-size: 18px;
  color: var(--text-dim);
}
.claim-banner-inner .glow-text {
  font-size: clamp(18px, 4vw, 26px);
}

/* ---------- FAQ ---------- */
.faq-section {
  background: #18202e;
  padding-top: 20px;
}
.faq-grid {
  max-width: 800px;
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(96, 199, 255, 0.35);
}
.faq-item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-size: 14px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 18px;
  color: var(--cyan-bright);
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  padding: 0 18px 16px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1018;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 20px 32px;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-brand strong {
  display: block;
  color: var(--yellow);
  font-size: 18px;
}
.footer-brand p {
  font-size: 12px;
  color: var(--text-mute);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
.footer-links a {
  font-family: var(--pixel);
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--cyan-bright);
}
.footer-meta {
  font-size: 11px;
  color: var(--rh-green);
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(0, 200, 5, 0.35);
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--text-mute);
  line-height: 1.5;
  max-width: 720px;
}

/* ---------- FX canvas ---------- */
.fx-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
  opacity: 0.7;
}

/* ---------- Responsive ---------- */
@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .about-card {
    grid-template-columns: 1fr 1.2fr;
    padding: 40px;
  }
  .planet-card {
    grid-template-columns: 280px 1fr;
    padding: 32px;
  }
  .planet-card:nth-child(even) {
    grid-template-columns: 1fr 280px;
  }
  .planet-card:nth-child(even) .planet-visual {
    order: 2;
  }
  .claim-banner-inner {
    justify-content: space-between;
    text-align: left;
  }
  .hero-content {
    margin-top: 6vh;
  }
  .doge-rocket {
    width: 200px;
    top: 14%;
    right: 8%;
  }
}

@media (min-width: 1100px) {
  .site-header {
    padding: 0 40px;
  }
  .pepe-wrap {
    width: 360px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
