* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  flex-direction: column;

  background: #0b0b0b;
  color: #f5f5f5;

  font-family:
    Inter,
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

.landing {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 24px;
}

.content {
  text-align: center;
  animation: fade-in 1.2s ease-out;
}

h1 {
  margin: 0;

  font-size: clamp(42px, 8vw, 84px);
  font-weight: 600;
  letter-spacing: 0.16em;
}

.message {
  margin: 28px 0 0;

  color: #cfcfcf;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.7;
}

.coming-soon {
  margin: 18px 0 0;

  color: #777;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
}

footer {
  padding: 24px;

  color: #5f5f5f;
  font-size: 11px;
  text-align: center;
}

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

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