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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-weight: 750;
  letter-spacing: -0.03em;
}

nav {
  display: flex;
  gap: 18px;
  color: #667085;
  font-size: 14px;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  color: #315ea8;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 12px 0 22px;
}

.lead, .page p, .cards p {
  color: #5f6c80;
  line-height: 1.7;
}

.lead {
  max-width: 680px;
  font-size: 18px;
}

.actions {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.button {
  display: inline-block;
  padding: 13px 18px;
  border-radius: 999px;
  background: #172033;
  color: white;
  font-weight: 650;
}

.link {
  color: #315ea8;
  font-weight: 650;
}

.panel {
  border-radius: 32px;
  background: white;
  border: 1px solid #e8edf5;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(25, 35, 70, 0.08);
}

.panel img {
  width: 100%;
  display: block;
}

.cards {
  width: min(1120px, calc(100% - 32px));
  margin: 54px auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cards article, .page {
  background: white;
  border: 1px solid #e8edf5;
  border-radius: 24px;
  padding: 28px;
}

.cards h2 {
  margin: 0 0 8px;
  font-size: 18px;
}

.page {
  width: min(820px, calc(100% - 32px));
  margin: 40px auto;
}

.page h1 {
  font-size: 44px;
}

.status-ok {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eaf8ef;
  color: #137333;
  font-weight: 700;
}

footer {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 24px;
  color: #8a94a6;
  font-size: 14px;
}

@media (max-width: 760px) {
  .nav, .hero {
    display: block;
  }

  nav {
    margin-top: 14px;
  }

  .panel {
    margin-top: 30px;
  }

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