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

html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

.wrap {
  text-align: center;
  padding: 2rem;
  animation: fade 1.4s ease both;
}

h1 {
  font-size: clamp(3rem, 14vw, 9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.dot {
  display: inline-block;
  animation: blink 1.6s ease-in-out infinite;
  color: #555;
}

p {
  margin-top: 1.5rem;
  font-size: clamp(0.8rem, 2.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #666;
}

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

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

@media (prefers-reduced-motion: reduce) {
  .wrap,
  .dot {
    animation: none;
  }
}
