/* ============================================================
   Circloud NEST brand colors — single source of truth.
   Edit ONLY here; everything that needs the NEST tint
   (logo glow, brand-name gradient, accent buttons, etc.) reads
   these CSS custom properties.
   ============================================================ */

:root {
  /* Stops sampled from assets/logo.png — cyan/teal highlight at top,
     bright blue mid, deep indigo shadow */
  --nest-cyan:        #5ecbff;
  --nest-blue:        #38bdf8;
  --nest-indigo:      #6b5cff;
  --nest-indigo-deep: #4f46e5;
  --nest-violet-deep: #4338ca;

  /* The canonical NEST gradient — use this anywhere
     the brand mark, accent text, or themed surfaces need the
     "logo color" (e.g. .cr-brand-sub, hover halos, etc.) */
  --nest-brand-gradient: linear-gradient(
    135deg,
    var(--nest-cyan)         0%,
    var(--nest-blue)         35%,
    var(--nest-indigo)       60%,
    var(--nest-indigo-deep) 100%
  );

  /* Solid pick when a single color is needed (badges, focus rings) */
  --nest-brand-solid: var(--nest-cyan);

  /* Soft glow / shadow tint matching the gradient */
  --nest-brand-glow: rgba(94, 203, 255, 0.45);
}
