/* ============================================================
   PROPHET · COLORS
   A warm, matte "desert oracle" palette. Brightness carries most
   hierarchy on near-black warm surfaces; gold is the one true accent.
   ============================================================ */
:root {
  /* ---- Base scale · warm-tinted charcoals (the "night desert") ---- */
  --sand-950: #100d0a;   /* app backdrop, deepest */
  --sand-900: #171310;   /* base surface */
  --sand-850: #1e1813;   /* raised surface / card */
  --sand-800: #251e17;   /* elevated card, header */
  --sand-750: #2e261d;   /* hover surface */
  --sand-700: #392f24;   /* wells, insets */
  --sand-600: #4a3d2e;   /* strong border */
  --sand-500: #5f4f3b;   /* muted line on light */
  --sand-400: #7a6650;

  /* ---- Gold · the brand accent (sampled from the mark) ---- */
  --gold-100: #fde490;   /* pale highlight / gleam */
  --gold-200: #fed27b;   /* node light */
  --gold-300: #f5c25e;   /* light accent */
  --gold-400: #f0b15a;   /* PRIMARY gold */
  --gold-500: #e5a23f;   /* primary, deeper */
  --gold-600: #cc862a;   /* pressed / dense */
  --gold-700: #a96a1c;   /* dark gold */
  --gold-800: #854700;   /* bronze shadow */
  --bronze:   #783a00;   /* deepest bronze */

  /* ---- Parchment · warm light neutrals (text on dark, light chips) ---- */
  --parchment-50:  #fbf3e3;
  --parchment-100: #f4e4c8;
  --parchment-200: #e8d3a8;
  --parchment-300: #d4bd8e;

  /* ---- Semantic · betting outcomes ---- */
  --emerald: #46c98a;    /* win / profit / value */
  --emerald-dim: #2f8d62;
  --ruby:    #e5594c;    /* loss / no-value */
  --ruby-dim: #a53d34;
  --azure:   #6aa9e0;    /* info / live */
  --amber-warn: #f0b15a; /* caution (reuses gold family) */

  /* ---- Pure ---- */
  --black: #0a0806;
  --white: #ffffff;

  /* ============================================================
     SEMANTIC ALIASES  — reference these in components, not the scale
     ============================================================ */

  /* Surfaces */
  --bg-app:        var(--sand-950);
  --surface-base:  var(--sand-900);
  --surface-card:  var(--sand-850);
  --surface-raised:var(--sand-800);
  --surface-hover: var(--sand-750);
  --surface-well:  var(--sand-700);
  --surface-light: var(--parchment-50);   /* rare light panels */

  /* Text (on dark) */
  --text-primary:   var(--parchment-100);
  --text-secondary: var(--parchment-300);
  --text-muted:     #9a876c;
  --text-faint:     #6f5f49;
  --text-inverse:   #1a120a;   /* on gold */
  --text-on-light:  #241a10;

  /* Brand / accent */
  --accent:        var(--gold-400);
  --accent-strong: var(--gold-500);
  --accent-hover:  var(--gold-300);
  --accent-press:  var(--gold-600);
  --accent-soft:   rgba(240, 177, 90, 0.14);   /* tint fills */
  --accent-line:   rgba(240, 177, 90, 0.30);
  --gleam:         var(--gold-100);

  /* Borders / lines */
  --border-hairline: rgba(244, 228, 200, 0.08);
  --border-soft:     rgba(244, 228, 200, 0.12);
  --border-strong:   rgba(244, 228, 200, 0.20);
  --border-gold:     var(--accent-line);

  /* Semantic text/fills */
  --win:      var(--emerald);
  --win-soft: rgba(70, 201, 138, 0.14);
  --loss:     var(--ruby);
  --loss-soft:rgba(229, 89, 76, 0.14);
  --info:     var(--azure);
  --info-soft:rgba(106, 169, 224, 0.14);

  /* Focus ring */
  --ring: rgba(245, 194, 94, 0.55);
}
