:root {
  --void: #05010c;
  --navy: #0c061c;
  --ink: #140a28;
  --magenta: #d44a9a;
  --violet: #6a2d9a;
  --azure: #3a5cb0;
  --gold: #f0c75e;
  --gold-deep: #c9962e;
  --gold-soft: #ffe7a0;
  --ginger: #e07830;
  --cream: #f4ead8;
  --ring: #d4b896;
  --text: #f3eadc;
  --muted: #b7a89a;
  --line: rgba(240, 199, 94, 0.28);
  --glass: rgba(12, 6, 28, 0.55);
  --font-script: "Meow Script", cursive;
  --font-display: "Cinzel", serif;
  --font-body: "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--void);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.nebula,
.aurora,
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.nebula {
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.nebula-a {
  background:
    radial-gradient(ellipse 50% 40% at 18% 22%, rgba(212, 74, 154, 0.45), transparent 70%),
    radial-gradient(ellipse 40% 35% at 82% 18%, rgba(106, 45, 154, 0.4), transparent 70%);
  animation: nebula-drift 28s ease-in-out infinite alternate;
}

.nebula-b {
  background:
    radial-gradient(ellipse 45% 38% at 78% 72%, rgba(224, 120, 48, 0.22), transparent 70%),
    radial-gradient(ellipse 36% 30% at 30% 80%, rgba(58, 92, 176, 0.28), transparent 70%);
  animation: nebula-drift 36s ease-in-out infinite alternate-reverse;
}

.nebula-c {
  background: radial-gradient(circle at 50% 110%, rgba(240, 199, 94, 0.12), transparent 48%);
  animation: pulse-soft 10s ease-in-out infinite;
}

.aurora {
  background:
    linear-gradient(115deg, transparent 30%, rgba(212, 74, 154, 0.08) 50%, transparent 70%);
  background-size: 220% 220%;
  animation: aurora-sweep 18s linear infinite;
}

.grain {
  opacity: 0.09;
  z-index: 2;
  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");
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
}

.nav,
main,
.footer,
.toast {
  position: relative;
  z-index: 3;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 1.6rem;
  background: linear-gradient(180deg, rgba(5, 1, 12, 0.72), rgba(5, 1, 12, 0));
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 1.6rem;
}

.nav.is-scrolled {
  background: rgba(5, 1, 12, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
}

.nav-planet {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 16px rgba(240, 199, 94, 0.35);
  animation: spin-slow 48s linear infinite;
}

.nav-planet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.nav-word {
  font-family: var(--font-script);
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold), var(--gold-deep), var(--gold-soft));
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: foil 8s linear infinite;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--glass);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(240, 199, 94, 0.25);
}

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

.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold) 40%, var(--gold-deep));
  color: #2a1604;
  box-shadow: 0 8px 28px rgba(240, 199, 94, 0.28);
}

.btn-gold img,
.mission-logo img[src*="pumpswap"],
.join-icon img[src*="pumpswap"] {
  filter: none;
  border-radius: 50%;
  background: #111;
}

.btn-ghost {
  background: rgba(240, 199, 94, 0.06);
  border-color: var(--line);
  color: var(--cream);
}

.btn-ghost img {
  filter: brightness(0) invert(86%) sepia(38%) saturate(600%) hue-rotate(6deg);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240, 199, 94, 0.35);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 7.2rem 1.25rem 4.5rem;
  text-align: center;
}

