* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f8fafc;
  color: #0f172a;
  font-family: Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: #1d4ed8;
  font-weight: 700;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.brand img {
  max-height: 54px;
  width: auto;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
}

.hero {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: clamp(28px, 5vw, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  color: #1d4ed8;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
}

h2 {
  margin-top: 0;
}

.lead {
  max-width: 780px;
  margin: 0 0 28px;
  color: #334155;
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  background: #1d4ed8;
  color: #ffffff;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.grid article,
.content {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 24px;
}

.content {
  margin-top: 24px;
}

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

  .topbar nav {
    justify-content: flex-start;
  }
}
