/* Whoosh web — deliberately minimal until the launch site lands. */
:root {
  color-scheme: light dark;
  --ink: #1d1a17;
  --paper: #fffdf8;
  --muted: #6b655c;
  --accent: #f2a93b;
}
@media (prefers-color-scheme: dark) {
  :root { --ink: #f3efe8; --paper: #16130f; --muted: #a39b8f; }
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
}
main { max-width: 42rem; margin: 0 auto; padding: 3rem 1.25rem 5rem; }
h1 { font-size: 2rem; line-height: 1.2; margin: 0 0 .5rem; }
h2 { font-size: 1.25rem; margin: 2.25rem 0 .5rem; }
p, li { margin: 0 0 1rem; }
ul { padding-left: 1.25rem; }
.meta { color: var(--muted); font-size: .95rem; }
.lead { font-size: 1.1rem; }
a { color: inherit; text-decoration-color: var(--accent); text-underline-offset: .15em; }
footer { margin-top: 3rem; color: var(--muted); font-size: .9rem; }
.holding { min-height: 100vh; display: grid; place-items: center; text-align: center; }
