:root {
  color-scheme: light;
  --bg: #f8f5ef;
  --ink: #1f2320;
  --muted: #68706a;
  --line: #ded9ce;
  --paper: #fffdf8;
  --green: #20785a;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
}

.legal-shell {
  width: min(820px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.back-link {
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

h1 {
  margin: 24px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

section {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

h2 {
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.updated {
  margin-top: 22px;
  font-size: 13px;
}
