:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #0f172a;
  color: #e2e8f0;
}

* {
  box-sizing: border-box;
}

body {
  display: grid;
  min-height: 100vh;
  margin: 0;
  place-items: center;
  background:
    radial-gradient(circle at top left, #2563eb88, transparent 36rem),
    #0f172a;
}

.card {
  width: min(90%, 42rem);
  padding: 3rem;
  border: 1px solid #334155;
  border-radius: 1rem;
  background: #172033cc;
  box-shadow: 0 1.5rem 4rem #02061766;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: #60a5fa;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
}

p {
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: #14532d;
  color: #bbf7d0;
  font-weight: 700;
}

.status span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #4ade80;
}
