@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/instrument-sans-416253b0.woff2) format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
    U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
    U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(fonts/instrument-sans-e190a634.woff2) format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --paper: #fafaf8;
  --ink: #232622;
  --muted: #565d53;
  --line: #dddfd8;
  --accent: #9d3f26;
}
* {
  box-sizing: border-box;
}
html {
  background: var(--paper);
  scrollbar-color: var(--muted) var(--paper);
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--accent);
}
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  background: var(--ink);
  color: var(--paper);
}
.site-shell {
  width: min(100% - 48px, 680px);
  margin-inline: auto;
}
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}
.brand {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.025em;
  text-decoration: none;
}
.site-header nav {
  display: flex;
  gap: 24px;
}
.site-header a,
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.site-header nav a {
  font-size: 14px;
  text-decoration: none;
  color: var(--muted);
}
.site-header nav a:hover {
  color: var(--accent);
}
.site-header nav a[aria-current="page"] {
  text-decoration: underline;
}
h1 {
  margin: 0 0 24px;
  font-size: clamp(32px, 5vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.home {
  padding-block: 72px 64px;
}
.home h1 {
  font-size: clamp(34px, 5vw, 44px);
  line-height: 1.15;
  margin-bottom: 24px;
}
.home p {
  margin: 0 0 24px;
  color: var(--muted);
}
.home .home-description {
  font-size: 18px;
  line-height: 1.65;
  max-width: 48ch;
  margin-bottom: 36px;
}
.home .release-status {
  font-size: 14px;
  margin-top: 24px;
  margin-bottom: 0;
}
.home-features {
  margin: 0;
}
.home-features > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid var(--line);
}
.home-features dt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}
.home-features dd {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}
.policy-index {
  border-block: 1px solid var(--line);
  margin-block: 28px 40px;
}
.policy-index summary {
  cursor: pointer;
  padding-block: 12px;
  font-size: 14px;
}
.policy-index summary:hover {
  color: var(--accent);
}
.policy-index summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.policy-index nav {
  display: grid;
  padding-bottom: 16px;
}
.policy-index a {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  text-decoration: none;
}
.site-header nav a:hover,
.site-footer a:hover,
.policy-index a:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
  .home-features > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
  border-top: 1px solid var(--line);
  padding-block: 20px;
  font-size: 12px;
  color: var(--muted);
}
.site-footer a {
  text-decoration: none;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.policy {
  padding-block: 56px 64px;
}
.policy h1 {
  margin-bottom: 12px;
}
.policy-date {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}
.policy-intro {
  margin: 0 0 24px;
}
.policy section {
  margin-top: 36px;
  scroll-margin-top: 24px;
}
.policy h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 12px;
}
.policy section p,
.policy dd {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 16px;
}
.policy a {
  overflow-wrap: anywhere;
}
.policy dl {
  margin: 0;
}
.policy dt {
  font-size: 16px;
  font-weight: 500;
}
.policy dd {
  margin-left: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--paper);
  z-index: 10;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.skip-link:hover {
  color: var(--paper);
}
@media (max-width: 480px) {
  .site-header {
    padding-block: 16px;
  }
  .home {
    padding-block: 56px 56px;
  }
  .policy {
    padding-block: 36px 48px;
  }
}
@media print {
  html {
    background: white;
  }
  body {
    color: black;
  }
  .site-header,
  .site-footer,
  .policy-index {
    display: none;
  }
  .site-shell {
    width: 100%;
  }
  .policy {
    padding: 0;
  }
  .policy section {
    break-inside: avoid;
  }
  .policy section p,
  .policy dd {
    color: #222;
  }
}
