/* Styles for the standalone documents — privacy.html and 404.html.
 *
 * These pages deliberately load no Tailwind, no icon library and no JavaScript.
 * A 404 that depends on a CDN is a 404 that shows a blank page on exactly the
 * kind of connection that produced it, and a privacy policy should be readable
 * by anything that can read HTML.
 */

:root {
  --brand-700: #1d5e4f;
  --brand-600: #227560;
  --brand-100: #d9f0e8;
  --brand-50: #f0f9f6;
  --sand-50: #faf8f4;
  --ink: #1e293b;
  --muted: #64748b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--sand-50);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--brand-700);
  text-decoration: none;
  margin-bottom: 2rem;
}
.brand img { width: 2rem; height: 2rem; border-radius: 0.6rem; display: block; }

h1 { font-size: 2rem; line-height: 1.2; letter-spacing: -0.02em; color: var(--brand-700); margin: 0 0 0.5rem; }
h2 { font-size: 1.2rem; color: var(--brand-700); margin: 2rem 0 0.5rem; }
p, ul, ol { margin: 0 0 1rem; }
ul, ol { padding-left: 1.25rem; }
li { margin: 0.35rem 0; }
a { color: var(--brand-600); font-weight: 500; }
strong { font-weight: 700; }

.lede { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; }
.updated { font-size: 0.9rem; color: var(--muted); }

.callout {
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #7c2d12;
  font-weight: 600;
  margin: 0 0 1.5rem;
}

.card {
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: #fff;
  border: 1px solid var(--brand-100);
  margin: 0 0 1rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 0.7rem;
  background: var(--brand-600);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.5rem;
}
.btn:hover { background: var(--brand-700); }

.keys { font-size: 0.95rem; }
.keys code {
  background: var(--brand-50);
  color: var(--brand-700);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--brand-100);
  font-size: 0.92rem;
  color: var(--muted);
}

a:focus-visible, .btn:focus-visible {
  outline: 3px solid #f97316;
  outline-offset: 2px;
}
