/* ── Kori Design Tokens ─────────────────────────────────────────── */
/* Single source of truth for all colors, fonts, and theme variants */

:root,
[data-theme="dark"] {
  /* Backgrounds */
  --bg-primary:    #0D0D0B;
  --bg-secondary:  #1A1916;
  --bg-tertiary:   #222220;
  --bg-rim:        #2A2824;
  --bg-rim2:       #3A3830;

  /* Brand accent */
  --cowrie-gold:   #C9913A;
  --gold-light:    #E8B86A;
  --gold-dark:     #5A3A0A;

  /* Teal accent */
  --growth-teal:   #1D6E52;
  --teal-light:    #2DA076;
  --teal-bright:   #5DD4A4;
  --teal-dark:     #0B3828;

  /* Text */
  --text-primary:  #F5F2EC;
  --text-secondary:#C4C0B8;
  --text-muted:    #8A7A60;
  --text-subtle:   #6A6058;

  /* Semantic */
  --red:           #C04848;

  /* Computed (for rgba usage) */
  --ring-base:     201,145,58;
  --teal-border:   rgba(29,110,82,.4);
  --nav-bg:        rgba(13,13,11,.95);
  --card-bg:       #0D0D0B;
  --section-alt:   #1A1916;
  --grain-opacity: .4;
  --glow-opacity:  .07;
  --watermark-opacity: .04;

  color-scheme: dark;
}

/* ── Light Theme ───────────────────────────────────────────────── */
[data-theme="light"] {
  --bg-primary:    #F5F2EC;
  --bg-secondary:  #EBE7DF;
  --bg-tertiary:   #E2DED6;
  --bg-rim:        #D6D0C6;
  --bg-rim2:       #C4BEB4;

  --cowrie-gold:   #B07E2F;
  --gold-light:    #D4A24E;
  --gold-dark:     #F0E4D0;

  --growth-teal:   #1D6E52;
  --teal-light:    #2DA076;
  --teal-bright:   #1D6E52;
  --teal-dark:     #E4F4EC;

  --text-primary:  #0D0D0B;
  --text-secondary:#3A3830;
  --text-muted:    #5C5347;
  --text-subtle:   #7A7269;

  --red:           #B83C3C;

  --ring-base:     176,126,47;
  --teal-border:   rgba(29,110,82,.35);
  --nav-bg:        rgba(245,242,236,.95);
  --card-bg:       #FFFFFF;
  --section-alt:   #EBE7DF;
  --grain-opacity: .15;
  --glow-opacity:  .10;
  --watermark-opacity: .06;

  color-scheme: light;
}

/* ── Fonts ──────────────────────────────────────────────────────── */
:root {
  --font-display:  'Jost', sans-serif;
  --font-edit:     'Cormorant Garamond', serif;
  --font-body:     'Carlito', sans-serif;
  --font-mono:     'SF Mono','Cascadia Code','Fira Code','Consolas',monospace;
}
