@font-face {
  font-family: "Pretendard Variable";
  font-weight: 45 920;
  font-style: normal;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/woff2/PretendardVariable.woff2")
    format("woff2-variations");
}

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

html,
body {
  height: 100%;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, "Apple SD Gothic Neo",
    "Malgun Gothic", system-ui, sans-serif;
  color: #191f28;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: #3182f6;
  color: #fff;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.logo-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #191f28;
}

.title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #191f28;
  margin-bottom: 12px;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #4e5968;
  margin-bottom: 40px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e5e8eb;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #4e5968;
  box-shadow: 0 1px 2px rgba(15, 19, 25, 0.04);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f59f00;
  animation: pulse 2s ease-in-out infinite;
}

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

.status-text {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.footer {
  padding: 24px;
  text-align: center;
  font-size: 12px;
  color: #8b95a1;
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }
  .subtitle {
    font-size: 14px;
  }
}

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