/* YieldChampion theme matrix. Apply via:
   <html data-theme="dark|light" data-style="obsidian|spectral-copper">
   localStorage keys: yc-theme, yc-style. Defaults are dark + obsidian. */

/* obsidian-light */
:root[data-theme="light"][data-style="obsidian"] {
  --surface: #fafbfc;
  --surface-elevated: #ffffff;
  --surface-overlay: #eef2f6;
  --ink: #0e1116;
  --ink-muted: #56606e;
  --border: #d6dde6;
  --accent: #0e8a5c;
  --accent-strong: #0a6b48;
  --accent-ink: #ffffff;
  --success: #0e8a5c;
  --danger: #c13838;
  --warn: #b56b1c;
  --focus-ring: #0e8a5c;
  color-scheme: light;
}

/* spectral-copper-dark (warm, second style) */
:root[data-style="spectral-copper"] {
  --accent: #c9772b;
  --accent-strong: #b25b18;
  --accent-ink: #1a0d04;
  --success: #c9772b;
  --focus-ring: #f4b66f;
}

/* spectral-copper-light */
:root[data-theme="light"][data-style="spectral-copper"] {
  --surface: #faf7f3;
  --surface-elevated: #ffffff;
  --surface-overlay: #f1ebe2;
  --ink: #2a1d10;
  --ink-muted: #6c574a;
  --border: #d8c8b6;
  --accent: #b25b18;
  --accent-strong: #8e3f08;
  --accent-ink: #ffffff;
  --success: #b25b18;
  --danger: #b53c2a;
  --warn: #8e6b1c;
  --focus-ring: #b25b18;
  color-scheme: light;
}
