:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #171b20;
  background: #f7f4ee;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.home-page {
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(12, 94, 130, 0.08), transparent 42%),
    #f7f4ee;
}

.home-shell {
  display: grid;
  align-content: center;
  width: min(820px, calc(100vw - 40px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: #0b5d70;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #111417;
  font-size: clamp(3.6rem, 10vw, 7.2rem);
  font-weight: 800;
  line-height: 0.94;
}

.home-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: #394147;
  font-size: clamp(1.08rem, 2vw, 1.38rem);
  line-height: 1.5;
}

.home-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  color: #111417;
  font-size: 0.98rem;
  font-weight: 750;
}

.document-page {
  min-height: 100vh;
  background: #f9f7f2;
}

.document-shell {
  width: min(820px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.document-nav {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
  color: #465057;
  font-size: 0.95rem;
  font-weight: 750;
}

.document-shell h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  line-height: 1;
}

.updated {
  margin: 14px 0 34px;
  color: #657079;
  font-size: 0.95rem;
}

section {
  border-top: 1px solid #d8d0c2;
  padding: 24px 0;
}

h2 {
  margin: 0 0 10px;
  color: #111417;
  font-size: 1.05rem;
  line-height: 1.35;
}

p {
  margin: 0;
  color: #384149;
  font-size: 1rem;
  line-height: 1.62;
}

p + p {
  margin-top: 12px;
}

strong {
  color: #171b20;
  font-weight: 800;
}

@media (max-width: 560px) {
  .home-shell {
    width: min(100vw - 28px, 820px);
  }

  .home-copy {
    margin-top: 22px;
  }

  .home-links {
    gap: 14px;
    margin-top: 28px;
  }

  .document-shell {
    width: min(100vw - 28px, 820px);
    padding-top: 26px;
  }
}
