/* Placeholder shell styling — real UI lands in the frontend phases. */
:root {
  --bg: #14100d;
  --ink: #f2ece2;
  --accent: #d8973c;
}

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--ink);
  font-family: system-ui, sans-serif;
}

.shell { text-align: center; }
.shell h1 { font-size: 2.5rem; letter-spacing: 0.04em; }
.tagline { color: var(--accent); margin-top: 0.5rem; }
.status { margin-top: 2rem; opacity: 0.6; font-size: 0.9rem; }
