/* OrbytPay — THE MOON. THE BRAND. THE UNIVERSE. */

/* Scroll-driven money flow canvas */
#orbyt-flow-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

#orb-canvas {
  opacity: 0.35;
}

.cosmos-moon-bg {
  position: absolute;
  top: 8%;
  right: -5%;
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%,
    rgba(240, 240, 252, 0.07) 0%,
    rgba(180, 185, 200, 0.04) 40%,
    transparent 70%);
  filter: blur(2px);
  animation: bgMoonPulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bgMoonPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

/* ─── HERO: OrbytPay + Moon side by side ─── */
.hero--orbyt {
  min-height: 100vh;
  padding: 100px 0 60px;
  overflow: visible;
}

.hero-orbyt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

.hero-orbytpay-mega {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-bright), #fff 40%, var(--accent) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 60px var(--accent-glow-strong));
  animation: fadeUp 0.8s ease both;
}

.hero-orbytpay-mega span.pay {
  -webkit-text-fill-color: var(--accent-bright);
  background: none;
  filter: drop-shadow(0 0 24px var(--accent-glow-strong));
}

.hero-headline-sub {
  display: block;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-primary);
  -webkit-text-fill-color: var(--text-primary);
  background: none;
  filter: none;
  animation: fadeUp 0.8s 0.08s ease both;
}

/* ─── LEDGER MOON — hero centerpiece ─── */
.ledger-moon-stage {
  position: relative;
  width: min(420px, 90vw);
  height: min(420px, 90vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  --sat-orbit-r: min(210px, 36vw);
}

.moon-orbit-track {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-glow);
  opacity: 0.35;
  animation: orbitSpin 40s linear infinite;
}

.moon-orbit-1 { inset: 0; }
.moon-orbit-2 { inset: 12%; animation-direction: reverse; animation-duration: 55s; opacity: 0.25; }
.moon-orbit-3 { inset: 24%; animation-duration: 70s; opacity: 0.18; border-style: dashed; }

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

.ledger-moon {
  position: relative;
  width: 72%;
  aspect-ratio: 1;
  z-index: 2;
}

.moon-halo {
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow-strong) 0%, transparent 65%);
  animation: moonHaloPulse 4s ease-in-out infinite;
}

@keyframes moonHaloPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.06); }
}

.moon-sphere {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%,
    #f8f8ff 0%,
    #d8dce8 25%,
    #a8b0c0 55%,
    #6a7288 85%,
    #4a5060 100%);
  box-shadow:
    inset -24px -24px 48px rgba(0, 0, 0, 0.35),
    inset 12px 12px 32px rgba(255, 255, 255, 0.15),
    0 0 80px rgba(220, 225, 240, 0.25),
    0 0 120px var(--accent-glow);
  overflow: hidden;
  animation: moonFloatHero 12s ease-in-out infinite;
}

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

.moon-light {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 28% 22%, rgba(255,255,255,0.5) 0%, transparent 45%);
  pointer-events: none;
}

.moon-shadow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 40%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
  z-index: 3;
}

.crater {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(0,0,0,0.08), rgba(0,0,0,0.18));
}

.crater-1 { width: 18%; height: 18%; top: 22%; left: 18%; }
.crater-2 { width: 12%; height: 12%; top: 48%; left: 55%; }
.crater-3 { width: 10%; height: 10%; top: 62%; left: 28%; }
.crater-4 { width: 8%; height: 8%; top: 30%; left: 62%; }
.crater-5 { width: 14%; height: 9%; top: 38%; left: 38%; border-radius: 45%; }
.crater-6 { width: 6%; height: 6%; top: 18%; left: 48%; }
.crater-7 { width: 9%; height: 7%; top: 70%; left: 52%; border-radius: 40%; }
.crater-8 { width: 5%; height: 5%; top: 55%; left: 15%; }

.mare {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(ellipse at 40% 40%, rgba(90, 95, 110, 0.35), rgba(60, 65, 80, 0.2) 70%, transparent);
  pointer-events: none;
}
.mare-1 { width: 42%; height: 28%; top: 35%; left: 12%; transform: rotate(-12deg); }
.mare-2 { width: 28%; height: 22%; top: 58%; left: 45%; transform: rotate(8deg); }
.mare-3 { width: 20%; height: 16%; top: 20%; left: 55%; opacity: 0.7; }

.moon-regolith {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(0,0,0,0.12), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(0,0,0,0.1), transparent),
    radial-gradient(1.5px 1.5px at 80% 25%, rgba(0,0,0,0.08), transparent),
    radial-gradient(1px 1px at 35% 85%, rgba(0,0,0,0.1), transparent);
  opacity: 0.8;
  pointer-events: none;
}

