/* StorCat holding shell — throwaway.
   DELETED OUTRIGHT IN PHASE 3. This file exists only so Phase 1 exercises the
   /*.css cache rule and the CSP style-src directive against a real stylesheet.
   It must pre-commit NO design-system decision that Phase 3 owns: the palette
   below is neutral placeholder, not a brand choice. (D-02)
*/

:root {
  --bg: #0e1116;              /* neutral dark placeholder, not a brand color */
  --fg: #e8ecf2;              /* primary text */
  --fg-dim: #9aa5b4;          /* secondary text */
  --sans: 'Manrope', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
}

html, body {
  margin: 0;
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

main {
  padding: 2rem;
}

img.icon {
  width: 96px;
  height: 96px;
}

h1 {
  font-family: var(--mono);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 1.25rem 0 0.5rem;
}

p {
  color: var(--fg-dim);
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

a {
  color: var(--fg);
  font-family: var(--mono);
  font-size: 0.9rem;
}
