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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  font-family: 'Plus Jakarta Sans', -apple-system, 'SF Pro Display', 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.text-block {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16vh;
  text-align: center;
  pointer-events: none;
  z-index: 1;
}

.title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  text-transform: uppercase;
  color: #0f172a;
  margin-bottom: 0.3em;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.4s forwards;
}

.studio {
  font-weight: 300;
  letter-spacing: 0.25em;
  margin-left: 0.25em;
}

.init {
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-left: 0.05em;
}

.claim {
  font-size: clamp(0.6rem, 1.5vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #64748b;
  margin-left: 0.3em;
  opacity: 0;
  animation: fadeUp 1.2s ease-out 0.8s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-height: 600px) {
  .text-block {
    bottom: 8vh;
  }
  .title {
    font-size: 1.5rem;
  }
  .claim {
    font-size: 0.55rem;
  }
}