.moon-terminator {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(105deg, transparent 42%, rgba(0,0,0,0.55) 88%);
  pointer-events: none;
  z-index: 2;
}

.crater-rim {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.crater-rim-1 { width: 20%; height: 20%; top: 20%; left: 16%; }
.crater-rim-2 { width: 14%; height: 14%; top: 46%; left: 53%; }

.moon-scan {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: moonScan 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes moonScan {
  0%, 100% { transform: translateY(-100%); opacity: 0; }
  50% { transform: translateY(100%); opacity: 0.6; }
}

.moon-halo-2 {
  inset: -28%;
  background: radial-gradient(circle, rgba(220,225,240,0.08) 0%, transparent 60%);
  animation: moonHaloPulse 6s ease-in-out infinite reverse;
}

.moon-corona {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  border: 1px solid rgba(220,225,240,0.12);
  box-shadow: 0 0 40px rgba(220,225,240,0.1);
  pointer-events: none;
  z-index: 0;
  animation: coronaPulse 5s ease-in-out infinite;
}

@keyframes coronaPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

.moon-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 45%;
  background: linear-gradient(180deg, var(--accent-glow), transparent);
  transform-origin: top center;
  opacity: 0.25;
  pointer-events: none;
}
.moon-beam-1 { transform: translate(-50%, 0) rotate(-30deg); }
.moon-beam-2 { transform: translate(-50%, 0) rotate(40deg); animation: beamPulse 4s ease-in-out infinite; }

@keyframes beamPulse {
  0%, 100% { opacity: 0.15; }
  50% { opacity: 0.4; }
}

.orbit-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-glow-strong);
}
.od-1 { top: 0; left: 50%; transform: translateX(-50%); }
.od-2 { bottom: 10%; right: 5%; }
.od-3 { top: 30%; left: 0; }

/* ─── SATELLITES — detailed CSS models ─── */
.satellite-unit {
  position: relative;
  width: 48px;
  height: 32px;
}

.sat-body {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sat-core {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background: linear-gradient(135deg, #c8ccd8, #6a7080);
  box-shadow: 0 0 12px var(--accent-glow), inset 0 0 4px rgba(255,255,255,0.3);
  position: relative;
  z-index: 2;
}

.sat-lens {
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: radial-gradient(circle at 30% 30%, rgba(100,200,255,0.6), transparent);
}

.sat-blink {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4f8;
  box-shadow: 0 0 6px #4f8;
  animation: satBlink 2s ease-in-out infinite;
}

@keyframes satBlink {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.sat-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 2px;
}
.sat-panel span {
  display: block;
  width: 14px;
  height: 3px;
  background: linear-gradient(90deg, #1a3a5c, #2a5a8c);
  border: 1px solid rgba(100,180,255,0.3);
  border-radius: 1px;
}
.sat-panel-l { margin-right: -2px; }
.sat-panel-r { margin-left: -2px; }

.sat-antenna {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 1px;
  height: 10px;
  background: rgba(200,210,230,0.6);
  transform: translateX(-50%);
}
.sat-antenna::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-bright);
  transform: translateX(-50%);
  box-shadow: 0 0 6px var(--accent-glow);
}

.sat-dish {
  position: absolute;
  bottom: -6px;
  right: 4px;
  width: 10px;
  height: 6px;
  border: 1px solid rgba(200,210,230,0.5);
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.sat-trail {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow));
  opacity: 0.5;
}

.moon-satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -24px 0 0 -24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  animation: moonSatOrbit 24s linear infinite;
  animation-delay: var(--sat-delay, 0s);
  z-index: 5;
}

.moon-satellite .moon-sat-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--accent-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 8px var(--accent-glow);
  white-space: nowrap;
}

@keyframes moonSatOrbit {
  from { transform: rotate(0deg) translateX(var(--sat-orbit-r, min(210px, 36vw))) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--sat-orbit-r, min(210px, 36vw))) rotate(-360deg); }
}

.moon-sat-2 { animation-duration: 30s; animation-direction: reverse; }
.moon-sat-3 { animation-duration: 36s; }
.moon-sat-4 { animation-duration: 28s; animation-direction: reverse; }

.ledger-moon-stage--showcase {
  width: min(500px, 92vw);
  height: min(500px, 92vw);
}

/* ─── ◎ Orbit · ◇ Pay · 🌙 Moon glyphs ─── */
.orbit-brand-glyphs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 24px;
}

.obg-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-glass);
  background: rgba(255,255,255,0.03);
  min-width: 88px;
  transition: var(--transition);
}

.obg-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translateY(-4px);
}

.obg-symbol {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px var(--accent-glow));
}

