/* SlideWright design tokens — graphite base, accents only for meaning. */
:root {
  /* Light theme always (no dark-mode switching). */
  color-scheme: light;

  /* Accents (used sparingly, for meaning) */
  --vg: #2b7fff;      /* @VG — visual/geometry */
  --team: #dd9a2e;    /* @team — titles, structure, copy */
  --healthy: #1f8a4d; /* success */

  /* Light theme (default) */
  --bg: #ffffff;
  --bg-elev: #ffffff;
  --bg-sunken: #f6f7f8;
  --surface: #ffffff;
  --text: #14181d;
  --text-muted: #5b636c;
  --text-faint: #868d95;
  --hairline: #e4e7ea;
  --hairline-strong: #d3d8dd;
  --focus: var(--vg);
  --shadow-card: 0 1px 2px rgba(20, 24, 29, 0.04), 0 6px 20px rgba(20, 24, 29, 0.06);
  --shadow-pop: 0 8px 30px rgba(20, 24, 29, 0.12);

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
    "Liberation Mono", monospace;

  /* Geometry */
  --radius: 9px;
  --radius-sm: 6px;
  --radius-lg: 14px;
  --maxw: 1080px;
  --gap: 24px;
}

/* Dark-mode overrides intentionally removed — the site is light-only. */
