/* ══════════════════════════════════════════════════════
   DESIGN TOKENS — Embaixadores v2
   Brand: Empresa Lucrativa · No Way Back Company
   Accent: #d8fa2e (lime) — DO NOT CHANGE
══════════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --accent:        #d8fa2e;
  --accent-dim:    rgba(216,250,46,.1);
  --accent-glow:   rgba(216,250,46,.3);
  --accent-mid:    rgba(216,250,46,.5);

  /* Backgrounds */
  --bg:            #000000;
  --bg-body:       #060606;
  --bg-card:       #111111;
  --bg-card-2:     #1a1a1a;
  --bg-elevated:   #222222;

  /* Borders */
  --border:        rgba(255,255,255,.07);
  --border-2:      rgba(255,255,255,.12);
  --border-3:      rgba(255,255,255,.18);

  /* Text */
  --text:          #f4f4f4;
  --text-dim:      #999999;
  --text-muted:    #999999;
  --text-faint:    #333333;

  /* Semantic */
  --success:       #39cf70;
  --danger:        #e05555;
  --warning:       #d89015;
  --info:          #4a9eff;
  --notif-info:    #4a9eff;
  --notif-alert:   #e05555;
  --notif-dest:    #d8fa2e;

  /* Medal palette */
  --gold-grad:     linear-gradient(270deg,#fff7ad 0%,#fffde7 29%,#fce57f 53.5%,#ab6c1d 73.5%,#fdf49c 100%);
  --gold-border:   #fff7ad;
  --gold-glow:     0 0 48px 8px rgba(255,215,49,.33);
  --silver-border: #c0c0c0;
  --bronze-border: #875601;
  --bronze-color:  #d89015;

  /* Typography */
  --font:          'Roobert', 'Roobert TRIAL', system-ui, sans-serif;
  --font-display:  'Tobias', 'Tobias TRIAL', Georgia, serif;
  --font-mono:     'Space Mono', 'Courier New', monospace;

  /* Logo filter → lime tint */
  --logo-filter:   brightness(0) invert(60%) sepia(61%) saturate(634%) hue-rotate(32deg) brightness(91%);

  /* Spacing (4pt scale) */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;

  /* Border radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --r-full: 9999px;

  /* Motion */
  --ease-out:  cubic-bezier(.22, 1, .36, 1);
  --ease-in:   cubic-bezier(.64, 0, .78, 0);
  --dur-fast:  150ms;
  --dur-base:  250ms;
  --dur-slow:  400ms;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.4);
  --shadow-md:  0 4px 16px rgba(0,0,0,.5);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.7);
  --shadow-xl:  0 32px 80px rgba(0,0,0,.8);
}
