:root {
  color-scheme: light dark;
  --background: #ffffff;
  --surface: #f5f5f7;
  --text: #1d1d1f;
  --muted: #6e6e73;
  --border: #d2d2d7;
  --link: #06c;
  --link-hover: #004999;
  --focus: #0071e3;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  color: var(--text);
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--background);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--link-hover);
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid color-mix(in srgb, var(--focus) 36%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--text);
  color: var(--background);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.site-footer {
  border-color: var(--border);
  border-style: solid;
}

.site-header {
  border-width: 0 0 1px;
}

.site-footer {
  margin-top: auto;
  border-width: 1px 0 0;
}

.bar {
  width: min(100% - 48px, 1180px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand,
.nav-link,
.footer-link {
  color: var(--text);
  text-decoration: none;
}

.brand {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
}

.nav-link[aria-current="page"] {
  color: var(--link);
}

main {
  width: min(100% - 48px, 720px);
  margin: 0 auto;
  padding: 88px 0 104px;
}

h1,
h2 {
  margin-top: 0;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 64px);
  line-height: 1.03;
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 650;
}

.lede {
  max-width: 620px;
  margin: 0 0 52px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.section {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.section p,
.section ol,
.section ul {
  margin-top: 0;
  margin-bottom: 18px;
}

.section p:last-child,
.section ol:last-child,
.section ul:last-child {
  margin-bottom: 0;
}

.contact-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
}

.issue-list,
.policy-list {
  padding-left: 1.4em;
}

.issue-list li,
.policy-list li {
  padding-left: 0.35em;
  margin: 10px 0;
}

.effective-date {
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer .bar {
  min-height: 96px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 640px) {
  .bar,
  main {
    width: min(100% - 36px, 720px);
  }

  .bar {
    min-height: 64px;
  }

  .brand {
    max-width: 160px;
    font-size: 16px;
    line-height: 1.2;
  }

  .site-nav {
    gap: 18px;
    font-size: 14px;
  }

  main {
    padding: 58px 0 76px;
  }

  h1 {
    font-size: 44px;
  }

  .lede {
    margin-bottom: 42px;
    font-size: 19px;
  }

  .section {
    padding: 30px 0;
  }

  .site-footer .bar {
    min-height: 112px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #000000;
    --surface: #1c1c1e;
    --text: #f5f5f7;
    --muted: #a1a1a6;
    --border: #38383a;
    --link: #2997ff;
    --link-hover: #66b5ff;
    --focus: #2997ff;
  }
}

@media print {
  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  main {
    width: 100%;
    padding: 0;
  }
}
