/* Minimal hand-authored stylesheet.
 * Epic 0 ships static assets directly (no esbuild/tailwind toolchain yet);
 * a proper asset pipeline will be wired up with the LiveView UI epic. */
:root {
  color-scheme: light dark;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

.container {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.welcome h1 {
  margin-bottom: 0.25rem;
}

a {
  color: #4f46e5;
}