.hud {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: rgba(243, 234, 220, 0.55);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.hud-tl { top: 6.4rem; left: 1.4rem; }
.hud-tr { top: 6.4rem; right: 1.4rem; text-align: right; }
.hud-bl { bottom: 1.4rem; left: 1.4rem; }
.hud-br { bottom: 1.4rem; right: 1.4rem; text-align: right; }

.hero-stage {
  position: relative;
  width: fit-content;
  max-width: 70vw;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
}

.hero-video {
  width: min(320px, 70vw);
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 2;
  border-radius: 28px;
  border: 1px solid rgba(240, 199, 94, 0.45);
  background: #05010c;
  box-shadow:
    0 0 0 8px rgba(240, 199, 94, 0.06),
    0 22px 50px rgba(224, 120, 48, 0.22);
  animation: float-planet 7s ease-in-out infinite;
}

.planet-glow {
  position: absolute;
  inset: 8%;
  border-radius: 32px;
  background: radial-gradient(circle, rgba(240, 199, 94, 0.28), transparent 68%);
  filter: blur(18px);
  animation: pulse-soft 5s ease-in-out infinite;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 184, 150, 0.35);
  box-shadow: 0 0 20px rgba(240, 199, 94, 0.08) inset;
}

.ring-far {
  inset: 2%;
  border-style: dashed;
  animation: spin-slow 48s linear infinite;
}

.ring-mid {
  inset: 10%;
  border-color: rgba(240, 199, 94, 0.45);
  transform: rotateX(66deg) rotateZ(12deg);
  animation: spin-mid 22s linear infinite;
}

.ring-near {
  inset: 20%;
  border-width: 6px;
  border-color: rgba(212, 184, 150, 0.55);
  transform: rotateX(68deg);
  animation: spin-ring 16s linear infinite;
}

.moon {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, var(--gold));
  box-shadow: 0 0 12px var(--gold);
  z-index: 3;
}

.moon-a {
  animation: orbit-a 14s linear infinite;
}

.moon-b {
  width: 7px;
  height: 7px;
  animation: orbit-b 21s linear infinite reverse;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 760px;
  margin: 0 auto;
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.4rem;
}

.stamp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse-soft 1.8s ease-in-out infinite;
}

.wordmark {
  position: relative;
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(4.6rem, 12vw, 8.4rem);
  font-weight: 400;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff6d2 0%, var(--gold) 42%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 24px rgba(240, 199, 94, 0.28));
}

.ear-left,
.ear-right {
  position: absolute;
  top: 8%;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold-deep));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  opacity: 0.9;
}

.ear-left { left: 8%; transform: rotate(-18deg); }
.ear-right { left: 16%; transform: rotate(14deg); }

.tagline {
  margin: 0.35rem 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2vw, 0.92rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-lede {
  margin: 0 0 1.1rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.hero-lede strong {
  color: var(--cream);
  font-weight: 500;
}

.sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0.7rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: middle;
  opacity: 0.7;
}

.ca-bar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 640px;
  margin: 0 auto 1.3rem;
  padding: 0.55rem 0.55rem 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 6, 28, 0.55);
  backdrop-filter: blur(10px);
}

.ca-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

#ca-display {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.82rem;
  color: var(--cream);
}

#copy-ca {
  border: 0;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  background: var(--gold);
  color: #2a1604;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-head {
  margin-bottom: 2.4rem;
  text-align: center;
}

.section-head::before {
  content: "";
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border: 1px solid rgba(240, 199, 94, 0.45);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(240, 199, 94, 0.07);
  background:
    radial-gradient(circle, transparent 38%, var(--gold) 39%, var(--gold) 42%, transparent 43%),
    linear-gradient(90deg, transparent 46%, rgba(212, 184, 150, 0.7) 46%, rgba(212, 184, 150, 0.7) 54%, transparent 54%);
  animation: spin-slow 28s linear infinite;
}

.kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-head h2,
.transmission h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.25;
}

.section-head h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.narrative,
.transmission,
.mission-step,
.join-card,
.observatory {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 10, 40, 0.72), rgba(8, 3, 18, 0.55));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.narrative,
.transmission {
  border-radius: 28px;
  padding: 1.8rem 1.7rem;
}

.narrative p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.narrative em {
  color: var(--gold);
  font-style: normal;
  font-family: var(--font-script);
  font-size: 1.5rem;
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding: 0;
  margin: 1.4rem 0 0;
}

