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

body {
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: "Times New Roman", Times, serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 24px;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


.coming-soon {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon {
    animation: none;
    opacity: 1;
  }
}
