/* Canonical semantic tokens for the Phase 1 theme runtime. */
:root {
  color-scheme: light;
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --surface-3: #eef2f6;
  --text: #15202b;
  --muted: #758090;
  --faint: #aab4c0;
  --line: #e4e9ee;
  --accent: #c7924f;
  --accent-soft: #f5ead9;
  --green: #2e9b72;
  --green-soft: #e1f3eb;
  --amber: #c48a34;
  --amber-soft: #fcf1dc;
  --red: #d75d65;
  --red-soft: #fbe6e8;
  --blue: #4a7ed0;
  --blue-soft: #e4edfb;
  --focus: #4a7ed0;
  --shadow: 0 10px 35px rgba(28, 39, 49, .07);
  --radius: 10px;
  --sidebar: 248px;
  --accent-ink: #17130d;
  --accent-bright: #e5c184;
  --overlay: rgba(5, 8, 12, .6);
  --palette-shadow: rgba(0, 0, 0, .53);
  --line-l1: #c7924f;
  --line-l2: #6d91d8;
  --line-l3: #67b69c;
  --asset-portrait: #f3e5ce;
  --asset-clothes: #ebe8fa;
  --asset-scene: #dff1f0;
  --asset-copy: #fae7df;
  --asset-product: #f9e4e6;
  --asset-music: #e2ecfa;
}

html[data-theme="midnight"] {
  color-scheme: dark;
  --bg: #0d131c;
  --surface: #131c27;
  --surface-2: #172231;
  --surface-3: #1d2a3a;
  --text: #eef4fa;
  --muted: #95a4b5;
  --faint: #647488;
  --line: #263647;
  --accent: #e0a85f;
  --accent-soft: #382c1e;
  --green: #51c895;
  --green-soft: #14382d;
  --amber: #e9ad57;
  --amber-soft: #392d1d;
  --red: #f07881;
  --red-soft: #3d2227;
  --blue: #78a7ef;
  --blue-soft: #1d304f;
  --focus: #8bb8ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, .2);
  --accent-ink: #17130d;
  --accent-bright: #e5c184;
  --overlay: rgba(0, 0, 0, .72);
  --palette-shadow: rgba(0, 0, 0, .72);
}

html[data-theme="high-contrast"] {
  color-scheme: dark;
  --bg: #050505;
  --surface: #101010;
  --surface-2: #171717;
  --surface-3: #242424;
  --text: #ffffff;
  --muted: #d5d5d5;
  --faint: #aaaaaa;
  --line: #555555;
  --accent: #ffd166;
  --accent-soft: #3b300f;
  --green: #4dffb2;
  --green-soft: #123d2d;
  --amber: #ffd166;
  --amber-soft: #3b300f;
  --red: #ff7882;
  --red-soft: #45151b;
  --blue: #8bb8ff;
  --blue-soft: #102b53;
  --focus: #ffffff;
  --shadow: 0 0 0 1px #555555;
  --accent-ink: #050505;
  --accent-bright: #ffe29a;
  --overlay: rgba(0, 0, 0, .88);
  --palette-shadow: rgba(0, 0, 0, .9);
}

@media (prefers-color-scheme: dark) {
  html[data-theme="system"] {
    color-scheme: dark;
    --bg: #0d131c;
    --surface: #131c27;
    --surface-2: #172231;
    --surface-3: #1d2a3a;
    --text: #eef4fa;
    --muted: #95a4b5;
    --faint: #647488;
    --line: #263647;
    --accent: #e0a85f;
    --accent-soft: #382c1e;
    --green: #51c895;
    --green-soft: #14382d;
    --amber: #e9ad57;
    --amber-soft: #392d1d;
    --red: #f07881;
    --red-soft: #3d2227;
    --blue: #78a7ef;
    --blue-soft: #1d304f;
    --focus: #8bb8ff;
    --shadow: 0 20px 60px rgba(0, 0, 0, .2);
    --accent-ink: #17130d;
    --accent-bright: #e5c184;
    --overlay: rgba(0, 0, 0, .72);
    --palette-shadow: rgba(0, 0, 0, .72);
  }
}

@media (prefers-color-scheme: light) {
  html[data-theme="system"] { color-scheme: light; }
}

:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; }
