:root {
  --bg: #0e0e11;
  --ink: #f3f5f7;
  --muted: #b7bec7;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  font-family: Inter, system-ui, sans-serif;
  overflow: hidden;
}

.globe-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
}

.globe-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 60% at 50% 45%,
    transparent 40%,
    rgba(14,14,17,0.6) 75%,
    rgba(14,14,17,0.9) 100%
  );
  pointer-events: none;
  z-index: 1;
}

canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 0;
}

.hero-overlay {
  position: fixed;
  left: 50%;
  bottom: 14vh;
  transform: translateX(-50%);
  max-width: 720px;
  text-align: center;
  z-index: 2;
  color: var(--ink);
  pointer-events: none;
}

.hero-overlay h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.hero-overlay p {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--muted);
}

.hero-overlay span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

@media (max-width: 768px) {
  .hero-overlay {
    left: 6vw;
    right: 6vw;
    transform: none;
    bottom: 10vh;
    text-align: left;
  }
  .hero-overlay h1 { font-size: clamp(32px, 8vw, 44px); }
  .hero-overlay p  { font-size: 16px; }
}