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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(246, 248, 251, 0.95)),
    #f6f8fb;
}

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

.hero {
  width: min(100%, 760px);
  padding: 42px;
  border: 1px solid #d9e1ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(23, 32, 51, 0.08);
}

.eyebrow {
  margin: 0 0 14px;
  color: #4c6688;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: #526173;
  font-size: 1.08rem;
  line-height: 1.7;
}

.status-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 10px 14px;
  border: 1px solid #cfd9e6;
  border-radius: 8px;
  color: #20314a;
  background: #f9fbfe;
  font-size: 0.94rem;
  font-weight: 650;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1a9f63;
  box-shadow: 0 0 0 4px rgba(26, 159, 99, 0.14);
}

@media (max-width: 560px) {
  .hero {
    padding: 30px 22px;
  }
}
