:root {
  --void: #05060e;
  --text: #eae8f7;
  --muted: #9c97c0;
  --accent: #a9c98a;
  --gold: #ffc96b;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background: var(--void);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 16px;
}

.stage {
  flex: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 0 32px;
  text-align: center;
}

.world { margin: 0 auto 24px; width: min(320px, 70vw); }
.world img { width: 100%; height: auto; display: block; filter: drop-shadow(0 0 40px rgba(169, 201, 138, 0.25)); }

h1 {
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  font-weight: 700;
}

.tagline { font-size: clamp(1.15rem, 3.5vw, 1.4rem); color: var(--accent); margin: 0 0 16px; }

.lead { color: var(--muted); font-size: 1.05rem; margin: 0 auto 28px; max-width: 520px; }

.beta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(169, 201, 138, 0.4);
  border-radius: 999px;
  padding: 10px 18px;
  margin: 0 0 20px;
  font-size: 0.98rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  flex: none;
}

.contact { color: var(--muted); margin: 0; }

a { color: var(--text); text-decoration-color: var(--accent); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

.signal { color: var(--muted); font-size: 0.9rem; text-align: center; padding: 16px 0 24px; }
.signal p { margin: 0; }

@media (prefers-reduced-motion: no-preference) {
  .world img { animation: drift 12s ease-in-out infinite alternate; }
  @keyframes drift { from { transform: translateY(0); } to { transform: translateY(-8px); } }
}
