:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --text: #18202a;
  --muted: #5f6b7a;
  --line: #dfe4ea;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.intro {
  max-width: 720px;
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

article {
  min-height: 190px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

article span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

article p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 960px);
    padding: 48px 0;
  }

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