/* ============================================================
   Driventia — LIGHT THEME (opt-in)
   For PPTs / artifacts on light backgrounds. Opt in by setting
   data-theme="light" on <html>, <body>, or any wrapper:

       <body data-theme="light"> … </body>

   Same lima identity, re-tuned for legibility on paper:
   · lima stays bright for FILLS (buttons, dashes, KPI chips)
   · lima TEXT/emphasis uses a deepened chartreuse (--text-accent)
     so headlines, KPIs and the highlight phrase stay readable.
   ============================================================ */
[data-theme="light"] {
  /* deepened lima for text/emphasis on paper (KPIs, eyebrows) */
  --lime-ink: #4E8A16;

  --color-bg:       #F4F6F0;  /* warm cool-tinted paper */
  --color-bg-deep:  #E9ECE3;  /* cover / section panels */
  --surface-card:   #FFFFFF;
  --surface-raised: #F8FAF4;
  --surface-well:   #EDF0E7;
  --border-card:    #E2E6DB;
  --border-strong:  #CCD2C2;
  --divider:        #D7DBCE;

  --hex-motif:      #C9DDA0;  /* soft sage hexagon outlines on paper */

  --accent:         #C8F03C;  /* fills / dashes — unchanged */
  --accent-hover:   #BCE62C;  /* darken on hover (light ctx) */
  --accent-press:   #A6CC2A;
  --accent-glow:    rgba(140, 175, 20, 0.18);
  --on-accent:      #15180E;  /* ink on lima fills */

  --text-primary:   #14160F;
  --text-secondary: #454A3E;
  --text-muted:     #6C7163;
  --text-faint:     #979D8B;
  --text-accent:    var(--lime-ink);  /* KPIs / eyebrows */

  /* Highlight becomes a bright lima MARKER with ink text on paper */
  --hl-text:   #15180E;
  --hl-bg:     var(--accent);
  --hl-pad:    0.04em 0.16em;  /* @kind spacing */
  --hl-radius: 4px;            /* @kind radius */


  --positive:       var(--lime-ink);

  /* depth from soft shadow, not deep ambient black */
  --shadow-card:  0 1px 2px rgba(20,30,10,0.04), 0 8px 24px rgba(20,30,10,0.08);
  --shadow-pop:   0 18px 44px rgba(20,30,10,0.14);
  --shadow-glow:  0 0 0 1px var(--accent-glow), 0 0 20px var(--accent-glow);
}
