/* Loaded by every page. The palette lives here and nowhere else; anything that needs a
   colour reads it from a variable rather than restating the hex. */
:root {
  --green: #7dbe0c;
  --green-bright: #9ad61f;
  --ridge-far: #daa520;
  --bg: #212d38;
  --bg-soft: #2a3846;
  --bg-deep: #19222b;
  --ink: #e4eaf0;
  --ink-soft: #94a2b0;
  --hero-ink: #f4f8ea;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
