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

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background: #ffffff;
  color: #0a0a0a;

  font-family: Arial, Helvetica, sans-serif;

  padding: 40px 24px;
}

.coming-soon {
  width: 100%;
  max-width: 720px;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;

  animation: fade-in 0.8s ease forwards;
}

.logo {
  width: min(320px, 75vw);
  height: auto;

  margin-bottom: 52px;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;

  margin-bottom: 18px;
}

p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #666666;

  margin-bottom: 32px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 16px;

  background: #f7f7f7;
  border: 1px solid #eaeaea;
  border-radius: 999px;

  font-size: 0.9rem;
  color: #555555;
}

.status-dot {
  width: 8px;
  height: 8px;

  background: #38aef5;
  border-radius: 50%;

  animation: pulse 2s infinite;
}

footer {
  position: absolute;
  bottom: 24px;

  font-size: 0.8rem;
  color: #aaaaaa;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@media (max-width: 600px) {
  .logo {
    margin-bottom: 40px;
  }

  footer {
    position: static;
    margin-top: 80px;
  }
}