@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap");

:root {
  --ink: #111820;
  --muted: #58636f;
  --line: #d5dce3;
  --blue: #2355e8;
  --soft: #f2f5f7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

a { color: var(--blue); }

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
}

header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-size: 21px;
  font-weight: 400;
}

header > a:last-child {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

main {
  padding: 76px 0 100px;
}

h1 {
  margin: 0 0 16px;
  font-size: 52px;
  line-height: 1.05;
}

.updated {
  margin: 0 0 50px;
  color: var(--muted);
  font-size: 13px;
}

h2 {
  margin: 42px 0 12px;
  font-size: 22px;
}

p,
li {
  color: #46515c;
  font-size: 15px;
  line-height: 1.75;
}

ul { padding-left: 22px; }

.notice {
  margin-top: 40px;
  padding: 22px;
  background: var(--soft);
  border-left: 3px solid var(--blue);
}

footer {
  padding: 28px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 600px) {
  h1 { font-size: 40px; }
  main { padding-top: 56px; }
}
