:root {
  color-scheme: light;
  --background: #f7f7f4;
  --surface: #ffffff;
  --text: #191919;
  --muted: #62645f;
  --border: #deded8;
  --link: #1769aa;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body {
  min-height: 100vh;
  margin: 0;
}

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

.home {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.home-logo {
  display: block;
  width: min(220px, 46vw);
  height: auto;
}

.page {
  display: grid;
  min-height: 100vh;
  align-items: start;
  padding: 56px 20px;
}

.document {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: var(--text);
  font-weight: 650;
  text-decoration: none;
}

.brand-link img {
  width: 28px;
  height: 28px;
}

h1 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.updated {
  margin: 0 0 32px;
  color: var(--muted);
}

h2 {
  margin: 30px 0 10px;
  font-size: 1.12rem;
  line-height: 1.3;
  letter-spacing: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.2rem;
}

.contact {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

@media (max-width: 620px) {
  .page {
    padding: 20px 14px;
  }

  .document {
    padding: 26px 20px;
  }

  h1 {
    font-size: 1.65rem;
  }
}
