:root {
  color-scheme: light;
  --bg: #eef3f7;
  --surface: rgba(255, 255, 255, 0.88);
  --ink: #17324a;
  --muted: #4b6479;
  --accent: #0d6c8f;
  --line: rgba(23, 50, 74, 0.12);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at top left, rgba(13,108,143,0.16), transparent 30%),
    linear-gradient(180deg, #f7fafc, var(--bg));
  color: var(--ink);
}
.wrap {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  padding: 88px 0 56px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
}
h1, h2 { line-height: 1.08; margin: 0 0 16px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); max-width: 11ch; }
h2 { font-size: 1.4rem; }
p, li { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.lead { max-width: 58ch; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  padding-bottom: 64px;
}
.grid section, .article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(23, 50, 74, 0.07);
}
.article { margin: 64px auto; }
.button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #0d6c8f, #1f8a63);
}
a { color: var(--accent); }
