/* Self-contained stylesheet for standalone info pages (About, Contact,
   Privacy, Terms). These pages are static and copied as-is by Vite, so they
   intentionally do not depend on the compiled Tailwind bundle. */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: #f8fafc;
  color: #0f172a;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  line-height: 1.65;
}
@media (prefers-color-scheme: dark) {
  html, body { background: #090d16; color: #f8fafc; }
}
a { color: #4f46e5; }
@media (prefers-color-scheme: dark) {
  a { color: #818cf8; }
}
.site-header, .site-footer {
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 1.5rem;
}
.site-footer { border-bottom: none; border-top: 1px solid #e2e8f0; margin-top: 3rem; }
@media (prefers-color-scheme: dark) {
  .site-header, .site-footer { border-color: #1e293b; }
}
.site-header-inner, .site-footer-inner, .site-main {
  max-width: 42rem;
  margin: 0 auto;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  font-size: 0.95rem;
}
.brand svg { color: #4f46e5; }
@media (prefers-color-scheme: dark) { .brand svg { color: #818cf8; } }
.site-nav { display: flex; gap: 1.25rem; flex-wrap: wrap; font-size: 0.85rem; }
.site-nav a { text-decoration: none; color: #475569; }
@media (prefers-color-scheme: dark) { .site-nav a { color: #94a3b8; } }
.site-nav a:hover { text-decoration: underline; color: #4f46e5; }
@media (prefers-color-scheme: dark) { .site-nav a:hover { color: #818cf8; } }
.site-main { padding: 3rem 1.5rem; }
.site-main h1 { font-size: 1.9rem; font-weight: 700; margin-bottom: 0.5rem; }
.site-main h2 { font-size: 1.2rem; font-weight: 600; margin-top: 2rem; }
.site-main .lede { color: #475569; margin-bottom: 2rem; }
@media (prefers-color-scheme: dark) { .site-main .lede { color: #94a3b8; } }
.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #475569;
}
@media (prefers-color-scheme: dark) { .site-footer-inner { color: #94a3b8; } }
.site-footer-inner a { color: inherit; text-decoration: none; }
.site-footer-inner a:hover { text-decoration: underline; }
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: 0.5rem;
  background: #4f46e5;
  color: #fff !important;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
}
.btn-back:hover { background: #4338ca; }
.callout {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: #ffffff;
}
@media (prefers-color-scheme: dark) {
  .callout { border-color: #1e293b; background: #0f172a; }
}
code {
  font-family: "JetBrains Mono", monospace;
  background: #e2e8f0;
  padding: 0.1rem 0.35rem;
  border-radius: 0.25rem;
  font-size: 0.85em;
}
@media (prefers-color-scheme: dark) { code { background: #1e293b; } }