.obg-name {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-bright);
}

.obg-orbit .obg-symbol { color: var(--accent-bright); }
.obg-pay .obg-symbol { color: var(--accent); }
.obg-moon .obg-symbol { filter: drop-shadow(0 0 16px rgba(220,225,240,0.5)); }

.obg-connector {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  flex-shrink: 0;
}

.orbit-brand-glyphs--hero { justify-content: flex-start; margin-top: 20px; }
.orbit-brand-glyphs--showcase { margin: 28px auto 0; }
.orbit-brand-glyphs--compact { justify-content: flex-start; margin-top: 16px; }
.orbit-brand-glyphs--compact .obg-item { padding: 10px 16px; min-width: 72px; }
.orbit-brand-glyphs--compact .obg-symbol { font-size: 1.25rem; }

/* ─── Inner page moon + satellite ─── */
.page-hero-moon-stage {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.page-hero-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed var(--border-glow);
  animation: orbitSpin 20s linear infinite;
}

.page-hero-sat {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  z-index: 3;
}

.page-hero-sat .moon-satellite {
  position: static;
  animation: none;
  margin: 0;
}

.page-hero-moon-mini {
  position: absolute;
  inset: 18%;
  z-index: 2;
}

.mini-moon-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #f4f4fc, #a8b0c0 55%, #5a6070 100%);
  box-shadow: inset -8px -8px 16px rgba(0,0,0,0.3), 0 0 24px rgba(220,225,240,0.2);
  position: relative;
  overflow: hidden;
  animation: moonBob 8s ease-in-out infinite;
}

.mini-mare {
  position: absolute;
  width: 50%;
  height: 35%;
  top: 40%;
  left: 15%;
  border-radius: 50%;
  background: rgba(80,85,100,0.25);
}

.mini-crater {
  position: absolute;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
}
.mc-1 { width: 22%; height: 22%; top: 20%; left: 20%; }
.mc-2 { width: 14%; height: 14%; top: 55%; left: 55%; }
.mc-3 { width: 10%; height: 10%; top: 30%; left: 60%; }

.mini-moon-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0.85;
}

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


.moon-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.moon-orbytpay {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 5vw, 2.4rem);
  font-weight: 800;
  color: #2a3040;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
  letter-spacing: -0.02em;
  line-height: 1;
}

.moon-orbytpay span {
  color: var(--accent-dim);
  filter: brightness(0.7) saturate(1.5);
}

.moon-ledger {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 2vw, 0.72rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #4a5060;
  font-weight: 600;
}

.moon-caption {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 4;
}

/* ─── MOON SHOWCASE SECTION ─── */
.moon-showcase {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(0,0,0,0.3), rgba(255,255,255,0.02), rgba(0,0,0,0.2));
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
}

.moon-showcase::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(600px, 90vw);
  height: min(600px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,225,240,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.moon-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.moon-showcase-visual .ledger-moon-stage {
  width: min(480px, 100%);
  height: min(480px, 80vw);
}

.moon-showcase-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: 20px;
}

.moon-showcase-copy > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.moon-facts {
  list-style: none;
  margin-bottom: 32px;
}

.moon-facts li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.moon-facts strong { color: var(--accent-bright); }

.moon-showcase-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-glow);
  background: rgba(255,255,255,0.03);
}

.moon-showcase-brand img {
  border-radius: 12px;
  box-shadow: 0 0 24px var(--accent-glow);
}

.moon-showcase-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--text-primary);
}

.moon-showcase-brand span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* Solar system — BIG moon orbit */
.solar-system { width: 100%; height: auto; display: block; overflow: visible; }

.solar-sun {
  filter: drop-shadow(0 0 32px var(--accent-glow-strong));
  animation: sunPulse 4s ease-in-out infinite;
}

.solar-moon-big {
  transform-origin: 450px 240px;
  animation: moonOrbitBig 50s linear infinite;
}

@keyframes moonOrbitBig {
  from { transform: rotate(0deg) translateX(220px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(220px) rotate(-360deg); }
}

.solar-sat { transform-origin: 450px 240px; }
.solar-sat-1 { animation: satOrbitWide 22s linear infinite; }
.solar-sat-2 { animation: satOrbitWide 32s linear infinite reverse; }
.solar-sat-3 { animation: satOrbitWide 26s linear infinite; animation-delay: -8s; }

@keyframes satOrbitWide {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Orbyt world section */
.orbyt-world {
  padding: 120px 0;
  position: relative;
  border-top: 1px solid var(--border-glass);
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, transparent 40%, rgba(0,0,0,0.15) 100%);
  overflow: hidden;
}

.orbyt-world-header { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.orbyt-world-intro { font-size: 1.1rem; color: var(--text-secondary); line-height: 1.8; margin-top: 20px; }
.orbyt-world-intro strong { color: var(--accent-bright); }
.orbyt-world-stage { margin: 0 auto 56px; max-width: 960px; color: var(--accent); }

.world-bodies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.world-body {
  padding: 28px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  background: rgba(6, 8, 14, 0.75);
  transition: var(--transition);
}

.world-body:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 48px var(--accent-glow);
  transform: translateY(-2px);
}

.world-body-head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.world-body-icon { font-size: 1.5rem; line-height: 1; }
.world-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
.world-body-role { font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); }
.world-body p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

