/* Shared shell for the static legal pages. Palette is clinch-website.md §4.2,
   same tokens as the app, so these pages do not read as a different site. */
:root {
  --ink: #0b0b0c;
  --text: #f5f5f4;
  --text-muted: #a1a1a6;
  --text-dim: #7c7c82;
  --hairline: rgba(255, 255, 255, 0.1);
  --brass: #b8894a;
  --brass-hi: #cfa066;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Instrument Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 40px; }
header { border-bottom: 1px solid var(--hairline); }
header .wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.mark { font-family: "IBM Plex Mono", monospace; font-size: 15px; letter-spacing: .34em; color: var(--text); text-decoration: none; }
.back { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brass-hi); text-decoration: none; }
.back:hover { color: var(--text); }
h1 {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: .96;
  margin: 0;
}
h2 {
  font-family: "Schibsted Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 48px 0 12px;
  color: var(--text);
}
p, li { font-size: 16px; line-height: 1.7; color: var(--text-muted); margin: 0 0 14px; }
ul { padding-left: 20px; margin: 0 0 14px; }
a { color: var(--brass-hi); }
a:hover { color: var(--text); }
strong { color: var(--text); }
.updated { font-size: 13px; color: var(--text-dim); margin-top: 22px; }
.lede { font-size: 18px; line-height: 1.65; color: var(--text-muted); margin-top: 26px; }
.todo {
  border: 1px solid var(--brass);
  border-radius: 10px;
  padding: 16px 18px;
  color: var(--brass-hi);
  font-size: 15px;
  margin: 28px 0;
}
table { width: 100%; border-collapse: collapse; margin: 0 0 20px; }
th, td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--hairline); font-size: 15px; color: var(--text-muted); vertical-align: top; }
th { color: var(--text); font-weight: 600; }
td:first-child, th:first-child { padding-right: 24px; }
footer { border-top: 1px solid var(--hairline); margin-top: 80px; }
footer .wrap { padding-top: 28px; padding-bottom: 40px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
footer div, footer nav { font-size: 13px; color: var(--text-dim); }
footer nav a { margin-left: 18px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } footer nav a { margin: 0 14px 0 0; } }
