/* GENERATED by scripts/generate-assets.mjs — do not edit by hand.
   Source of truth: src/theme/palette.ts

   Only the first-paint background lives here. Every other themed value is
   applied at runtime by useTheme(). Keeping this file tiny means it never
   meaningfully delays the first paint. */
:root {
  --c-bg: #05070b;
  color-scheme: dark;
}
:root[data-theme="light"] {
  --c-bg: #e7e3da;
  color-scheme: light;
}
html,
body {
  margin: 0;
  background: var(--c-bg);
}

/* The no-JavaScript surface. Styled here because global.css is loaded by the
   bundle, which by definition has not run when this markup is shown. */
.noscript {
  max-width: 40rem;
  margin: 0 auto;
  padding: 12vh 1.5rem;
  color: #dbe7f1;
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}
:root[data-theme="light"] .noscript {
  color: #221f1a;
}
.noscript__mark {
  letter-spacing: 0.5em;
  font-size: 0.9rem;
  margin: 0 0 2rem;
}
.noscript__heading {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.35;
  margin: 0 0 1.5rem;
}
.noscript__heading span,
.noscript p span {
  display: block;
  opacity: 0.6;
  font-size: 0.85em;
}
.noscript a {
  color: #e8b25c;
}
:root[data-theme="light"] .noscript a {
  color: #8a5a22;
}
.noscript__note {
  opacity: 0.6;
  font-size: 0.85rem;
}
