:root {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: #f8fafc;
  background: #0f172a;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

main {
  width: min(760px, 100%);
  padding: 64px;
  border: 1px solid #334155;
  border-radius: 24px;
  background: #111827;
}

h1 {
  margin: 18px 0;
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
}

p {
  color: #cbd5e1;
  font-size: 1.2rem;
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #1e293b;
  font-size: .85rem;
}
