* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  color: #1a1a1a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  padding: 1.5rem;
}

.card {
  text-align: center;
  max-width: 32rem;
  width: 100%;
  padding: 3rem 2rem;
}

h1 {
  font-size: 2.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

p {
  font-size: 1.1rem;
  color: #555;
  margin: 0 0 2rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #2e7d32;
  background: #eef7ee;
  border: 1px solid #d5ebd5;
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
}

.status .dot {
  color: #9aa89a;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  p {
    font-size: 1rem;
  }
}
