:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211f;
  background: #f5f7f6;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  line-height: 1.65;
}

a {
  color: #087f68;
}

a:hover {
  color: #075f51;
}

.site-header {
  border-bottom: 1px solid #d9e1de;
  background: #ffffff;
}

.header-inner,
.page,
.footer-inner {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #17211f;
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a {
  color: #43514d;
  font-size: 14px;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: #087f68;
  font-weight: 700;
}

.page {
  padding: 64px 0 80px;
}

.hero {
  max-width: 760px;
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #087f68;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

h1,
h2 {
  line-height: 1.28;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 7vw, 58px);
}

h2 {
  margin: 0 0 12px;
  font-size: 23px;
}

p {
  margin: 0 0 16px;
}

.lede {
  margin-top: 20px;
  color: #43514d;
  font-size: 19px;
}

.notice {
  margin: 24px 0 0;
  padding: 16px 18px;
  border-left: 4px solid #087f68;
  background: #e7f5f1;
}

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

.feature,
.content-section {
  padding: 28px;
  background: #ffffff;
}

.feature p,
.content-section p,
.content-section li {
  color: #43514d;
}

.content-stack {
  display: grid;
  gap: 1px;
  border: 1px solid #d9e1de;
  background: #d9e1de;
}

.content-stack .content-section {
  padding: 28px 32px;
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

code {
  padding: 2px 5px;
  border: 1px solid #d9e1de;
  background: #f5f7f6;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
}

.site-footer {
  border-top: 1px solid #d9e1de;
  background: #ffffff;
}

.footer-inner {
  padding: 24px 0 34px;
  color: #66736f;
  font-size: 13px;
}

@media (max-width: 680px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .page {
    padding-top: 44px;
  }

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

  .feature,
  .content-section,
  .content-stack .content-section {
    padding: 24px;
  }
}
