:root {
  --bg: #0c0b09;
  --surface: #131210;
  --surface-hi: #1b1916;
  --ink: #ece7d8;
  --ink-soft: #b8b0a0;
  --muted: #5e5750;
  --accent: #c8a55e;
  --error: #d05a5a;
  --ok: #4fa676;
  --border: #242018;
  --border-hi: #332e26;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Outfit", "Avenir Next", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background-color: var(--bg);
  background-attachment: fixed;
  background-image:
    radial-gradient(ellipse 900px 500px at 50% -60px, rgba(200, 165, 94, 0.06) 0, transparent 70%),
    radial-gradient(ellipse 600px 400px at 100% 80%, rgba(140, 110, 50, 0.04) 0, transparent 70%);
  min-height: 100vh;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 9999;
}

code {
  font-family: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
  background: var(--surface-hi);
  border: 1px solid var(--border-hi);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.82em;
  color: var(--ink-soft);
}
