/* Shared styling for the standalone legal pages. Kept as plain static HTML+CSS rather than routes
   in the React app: these must stay readable and crawlable regardless of what the bundle is doing,
   and they change on a completely different schedule from the marketing site. */
:root {
  --ink: #1a1a1a;
  --muted: #6b7280;
  --line: #e5e5e5;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
header {
  border-bottom: 1px solid var(--line);
}
header .bar {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
header a.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
.mark {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: #141414;
  display: inline-flex; align-items: center; justify-content: center;
}
main {
  max-width: 46rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
}
h1 { font-size: 1.9rem; line-height: 1.2; letter-spacing: -0.02em; margin: 0 0 0.4rem; }
h2 { font-size: 1.1rem; margin: 2.2rem 0 0.6rem; letter-spacing: -0.01em; }
p, li { font-size: 0.95rem; }
ul { padding-left: 1.2rem; }
li { margin: 0.3rem 0; }
a { color: #2563eb; }
.updated { color: var(--muted); font-size: 0.85rem; margin: 0 0 2rem; }
.callout {
  border: 1px solid var(--line);
  border-left: 3px solid #1a1a1a;
  background: #fafafa;
  padding: 1rem 1.1rem;
  border-radius: 0 10px 10px 0;
  margin: 1.5rem 0;
}
.callout p { margin: 0; }
footer {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
}
footer .bar {
  max-width: 46rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Deliberately no prefers-color-scheme block. The marketing site is light-only by design —
   tailwind is set to darkMode:'class' and ships zero `dark:` utilities — so following the OS here
   made the legal pages the only thing on the domain that went dark. */
