/* =====================================================
   PROPHET — "Sunset" palette variant
   Loaded AFTER prophet.css. Overrides ONLY the color
   tokens (plus a warm dune-glow backdrop + amber equity
   accent) on body.theme-prophet, so every existing rule
   re-skins automatically.

   Sampled straight from the P.R.O.P.H.E.T profile picture:
   bright sandstone-gold desert field (#F9BA6A / #EFAF57),
   burnt-ochre hood shadow (#C5751C), pale cream highlights,
   and a warm near-black "face void" (#201519) for surfaces.
   The little chart motif in the logo is gold + brown — so
   here the equity / profit accent is warm amber, not green.
   Still dark mode, just lit by desert dusk.
   ===================================================== */

body.theme-prophet {
  /* legacy accent tokens — bright dune sand → burnt-ochre hood */
  --orange:   #E79B3A;
  --orange-2: #F4B65E;

  /* spice palette → the PFP's luminous sand field */
  --spice:        #E79B3A;
  --spice-bright: #F8C271;
  --ember:        #B5651E;
  --gold:         #F6BE69;
  --gold-hi:      #FBE6BE;

  /* sun-bleached sandstone paper text (brighter, warmer) */
  --cream:       #F7E8CC;
  --cream-dim:   rgba(247, 232, 204, 0.80);
  --cream-faint: rgba(247, 232, 204, 0.12);

  /* warm "face-void" near-black surfaces, lifted toward dune brown */
  --surface-top: #33241A;
  --surface-bot: #20160F;
  --surface-2:   #3E2C1F;
  --well:        #190F09;

  /* warm golden hairlines (a touch more present) */
  --hair:   rgba(248, 194, 113, 0.14);
  --hair-2: rgba(248, 194, 113, 0.26);

  /* warm accent */
  --accent:     #F4B65E;
  --accent-dim: #E79B3A;

  /* profit / equity accent — kept GREEN by request (chart line + profit numbers) */
  --positive:      #3ad07f;
  --positive-glow: rgba(58, 208, 127, 0.40);

  /* losing months — dusty brick red (kept distinct from the gold) */
  --negative:      #DC6A4C;
  --negative-glow: rgba(220, 106, 76, 0.34);

  /* raised pills — bright sand → burnt ochre */
  --raised-top: #F8C271;
  --raised-bot: #E0922E;

  /* deep warm dune-shadow field behind everything */
  --bg-0: #221710;
  --bg-1: #19110B;
  --bg-2: #100A06;
}

/* warm golden dusk glow rising behind the page (echoes the PFP sand field)
   — overrides the flat near-black set at the end of prophet.css */
html { background-color: #19110B; }
body.theme-prophet {
  /* establish a BFC so the nav's top margin doesn't collapse through the
     body and expose the plain html base as a dark strip at the top */
  display: flow-root;
  background:
    /* high sun haze rising off the dune crest */
    radial-gradient(120% 62% at 50% -8%, rgba(249, 196, 120, 0.26) 0%, rgba(244, 176, 94, 0.12) 34%, rgba(244, 176, 94, 0) 62%),
    /* warm ochre glow pooling at lower-right (the lit sand field) */
    radial-gradient(110% 95% at 102% 118%, rgba(224, 146, 46, 0.18) 0%, rgba(224, 146, 46, 0.05) 46%, rgba(224, 146, 46, 0) 70%),
    /* faint sand wash on the left so the field doesn't fall to pure black */
    radial-gradient(90% 80% at -8% 30%, rgba(197, 117, 28, 0.10) 0%, rgba(197, 117, 28, 0) 58%),
    #19110B;
  background-attachment: fixed;
}

/* dark text that sits on the bright sandy raised pills */
body.theme-prophet .nav__links a.is-active,
body.theme-prophet .nav__lang button[aria-pressed="true"],
body.theme-prophet .btn--primary,
body.theme-prophet .modal__tab[aria-pressed="true"],
body.theme-prophet .socials a:hover {
  color: #2A1408;
}

/* darker, warmer text inside the gold "key metric" sim chips */
body.theme-prophet .sim__row--key .sim__row-val { color: #2A1408; }

/* equity-curve area fill + LIVE TRACKER pulse left GREEN by request —
   the sunset amber/brown chart overrides are intentionally not applied,
   so the chart inherits the original green gradient + keyframe from prophet.css */
