:root {
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #eef3f8;
  color: #18212f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(27, 91, 128, 0.13), rgba(73, 133, 97, 0.1)),
    #eef3f8;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
}

.hero {
  min-height: 58vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #1b5b80;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: #425066;
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  background: #1b5b80;
  color: #fff;
}

.button.secondary {
  border: 1px solid #b9c6d6;
  color: #1f2b3a;
  background: rgba(255, 255, 255, 0.68);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

article {
  min-height: 156px;
  padding: 22px;
  border: 1px solid #d4dde8;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 34px rgba(38, 57, 77, 0.09);
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #27835d;
  box-shadow: 0 0 0 5px rgba(39, 131, 93, 0.12);
}

h2 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
}

article p {
  margin: 0;
  color: #526076;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 1120px);
    padding: 42px 0;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}
