/* Shared styling for the Taters legal + account-deletion pages.
   Self-contained on purpose: no CDN, no webfont, no tracking. */

:root {
  color-scheme: light dark;
  --bg: #fffdf8;
  --surface: #ffffff;
  --text: #2b2118;
  --muted: #6b5d4f;
  --accent: #c2703d;
  --border: #ece2d6;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17130f;
    --surface: #201a15;
    --text: #f2e9df;
    --muted: #b1a294;
    --accent: #e8a074;
    --border: #322922;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 2rem 1.25rem 4rem;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

main {
  max-width: 44rem;
  margin: 0 auto;
}

header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}

h1 { font-size: 1.85rem; line-height: 1.25; margin: 0 0 .35rem; }
h2 { font-size: 1.2rem; margin: 2.25rem 0 .6rem; }
h3 { font-size: 1rem; margin: 1.5rem 0 .4rem; }

.updated { color: var(--muted); font-size: .9rem; margin: 0; }

a { color: var(--accent); }

ul { padding-left: 1.25rem; }
li { margin: .35rem 0; }

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: .95rem;
}
th, td {
  border: 1px solid var(--border);
  padding: .55rem .7rem;
  text-align: left;
  vertical-align: top;
}
th { background: var(--surface); font-weight: 600; }

/* Wide tables scroll inside their own box rather than the page. */
.table-wrap { overflow-x: auto; }

.callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: .5rem;
  padding: 1rem 1.15rem;
  margin: 1.5rem 0;
}

.steps { counter-reset: step; list-style: none; padding-left: 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding-left: 2.25rem;
  margin: .9rem 0;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: .1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

footer {
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: .9rem;
}
footer a { margin-right: 1rem; }
