:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --ink: #1d2525;
  --muted: #5c6a67;
  --line: #d8ded5;
  --panel: #ffffff;
  --accent: #2f6f73;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.intro {
  max-width: 680px;
  padding-bottom: 52px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  font-weight: 760;
  letter-spacing: 0;
}

.lead {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

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

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

h2 {
  margin-bottom: 12px;
  font-size: 1rem;
  letter-spacing: 0;
}

article p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 920px);
    padding: 60px 0 44px;
  }

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