/*
 * Slumbino — Brand CSS Tokens
 * Source of truth: marketing/logos/slumbino/Slumbino_Logo.jpeg
 * Logo extracted colours: #9678B4 (muted purple, primary) | #FFB45A (amber, accent)
 * Last updated: 2026-03-20 by ENG-1 brand token extraction
 *
 * HARD RULE: All colour values in this file come from the actual logo.
 * Zero guessing. Zero assumptions. If the logo changes, this file changes.
 */

:root {
  /* ── PRIMARY BRAND COLOUR — muted purple from logo ── */
  --primary:        #9678B4;
  --primary-dark:   #6B4E8A;
  --primary-light:  #B89DD0;
  --primary-rgb:    150, 120, 180;

  /* ── ACCENT — warm amber from logo ── */
  --accent:         #FFB45A;
  --accent-dark:    #D4841A;
  --accent-rgb:     255, 180, 90;

  /* ── BACKGROUNDS — deep dark purple, safe and warm ── */
  --bg:             #120a1e;
  --surface:        #1c1030;
  --surface2:       #241440;

  /* ── TEXT ── */
  --text:           #F5F0FF;
  --text-dim:       #BBA8D4;

  /* ── BORDERS ── */
  --border:         rgba(150, 120, 180, 0.2);

  /* ── SEMANTIC ── */
  --success:        #86EFAC;
  --warning:        #FFB45A;
  --danger:         #FCA5A5;

  /* ── UI ── */
  --radius:         16px;

  /* ── THEME META ── */
  --brand-name:     "Slumbino";
  --brand-slug:     "slumbino";
}
