:root {
  --bg: #070a12;
  --fg: #e6e9f0;
  --muted: #9aa3b2;
  --accent: #7aa2ff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  overflow-x: hidden;
}

h1, h2 {
  font-weight: 500;
}

p {
  color: var(--muted);
  max-width: 480px;
}

ul {
  list-style: none;
}
