:root {
  --teal: #0F8B8D;
  --teal-dark: #0B6466;
  --orange: #F26B1D;
  --navy: #14284B;
  --cream: #F6F1E7;
  --ink: #1B1B1F;
  --muted: #5B5F6A;
  --line: #E4DED2;
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
}
h1, h2, h3 { font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif; line-height: 1.15; margin: 0 0 0.4em; color: var(--navy); }
h1 { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: 1.45rem; font-weight: 700; margin-top: 2em; }
h3 { font-size: 1.1rem; font-weight: 700; margin-top: 1.4em; }
p { margin: 0 0 1em; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--orange); }
ul { padding-left: 1.2em; }
li { margin-bottom: 0.4em; }
header.site {
  background: var(--teal);
  color: #fff;
  padding: 18px 0;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
header.site a { color: #fff; text-decoration: none; font-weight: 600; }
header.site nav { display: flex; gap: 22px; font-size: 0.95rem; }
.brand { display: flex; align-items: center; gap: 12px; font-family: 'Outfit', 'Segoe UI', system-ui, sans-serif; font-size: 1.25rem; font-weight: 800; letter-spacing: -0.01em; }
.brand svg { width: 34px; height: 34px; border-radius: 8px; }
.wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
main.wrap { padding-top: 40px; padding-bottom: 64px; }
.lede { font-size: 1.15rem; color: var(--muted); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin: 1.2em 0; }
.meta { color: var(--muted); font-size: 0.95rem; }
footer.site { border-top: 1px solid var(--line); color: var(--muted); font-size: 0.9rem; padding: 24px 0 40px; }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 16px 28px; justify-content: space-between; }
.cta { display: inline-block; background: var(--orange); color: #fff; font-weight: 700; padding: 12px 20px; border-radius: 12px; text-decoration: none; }
.cta:hover { color: #fff; background: #d95d15; }
.badges { display: flex; gap: 14px; flex-wrap: wrap; margin: 1.4em 0; }
.hero { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center; }
@media (min-width: 640px) { .hero { grid-template-columns: 1.4fr 1fr; } }
.hero-art { display: flex; justify-content: center; }
.hero-art svg { width: 200px; height: 200px; border-radius: 44px; box-shadow: 0 18px 40px rgba(20, 40, 75, 0.18); }
dl.faq dt { font-weight: 700; color: var(--navy); margin-top: 1.2em; }
dl.faq dd { margin: 0.3em 0 0; }
