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

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.hero {
  min-height: 52vh;
  display: grid;
  align-content: center;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: #2764d8;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
}

.lead {
  max-width: 690px;
  margin: 0;
  color: #52667f;
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 16px;
  background: #14213d;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.actions a + a {
  background: #fff;
  color: #14213d;
  border: 1px solid #ccd8e7;
}

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

article {
  min-height: 180px;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

article span {
  color: #2764d8;
  font-weight: 900;
}

article h2 {
  margin: 18px 0 8px;
}

article p {
  margin: 0;
  color: #5b6e85;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .shell {
    padding: 34px 0;
  }
}
