:root {
  --ink: #162033;
  --muted: #667385;
  --line: #d7ebe7;
  --mint: #087267;
  --mint-dark: #065b53;
  --mint-soft: #e4faf5;
  --ivory: #fbfaf7;
  --white: #ffffff;
  --page-max: 1060px;
  --page-gutter: max(20px, calc((100vw - var(--page-max)) / 2));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
li {
  color: var(--muted);
  line-height: 1.72;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid rgba(15, 143, 131, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 8px;
  background: var(--mint);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #354155;
  font-size: 14px;
  font-weight: 850;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
}

.button {
  color: #fff;
  background: var(--mint);
}

.button-secondary {
  color: var(--mint-dark);
  border: 2px solid rgba(15, 143, 131, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  padding: 76px var(--page-gutter) 48px;
  background: linear-gradient(180deg, #fff 0%, #f1fffb 100%);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--mint-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.04;
}

.lead {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-answer,
.content-grid,
.faq,
.related,
.cta {
  padding: 58px var(--page-gutter);
}

.quick-answer {
  background: #fff;
}

.answer-card,
.content-card,
.faq article,
.related a,
.cta-inner {
  border: 1px solid rgba(15, 143, 131, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(15, 70, 66, 0.06);
}

.answer-card {
  max-width: 980px;
  padding: 28px;
}

.answer-card h2,
.content-card h2,
.faq h2,
.related h2,
.cta h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.12;
}

.answer-card p:last-child,
.content-card p:last-child,
.faq article p:last-child {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  background: #effdf8;
}

.content-card {
  padding: 28px;
}

.content-card h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.content-card ul {
  margin: 0;
  padding-left: 20px;
}

.faq {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq article {
  padding: 24px;
}

.faq h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.related {
  background: #fbfffd;
}

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

.related a {
  padding: 18px;
  color: var(--mint-dark);
  font-weight: 900;
}

.cta {
  padding-bottom: 76px;
  background: #fff;
}

.cta-inner {
  padding: 34px;
  text-align: center;
}

.cta-inner p {
  max-width: 680px;
  margin: 0 auto 24px;
}

.footer {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 28px 20px 42px;
  color: var(--muted);
  font-weight: 850;
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero,
  .quick-answer,
  .content-grid,
  .faq,
  .related,
  .cta {
    padding-right: 18px;
    padding-left: 18px;
  }

  .content-grid,
  .related-links {
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary {
    width: 100%;
  }
}
