/* DANK Realty — Color tokens
 * The identity is a deep-navy canvas lit by a cyan → blue → violet gradient
 * (the "structured light" signature), with a hazard-yellow reserved for
 * announcements. Sampled from the brand's logo and marketing artwork.
 */

:root {
  /* ---- Brand ramp: the signature gradient stops ---------------------- */
  --brand-teal:    #3fddd0;  /* top of the D-bracket — turquoise cyan   */
  --brand-cyan:    #4fd1e0;  /* wordmark sky-cyan                        */
  --brand-blue:    #5b8def;  /* mid gradient                            */
  --brand-indigo:  #4a6cf0;  /* deeper blue                             */
  --brand-violet:  #8b7fe8;  /* gradient tail / accent                  */

  /* The signature gradient, used on rules, headlines, borders, marks */
  --grad-brand: linear-gradient(120deg, var(--brand-teal) 0%, var(--brand-cyan) 30%, var(--brand-blue) 65%, var(--brand-violet) 100%);
  --grad-brand-v: linear-gradient(180deg, var(--brand-teal) 0%, var(--brand-blue) 55%, var(--brand-violet) 100%);

  /* ---- Navy canvas (base to elevated) -------------------------------- */
  --navy-950: #030913;  /* deepest — vignette corners       */
  --navy-900: #060f1d;  /* page background                  */
  --navy-850: #0a1626;  /* section background               */
  --navy-800: #0f1c30;  /* card / surface                   */
  --navy-750: #16273f;  /* raised card / hover surface      */
  --navy-700: #1e3350;  /* border-on-dark, inputs           */
  --navy-600: #2c4568;  /* strong border / divider on dark  */

  /* ---- Ink (neutral text ramp) -------------------------------------- */
  --ink-50:  #eef4fb;  /* headings on dark        */
  --ink-100: #dbe6f2;  /* primary body on dark    */
  --ink-300: #9db3cc;  /* secondary text on dark  */
  --ink-500: #6b829d;  /* muted / captions        */
  --ink-700: #47607d;  /* faint / disabled        */

  /* ---- Ivory (festival / greeting light theme) ---------------------- */
  --ivory-50:  #fbf7ee;  /* cream page              */
  --ivory-100: #f3ead6;  /* cream border            */
  --ivory-ink: #23303f;  /* navy ink on cream       */
  --ivory-gold:#b8862f;  /* festive gold accent     */

  /* ---- Hazard (announcements only) --------------------------------- */
  --hazard-yellow: #f5c518;
  --hazard-black:  #0d0d0d;

  /* ---- Semantic status --------------------------------------------- */
  --success: #34d399;  /* clear-title / verified green  */
  --warning: #f5c518;
  --danger:  #ef5f6b;
  --star:    #4fd1e0;  /* the 5-star rating cyan        */
}
