/* BENTOOL — no external resources, no cookies, no third-party scripts.
   Keep it that way: it is what keeps this site out of cookie-consent territory. */

:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #1c1b19;
  --muted: #5f5c57;
  --rule: #e3dfd8;
  --accent: #1f5f4f;
  --accent-text: #ffffff;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16171a;
    --surface: #1d1f23;
    --text: #ececea;
    --muted: #a3a09a;
    --rule: #2e3137;
    --accent: #6fb9a4;
    --accent-text: #10221d;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  padding: 0 20px;
  background: var(--bg);
  color: var(--text);
  font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif;
}

.site-header,
main,
.site-footer { max-width: 680px; margin: 0 auto; }

/* ---------------------------------------------------------------- header */

.site-header {
  padding-block: 32px 8px;
}

.wordmark {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text);
  text-decoration: none;
}

.logo { max-width: 170px; height: auto; display: block; }

/* ------------------------------------------------------------------ text */

h1 {
  font-size: clamp(28px, 6vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin: 24px 0 18px;
}

h2 {
  font-size: 19px;
  margin: 44px 0 14px;
  letter-spacing: 0.01em;
}

h3 {
  font-size: 17px;
  margin: 28px 0 8px;
}

p, li { margin: 0 0 14px; }

.lede { font-size: 19px; color: var(--text); }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { text-decoration-thickness: 2px; }

strong { font-weight: 650; }

section { margin-bottom: 8px; }

/* ----------------------------------------------------------------- lists */

.steps { padding-left: 22px; }
.steps li { margin-bottom: 18px; }

.plain ul { padding-left: 22px; }
.plain li { margin-bottom: 16px; }

/* ------------------------------------------------------- legal documents */

.legal { padding-bottom: 8px; }

.legal .updated {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.legal h2 {
  border-top: 1px solid var(--rule);
  padding-top: 26px;
}

.legal dl { margin: 0 0 18px; }
.legal dt { font-weight: 650; margin-top: 14px; }
.legal dd { margin: 4px 0 0; color: var(--text); }

.callout {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--accent);
  padding: 16px 18px;
  margin: 22px 0;
}

.callout p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- footer */

.site-footer {
  border-top: 1px solid var(--rule);
  margin-top: 56px;
  padding-block: 24px 48px;
  color: var(--muted);
  font-size: 15px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-bottom: 14px;
}

.entity { margin: 0; }
