/* The written pages: privacy, terms, support.
 *
 * Same island as the landing page -- cream, clay, sage, Fraunces over
 * Nunito -- but laid out to be read rather than scrolled through. One
 * column, generous measure, nothing floating. */

:root {
  --cream:      #f9f7f1;
  --ink:        #2e2b25;
  --body:       #55503f;
  --mut:        #857c68;
  --sage-deep:  #4c5f35;
  --clay:       #bd6c34;
  --rule:       #e6dfd1;
  --card:       #fffdf7;
  --display: Fraunces, Georgia, "Times New Roman", serif;
  --ui: Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--body);
  font: 17px/1.68 var(--ui);
}

main { max-width: 44rem; margin: 0 auto; padding: 40px 22px 80px; }

.home {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14.5px; color: var(--sage-deep);
  text-decoration: none; margin-bottom: 26px;
}
.home:hover { text-decoration: underline; }

h1 {
  font-family: var(--display); font-weight: 700; color: var(--ink);
  font-size: clamp(30px, 5vw, 42px); line-height: 1.1; margin: 0 0 6px; text-wrap: balance;
}
h2 {
  font-family: var(--display); font-weight: 600; color: var(--ink);
  font-size: 21px; margin: 36px 0 10px; text-wrap: balance;
}
p, li { text-wrap: pretty; }
li { margin-bottom: 8px; }
a { color: inherit; }

.updated { color: var(--mut); font-size: 14px; margin: 0 0 30px; }

.card {
  background: var(--card); border: 1px solid var(--rule); border-radius: 16px;
  padding: 4px 18px; margin: 18px 0; overflow-x: auto;
}

table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 15px; }
th, td { text-align: left; vertical-align: top; padding: 11px 12px; border-bottom: 1px solid var(--rule); }
tr:last-child td { border-bottom: 0; }
th { color: var(--ink); font-weight: 700; }

footer {
  margin-top: 46px; padding-top: 20px; border-top: 1px solid var(--rule);
  color: var(--mut); font-size: 14px;
}
footer a { margin-right: 16px; }

@media (prefers-color-scheme: dark) {
  :root {
    --cream: #1c1a16; --ink: #f2ece1; --body: #d8d1c4; --mut: #a29a8a;
    --rule: #38332b; --card: #25221d; --sage-deep: #a8bd88;
  }
}
