@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/InterVariable.woff2") format("woff2");
}

* { box-sizing: border-box; }

:root {
  color-scheme: dark;
  --bg: #02070D;
  --cream: rgba(244,249,255,.94);
  --text: rgba(244,249,255,.68);
  --muted: rgba(244,249,255,.40);
  --line: rgba(255,255,255,.092);
  --cyan: #75AADF;
  --indigo: #6293CA;
  --ocean: #346DA4;
  --dusk: #0E5184;
  --gold: #4279B3;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

html,
body {
  margin: 0;
  background: var(--bg);
}

body {
  color: var(--cream);
  font-family: var(--font-sans);
  font-feature-settings: "cv01", "ss03";
  font-synthesis: none;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
