:root {
  --bg: #08080d;
  --text: #c8c8d0;
  --dim: #3e3e4a;
  --accent: #f0d060;
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background: var(--bg);
  background-image: radial-gradient(
    ellipse at 50% 42%,
    rgba(240, 208, 96, 0.02) 0%,
    transparent 58%
  );
  color: var(--text);
  font-family: "Share Tech Mono", monospace;
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 1.5rem;
}

.wordmark {
  font-family: "Chakra Petch", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 11vw, 8.5rem);
  line-height: 1;
  user-select: none;
  display: flex;
  gap: 0.06em;
}

.letter {
  display: inline-block;
  opacity: 0;
  animation: appear 0.4s ease forwards;
  animation-delay: calc(var(--i) * 0.07s);
  transition:
    color 0.15s ease,
    text-shadow 0.25s ease,
    transform 0.18s ease;
  cursor: default;
}

@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 640px) {
  .stage {
    gap: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .letter {
    animation: none !important;
    opacity: 1;
  }
}
