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

* {
  box-sizing: border-box;
}

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

a {
  color: #1b4d89;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px;
}

.brand {
  font-weight: 700;
  text-decoration: none;
}

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

nav a {
  text-decoration: none;
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px 56px;
}

.hero {
  padding: 56px 0 40px;
}

.eyebrow,
.label {
  color: #627084;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 12px 0;
  font-size: 44px;
  line-height: 1.08;
}

.lede {
  max-width: 640px;
  color: #465569;
  font-size: 18px;
  line-height: 1.65;
}

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

article,
.section {
  background: #ffffff;
  border: 1px solid #dbe2ec;
  border-radius: 8px;
  padding: 22px;
}

article strong {
  display: block;
  margin-top: 10px;
  font-size: 20px;
}

article p,
.section p {
  color: #56657a;
  line-height: 1.6;
}

.section {
  margin-top: 18px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px;
  color: #66758a;
  font-size: 14px;
}

.plain {
  display: grid;
  place-items: center;
}

.message {
  max-width: 520px;
  text-align: center;
}

@media (max-width: 760px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 34px;
  }

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