:root {
  --ink: #101412;
  --muted: #5d6762;
  --line: #dce4df;
  --bg: #f6f8f7;
  --panel: #ffffff;
  --accent: #9fe7cf;
  --accent-ink: #08231d;
  --teal: #0f766e;
  --radius: 8px;
  --button-radius: 16px;
  --button-shadow: 0 10px 24px rgba(16, 20, 18, .08);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  letter-spacing: 0;
}
a { color: inherit; }
p, li { line-height: 1.65; }
.nav, .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
}
.brand { font-size: 20px; font-weight: 900; text-decoration: none; }
.nav-links, .footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.nav-links a, .footer-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-radius);
  background: var(--accent);
  color: var(--accent-ink);
  padding: 11px 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--button-shadow);
}
.wrap {
  width: min(980px, calc(100% - 40px));
  margin: 54px auto;
}
.hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}
.eyebrow {
  width: max-content;
  max-width: 100%;
  border: 1px solid #b7ded8;
  border-radius: 999px;
  background: #eef8f5;
  color: #075c51;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 900;
}
h1 {
  max-width: 860px;
  margin: 18px 0 16px;
  font-size: clamp(38px, 7vw, 68px);
  line-height: .96;
  letter-spacing: 0;
}
.intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}
.facts div, .card {
  background: var(--panel);
  padding: 20px;
}
.facts span, .card span { color: var(--muted); }
.facts strong, .card strong { display: block; overflow-wrap: anywhere; }
.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card h2 {
  margin: 0 0 8px;
  font-size: 24px;
}
.card p { color: var(--muted); margin-bottom: 0; }
.callout {
  margin-top: 18px;
  border: 1px solid #b7ded8;
  border-radius: var(--radius);
  background: #eef8f5;
  padding: 20px;
}
.callout p { margin: 0; color: #16483f; }
.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
}
@media (max-width: 720px) {
  .nav, .footer { align-items: flex-start; flex-direction: column; padding: 18px; }
  .wrap { width: calc(100% - 32px); margin: 34px auto; }
  .facts, .grid { grid-template-columns: 1fr; }
}
