/* EvidenceHub palette — "Quiet Specialty"
 * Plum primary, teal secondary, warm cream background.
 * Same CSS variable contract as tlg-palette.css so structural styles are portable.
 */
:root {
  --tlg-font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --tlg-font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --tlg-font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

:root[data-theme="light"] {
  --bg: #FDF8F6;
  --surface: #FFFFFF;
  --text: #1A0F1F;
  --muted: #6B5876;
  --muted-text: #6B5876;
  --border: #E8DDE4;
  --primary: #5B21B6;
  --primary-soft: #EDE7F8;
  --secondary: #0F766E;
  --secondary-soft: #DBF0EE;
  --accent: #BE185D;
  --accent-soft: #FCE7F3;
  --success: #16A34A;
  --success-soft: #DCFCE7;
  --warning: #D97706;
  --danger: #DC2626;
  --shadow: 0 10px 30px rgba(91, 33, 182, 0.08);
  --shadow-soft: 0 4px 12px rgba(91, 33, 182, 0.06);
  --radius: 18px;
  --code-bg: #2D1B36;
  --code-text: #F5EBF1;
}

:root[data-theme="dark"] {
  --bg: #1A0F1F;
  --surface: #2D1B36;
  --text: #F5EBF1;
  --muted: #B8A6C0;
  --muted-text: #B8A6C0;
  --border: #3D2A47;
  --primary: #A78BFA;
  --primary-soft: #3D2A56;
  --secondary: #14B8A6;
  --secondary-soft: #134E4A;
  --accent: #F472B6;
  --accent-soft: #4A1A30;
  --success: #4ADE80;
  --success-soft: #14532D;
  --warning: #FBBF24;
  --danger: #F87171;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --code-bg: #0F0613;
  --code-text: #F5EBF1;
}