.world-quote {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 24px;
}

.world-quote p { font-family: var(--font-serif); font-size: 1.45rem; font-style: italic; line-height: 1.5; }
.world-quote cite { display: block; margin-top: 16px; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); }

.orbyt-world-footer { text-align: center; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); }

/* Orbyt story stars */
.orbyt-orbit .orbyt-star {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-glow-strong);
}

.orbyt-star-1 { top: 8%; left: 20%; animation: starBlink 3s infinite; }
.orbyt-star-2 { top: 25%; right: 12%; animation: starBlink 4s infinite 1s; }
.orbyt-star-3 { bottom: 15%; left: 30%; animation: starBlink 2.5s infinite 0.5s; }

@keyframes starBlink {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-badge.cosmos-badge::before { content: '🌙 '; }

.scroll-orbit-hint {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  animation: scrollHintPulse 2.5s ease-in-out infinite;
}

@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 0.9; transform: translateY(4px); }
}

/* ─── RESPONSIVE: moon ALWAYS visible ─── */
@media (max-width: 900px) {
  .hero-orbyt-grid,
  .moon-showcase-inner { grid-template-columns: 1fr; }

  .hero-orbyt-grid { text-align: center; }
  .hero-moon-col { order: -1; }

  .orbit-brand-glyphs--hero { justify-content: center; }

  .ledger-moon-stage {
    width: min(340px, 88vw);
    height: min(340px, 88vw);
  }

  .ledger-moon-stage--showcase {
    width: min(380px, 90vw);
    height: min(380px, 90vw);
  }

  .hero-orbytpay-mega { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .moon-showcase-visual { order: -1; }

  .obg-connector { width: 16px; }
  .obg-item { padding: 12px 16px; min-width: 76px; }
}

@media (max-width: 600px) {
  .ledger-moon-stage {
    width: min(300px, 92vw);
    height: min(300px, 92vw);
  }

  .moon-satellite .moon-sat-label { font-size: 0.45rem; }
  .satellite-unit { transform: scale(0.85); }

  .orbit-brand-glyphs { gap: 8px; }
  .obg-connector { display: none; }
  .obg-item { min-width: 64px; padding: 10px 12px; }

  .page-hero-flex { flex-direction: column; text-align: center; }
  .page-hero-moon-stage { margin: 0 auto; }
}

@media (max-width: 380px) {
  .ledger-moon-stage {
    width: min(260px, 94vw);
    height: min(260px, 94vw);
  }

  .moon-orbytpay { font-size: 1.2rem; }
  .moon-ledger { font-size: 0.5rem; letter-spacing: 0.12em; }
}

@media (min-width: 901px) {
  .hero-moon-col { display: flex; align-items: center; justify-content: center; }
}

/* Starfield + nebula base */
.cosmos-layer { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }

.starfield {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.4), transparent),
    radial-gradient(2px 2px at 55% 15%, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.35), transparent),
    radial-gradient(1.5px 1.5px at 85% 40%, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 15% 90%, rgba(255,255,255,0.3), transparent),
    radial-gradient(1.5px 1.5px at 45% 45%, rgba(255,255,255,0.45), transparent);
  animation: starTwinkle 8s ease-in-out infinite alternate;
}

@keyframes starTwinkle { 0% { opacity: 0.75; } 100% { opacity: 1; } }

.nebula {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.22;
  animation: nebulaDrift 30s ease-in-out infinite;
}

.nebula-1 { width: 50vw; height: 50vw; top: -10%; right: -15%; background: radial-gradient(circle, var(--accent-glow-strong), transparent 70%); }
.nebula-2 { width: 40vw; height: 40vw; bottom: -20%; left: -10%; background: radial-gradient(circle, rgba(200,210,240,0.12), transparent 70%); animation-delay: -12s; }

@keyframes nebulaDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

@keyframes sunPulse {
  0%, 100% { filter: drop-shadow(0 0 24px var(--accent-glow)); }
  50% { filter: drop-shadow(0 0 48px var(--accent-glow-strong)); }
}
