/* Holding-page styling only. The series palette and type faces come from the user's master
   prompt (STYLE.md + this file) once the bible lands — light themes only, no dark mode. */
:root {
  --ink: #16233f;
  --muted: #5a6478;
  --paper: #ffffff;
  --wash: #f8fafc;
  --rule: #e2e8f0;
  --accent: #2563eb;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: var(--wash);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
}

.holding {
  max-width: 34rem;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 2.5rem;
}

.kicker {
  margin: 0 0 .5rem;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.02em;
}

.lede { margin: 0 0 1.25rem; font-size: 1.05rem; }

.note {
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: .95rem;
}
