:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
}

* { box-sizing: border-box; }

html,
body,
.atlas-intro {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
}

.atlas-intro {
  position: relative;
  display: grid;
  place-items: center;
}

#atlas-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.atlas-wordmark {
  position: absolute;
  top: calc(50% + clamp(125px, 20vh, 185px));
  left: 50%;
  z-index: 1;
  color: #0c1d31;
  font-size: clamp(25px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: .28em;
  text-indent: .28em;
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.atlas-wordmark.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  .atlas-wordmark { transition: none; }
}
