:root {
  --ink: #17231e;
  --muted: #67716c;
  --line: #dfe7dd;
  --paper: #fffdf6;
  --card: #f7f1df;
  --green: #1c9a55;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(28, 154, 85, .05) 1px, transparent 1px),
    linear-gradient(rgba(28, 154, 85, .05) 1px, transparent 1px),
    var(--paper);
  background-size: 24px 24px;
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: #0f713c; font-weight: 800; }

.legal {
  width: min(820px, calc(100% - 32px));
  margin: 42px auto;
  padding: 30px;
  background: rgba(247, 241, 223, .86);
  border: 1px solid var(--line);
  border-radius: 24px;
}

h1 {
  margin: 18px 0 8px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: .95;
  letter-spacing: -.06em;
}

h2 {
  margin-top: 28px;
  font-size: 24px;
  letter-spacing: -.035em;
}

p, li { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: white;
  background: var(--green);
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
}
