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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 247, 249, 0.96)),
    #f6f7f9;
}

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

.panel {
  width: min(100%, 520px);
  border: 1px solid #d7dde5;
  border-radius: 8px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 18px 48px rgba(23, 32, 42, 0.08);
}

.eyebrow {
  margin: 0 0 16px;
  color: #326a5c;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  margin: 18px 0 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  border: 1px solid #b8ded1;
  border-radius: 999px;
  background: #edf8f4;
  color: #20594c;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 700;
}

.status span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1ca672;
}

.button {
  display: inline-flex;
  margin-top: 28px;
  border-radius: 6px;
  background: #17202a;
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 700;
  text-decoration: none;
}
