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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 18%, rgb(250 190 20 / 18%), transparent 28rem),
    linear-gradient(135deg, #09090b 0%, #17171a 100%);
}

.setup-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.25rem, 5vw, 4rem);
}

.setup-card {
  width: min(46rem, 100%);
  border: 1px solid rgb(255 255 255 / 16%);
  border-top: 0.35rem solid #fabe14;
  border-radius: 1rem;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: rgb(15 15 17 / 92%);
  box-shadow: 0 2rem 6rem rgb(0 0 0 / 42%);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #fabe14;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  background: #fabe14;
  color: #09090b;
  font-weight: 900;
  letter-spacing: -0.05em;
}

h1 {
  margin: 1.5rem 0 0.75rem;
  max-width: 14ch;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

p {
  max-width: 58ch;
  color: #c9c9ce;
  line-height: 1.7;
}

.lead {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
}

.status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgb(250 190 20 / 12%);
  color: #fabe14;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #fabe14;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
}
