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

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
}

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

.panel {
  width: min(100%, 560px);
  border: 1px solid #d9dee7;
  border-radius: 8px;
  background: #ffffff;
  padding: clamp(28px, 6vw, 48px);
  box-shadow: 0 18px 50px rgb(17 24 39 / 8%);
}

.eyebrow {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  margin: 20px 0 0;
  max-width: 36rem;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin-top: 32px;
  border: 1px solid #c7d2fe;
  border-radius: 999px;
  background: #eef2ff;
  padding: 8px 14px;
  color: #1e3a8a;
  font-size: 0.92rem;
  font-weight: 700;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #16a34a;
  box-shadow: 0 0 0 4px rgb(22 163 74 / 14%);
}
