:root {
  color-scheme: light;
  --bg: #f5fbfb;
  --surface: #ffffff;
  --ink: #243044;
  --muted: #61717f;
  --line: #dcebec;
  --teal: #59adb9;
  --teal-soft: #7dd3d4;
  --teal-alt: #77cdcf;
  --navy: #2e3f63;
  --shadow: 0 18px 48px rgba(46, 63, 99, 0.12);
}
* { 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;
  line-height: 1.7;
}
a { color: var(--navy); font-weight: 800; }
.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-size: 20px; font-weight: 900; }
.brand img { object-fit: contain; }
.top-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.top-nav a, .button {
  min-height: 42px;
  border-radius: 8px;
  padding: 10px 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-nav a { color: var(--muted); }
main { width: min(1180px, calc(100% - 32px)); margin: 0 auto 56px; }
.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 32px;
  align-items: center;
  padding: 32px 0 48px;
}
.hero-copy h1, .page-hero h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}
.lead { max-width: 720px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); margin: 22px 0 0; }
.eyebrow { margin: 0 0 12px; color: var(--teal); font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.primary { background: linear-gradient(135deg, var(--teal-soft), var(--teal)); color: #fff; box-shadow: var(--shadow); }
.secondary { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.hero-media, .split img {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-media img, .split img { width: 100%; height: 100%; object-fit: cover; display: block; }
.section, .split, .legal-body, .article-body, .faq, .cta-band {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  margin-top: 20px;
}
.section-heading h2, .split h2, .legal h1, .article h1 { margin-top: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-grid article, .link-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fdfd;
  padding: 20px;
}
.feature-grid h3 { margin: 0 0 8px; }
.feature-grid p, .split p, .legal-body p, .article-body p, .faq p, .cta-band p { color: var(--muted); }
.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 28px; align-items: center; }
.link-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.page-hero { padding: 72px 0 26px; }
.page-hero.compact { min-height: 0; padding-bottom: 14px; }
.legal-body, .article-body { display: grid; gap: 14px; }
.legal-body article, .article-body article { border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.legal-body article:last-child, .article-body article:last-child { border-bottom: 0; }
.updated { font-size: 14px; color: var(--muted); }
details { border-top: 1px solid var(--line); padding: 16px 0; }
summary { cursor: pointer; font-weight: 900; }
.cta-band { background: linear-gradient(135deg, rgba(125, 211, 212, 0.24), rgba(89, 173, 185, 0.14)); }
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 46px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer p { margin: 6px 0 0; }
.footer-links { display: grid; gap: 6px; text-align: right; }
@media (max-width: 860px) {
  .site-header, .footer { display: grid; }
  .top-nav { justify-content: flex-start; }
  .hero, .split, .feature-grid, .link-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .footer-links { text-align: left; }
}
