:root {
  color-scheme: light;
  --ink: #152025;
  --muted: #59676a;
  --line: #dce3e1;
  --paper: #f8faf8;
  --accent: #0c6b59;
  --accent-dark: #084d40;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: var(--accent-dark);
}
a:hover {
  color: var(--accent);
}

.home {
  width: min(100% - 48px, 720px);
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
}

h1,
h2 {
  line-height: 1.13;
  letter-spacing: -0.035em;
}
h1 {
  margin: 0;
  font-size: clamp(2.5rem, 9vw, 5rem);
  font-weight: 760;
}
h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 720;
}

.lede {
  max-width: 26rem;
  margin: 18px 0 30px;
  color: var(--muted);
  font-size: 1.2rem;
}

.button {
  display: inline-block;
  padding: 11px 17px;
  border-radius: 8px;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.button:hover {
  color: #fff;
  background: var(--accent-dark);
}

.site-header {
  width: min(100% - 48px, 800px);
  margin: 0 auto;
  padding: 26px 0;
}
.wordmark {
  color: var(--ink);
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.policy {
  width: min(100% - 48px, 800px);
  margin: 34px auto 88px;
}
.policy h1 {
  font-size: clamp(2.45rem, 7vw, 4rem);
}
.policy > p {
  max-width: 48rem;
}
.effective {
  margin: 12px 0 42px;
  color: var(--muted);
}
.policy section {
  max-width: 48rem;
  padding: 29px 0;
  border-top: 1px solid var(--line);
}
.policy section p:last-child {
  margin-bottom: 0;
}
.policy ul {
  margin: 0;
  padding-left: 1.3rem;
}
.policy li + li {
  margin-top: 10px;
}
.narrow {
  max-width: 660px;
}

@media (max-width: 560px) {
  .home,
  .site-header,
  .policy {
    width: min(100% - 36px, 800px);
  }
  .policy {
    margin-top: 20px;
  }
}
