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

body {
  background: #080710;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
}

#stage {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text {
  font-family: 'Recursive', sans-serif;
  font-size: clamp(52px, 10vw, 116px);
  font-weight: 400;
  color: rgba(232, 234, 240, 0.92);
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
}

.ghost-layer {
  opacity: 0.14;
  user-select: none;
  pointer-events: none;
}

.char {
  display: inline-block;
  white-space: pre;
  will-change: transform, opacity;
}

#credit {
  position: fixed;
  bottom: 20px;
  right: 24px;
  font-family: 'DM Mono', monospace;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
  z-index: 10;
}
#credit:hover { color: rgba(255,255,255,0.55); }
#credit span { color: rgba(255,255,255,0.4); }