.facts li {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.75rem 0.9rem;
  background: rgba(240, 199, 94, 0.04);
}

.facts span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.transmission h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.reddit-frame {
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.28);
  min-height: 220px;
}

.reddit-fallback {
  display: block;
  padding: 1rem 1.1rem 1.2rem;
  font-size: 0.92rem;
}

.mission {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  position: relative;
}

.mission::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.mission-step {
  display: grid;
  grid-template-columns: 68px 78px 1fr;
  gap: 1rem;
  align-items: center;
  border-radius: 24px;
  padding: 1.1rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.mission-step::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 74, 154, 0.16), transparent 70%);
}

.mission-mark {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.mission-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: rgba(5, 1, 12, 0.6);
}

.mission-logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.mission-body h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.mission-body p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-block;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.observatory {
  position: relative;
  border-radius: 28px;
  padding: 1.3rem;
}

.obs-caption {
  margin: 0 0 0.8rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.obs-screen {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(240, 199, 94, 0.2);
  min-height: 640px;
  background: #0a0a12;
}

.obs-screen iframe {
  width: 100%;
  height: 640px;
  border: 0;
  display: block;
}

.obs-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--gold);
}

.c-tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.c-tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.c-bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.c-br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.banner-stage {
  margin: 0 0 1.6rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow:
    0 0 0 8px rgba(240, 199, 94, 0.06),
    0 24px 70px rgba(212, 74, 154, 0.18);
  background: #05010c;
  animation: banner-glow 6s ease-in-out infinite;
}

.banner-stage img {
  width: 100%;
  height: auto;
  display: block;
}

.join-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.join-card {
  border-radius: 22px;
  padding: 1.3rem 1.1rem;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.4rem;
  color: inherit;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.join-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(240, 199, 94, 0.16);
}

.join-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(5, 1, 12, 0.65);
  margin-bottom: 0.3rem;
}

.join-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.join-name {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.join-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 2.4rem 1.2rem 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

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

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

.footer-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}

.footer-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.4rem;
  transform: translate(-50%, 20px);
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--gold);
  color: #2a1604;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 40;
}

.toast.is-on {
  opacity: 1;
  transform: translate(-50%, 0);
}

.will-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal {
  animation: rise-in 0.9s ease forwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}

@keyframes foil {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

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

@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes spin-mid { to { transform: rotateX(66deg) rotateZ(372deg); } }
@keyframes spin-ring { to { transform: rotateX(68deg) rotateZ(360deg); } }

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

@keyframes orbit-b {
  from { transform: rotate(40deg) translateX(180px) rotate(-40deg); }
  to { transform: rotate(400deg) translateX(180px) rotate(-400deg); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

@keyframes nebula-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

@keyframes aurora-sweep {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

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

@keyframes banner-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(240, 199, 94, 0.06), 0 24px 70px rgba(212, 74, 154, 0.18); }
  50% { box-shadow: 0 0 0 10px rgba(240, 199, 94, 0.12), 0 28px 80px rgba(224, 120, 48, 0.2); }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0.6rem 1.2rem 1.4rem;
    background: rgba(5, 1, 12, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
  }

  .nav.is-open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.4rem 0 1rem;
  }

  .nav-actions {
    justify-content: flex-start;
  }

  .about-grid,
  .join-grid,
  .mission-step {
    grid-template-columns: 1fr;
  }

  .mission::before {
    display: none;
  }

  .hud {
    display: none;
  }

  .ear-left,
  .ear-right {
    display: none;
  }

  .obs-screen,
  .obs-screen iframe {
    min-height: 480px;
    height: 480px;
  }

  .hero-video {
    width: min(260px, 68vw);
  }

  @keyframes orbit-a {
    from { transform: rotate(0deg) translateX(42vw) rotate(0deg); }
    to { transform: rotate(360deg) translateX(42vw) rotate(-360deg); }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
