@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(120deg, #f5f5f5, #ffffff);
  color: #1f2933;
  min-height: 100vh;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
}

.content {
  max-width: 520px;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out forwards;
}

.badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background-color: #1f2933;
  border-radius: 999px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.subtext {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Subtle animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
}
