/* ============================================================
   Koni Finance — Brand Tokens (v5.2)
   Logo color adapts per theme for legibility:
     dark theme  → #00FF7B (bright spring green)
     light theme → #00A453 (darker spring green, same hue family)
   ============================================================ */

:root[data-theme="dark"] {
  --accent: #00FF7B;
  --accent-ink: #0B0D11;
}

:root[data-theme="light"] {
  --accent: #00A453;
  --accent-ink: #FFFFFF;
}

:root {
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

/* Logo SVGs use fill="currentColor" — set the parent's color: var(--accent)
   so the wordmark adapts together with UI accent across themes. */
.logo-wordmark { color: var(--accent); }

/* ============================================================
   Cross-product family reference (designer-side only)
   These are NOT theme-immutable in implementation — they're
   reference values for the Koni Studio family. Surface them
   only in deliberate cross-product showcases.
   ============================================================ */
:root {
  --ref-koni-studio:  #A3E635;
  --ref-koni-wallet:  #FFD700;
  --ref-senti:        #34D399;
}
