/* ─── DESIGN TOKENS ─── */
:root {
  --bg: #09090b;
  --bg-alt: #111113;
  --surface: #18181b;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);
  --white: #fafaf9;
  --off-white: #d4d4d0;
  --muted: #8a8a8a;
  --accent: #6ba1ff;
  --accent-dim: rgba(107, 161, 255, 0.08);
  --accent-bdr: rgba(107, 161, 255, 0.25);
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --max-w: 64rem;
  --px: 2.5rem;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent);
  color: var(--bg);
}

a { color: inherit; text-decoration: none; }

.inner { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--px); }
