/* Nocturne's dark tokens, as apps/mobile/lib/theme/nocturne_tokens.dart
   records them. */
:root {
  color-scheme: dark;
  --background: #161826;
  --text: #e9e9ed;
  --text-secondary: #9397ab;
  --accent: #9184d9;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--background);
  color: var(--text);
  font-family: system-ui, sans-serif;
  line-height: 1.5;
}

main {
  max-width: 36rem;
  padding: 2rem 1.5rem;
  text-align: center;
}

h1 {
  margin: 0 0 0.5rem;
  font-size: 2.5rem;
  font-weight: 500;
}

.tagline {
  color: var(--accent);
  font-size: 1.25rem;
}

p {
  color: var(--text-secondary);
}

a {
  color: var(--accent);
}
