* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #111827;
  background: #f5f7fb;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: 72px 0;
}

.hero {
  margin-bottom: 28px;
  padding: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.eyebrow {
  margin: 0 0 10px;
  color: #5b6fb7;
  font-size: 13px;
  font-weight: 700;
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: 52px;
  line-height: 1.08;
}

p {
  color: #6b7280;
  font-size: 18px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.card.highlight {
  background: #ede9fe;
}

.card h2 {
  margin: 0 0 10px;
}

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

  h1 {
    font-size: 40px;
  }
}
