/* ============================================================
Landing v3 (index-3.php) THEME COLORS
------------------------------------------------------------
Single source of truth for the v3 (rig.ai-style) palette.
Change a value here and the whole v3 landing + all public
auth/legal pages (login, register, verify, forgot, terms,
privacy) recolor at once.

Plain HEX values. Opacity still works everywhere because the
code reads them with CSS relative-color syntax, e.g.
  rgb(from var(--rg-orange) r g b / .15)   (15% accent)
and Tailwind utilities like bg-rg-orange/10, text-rg-orange/70.

To change the accent: just drop a new hex in --rg-orange
(and --rg-orange2 for the lighter hover shade).
============================================================ */

:root {
  --rg-orange:  #ff7458;
  --rg-orange2: #ff6b3d;

  --rg-bg:      #181716;
  --rg-surface: #1f1d1b;
  --rg-card:    #211f1c;
  --rg-border:  #332f2b;

  --rg-text:    #ededea;
  --rg-muted:   #a39c92;
  --rg-dim:     #6c655c;

  --rg-green:   #7bdc8a;
}


:root {
  --rg-orange:  #ffffff;
  --rg-orange2: #ffffff;

  --rg-bg:      #181716;
  --rg-surface: #1f1d1b;
  --rg-card:    #211f1c;
  --rg-border:  #332f2b;

  --rg-text:    #ededea;
  --rg-muted:   #a39c92;
  --rg-dim:     #6c655c;

  --rg-green:   #ffffff;
