:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background: #eef3f8;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.panel {
  width: min(100%, 620px);
  border: 1px solid #d7e0ea;
  border-radius: 8px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 18px 50px rgb(31 41 51 / 12%);
}

.eyebrow {
  margin: 0 0 8px;
  color: #0f766e;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  color: #111827;
  font-size: clamp(2rem, 6vw, 3.25rem);
  line-height: 1.05;
}

p {
  max-width: 54ch;
  color: #52606d;
  font-size: 1rem;
  line-height: 1.65;
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  padding: 0 18px;
}

button:hover {
  background: #1d4ed8;
}

.status {
  margin-bottom: 0;
  font-weight: 700;
}
