/* Placeholder styles (KRGD-979). Brand values from docs/brandbook.md, defined
 * once as tokens — components reference the custom properties, never a literal.
 * The body face is undecided (brandbook), so the font routes through a token
 * holding a system stack until T05-E01 settles it. */

:root {
  --color-bg: #121212;
  --color-primary: #6d020c;
  --color-accent: #e07e0e;
  --color-text: #ffffff;
  --font-body: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  text-align: center;
  padding: 1.5rem;
}

main h1 {
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main h1 span {
  color: var(--color-accent);
}

main p {
  margin-top: 0.75rem;
  opacity: 0.85;
}
