/* Holding page for the bare root. No inline styles anywhere in this codebase,
   matching the rule the main repo enforces in agents.md. */
:root {
  color-scheme: dark;
  --bg: #0B1120;
  --fg: #E2E8F0;
  --muted: #64748B;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}

.holding {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.holding-mark {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.holding-note {
  margin: 0;
  font-size: 0.875rem;
  color: var(--muted);
}
