/* theme-light.css — applied when <html data-theme="light"> */

html[data-theme="light"] {
  --bg:        #faf7ff;
  --bg-2:      #f0eaff;
  --surface:   #ffffff;
  --surface-2: #f4eeff;
  --border:    rgba(107,70,193,0.18);
  --border-hi: rgba(107,70,193,0.40);
  --text:      #1a1432;
  --text-soft: #463a6f;
  --muted:     #6b6390;
  --code-bg:   #f0eaff;
  --code-fg:   #2d1c5e;
  --good:      #2f855a;
  --warn:      #b7791f;
  --bad:       #c53030;
  --shadow:    rgba(107,70,193,0.18);

  --tier-1:      #805ad5;
  --tier-1-glow: rgba(128,90,213,0.22);
  --tier-2:      #6b46c1;
  --tier-2-glow: rgba(107,70,193,0.22);
  --tier-3:      #44337a;
  --tier-3-glow: rgba(68,51,122,0.30);

  --tier-accent-soft: #553c9a;
}
html[data-theme="light"] body::after { display: none; }
