/* ================= FINZO WALLET — Design Tokens ================= */
:root{
  /* Neutral surfaces (LIGHT default) */
  --bg:#f4f5fb;
  --bg-2:#eceef7;
  --surface:#ffffff;
  --surface-2:#f7f8fc;
  --text:#141625;
  --text-muted:#6b7192;
  --border:#e6e8f2;
  --shadow:0 10px 30px -12px rgba(30,32,60,.18);
  --shadow-sm:0 4px 14px -8px rgba(30,32,60,.28);
  --shadow-lg:0 24px 60px -18px rgba(30,32,60,.30);

  --success:#12b76a; --success-soft:#e7f8ef;
  --warning:#f79009; --warning-soft:#fff4e5;
  --danger:#f04438;  --danger-soft:#fdecea;
  --info:#2e90fa;    --info-soft:#e8f2ff;

  /* Accent (overridden by [data-color]) — default violet */
  --primary:#7c5cff;
  --primary-dark:#5b3ce0;
  --primary-soft:#efeaff;
  --primary-contrast:#ffffff;
  --grad:linear-gradient(135deg,#7c5cff 0%,#9d6bff 45%,#4ac1ff 100%);
  --grad-soft:linear-gradient(135deg,rgba(124,92,255,.12),rgba(74,193,255,.12));

  --radius:22px;
  --radius-sm:14px;
  --radius-lg:30px;
  --app-w:520px;
  --nav-h:78px;
  --font:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --safe-b:env(safe-area-inset-bottom,0px);
  --ease:cubic-bezier(.22,1,.36,1);
}

/* ---------- DARK ---------- */
[data-theme="dark"]{
  --bg:#0c0d16;
  --bg-2:#111324;
  --surface:#171a2b;
  --surface-2:#1e2136;
  --text:#f2f3fb;
  --text-muted:#9aa0c4;
  --border:#262a44;
  --shadow:0 18px 40px -16px rgba(0,0,0,.6);
  --shadow-sm:0 6px 18px -10px rgba(0,0,0,.7);
  --shadow-lg:0 30px 70px -20px rgba(0,0,0,.75);
  --success-soft:rgba(18,183,106,.14);
  --warning-soft:rgba(247,144,9,.14);
  --danger-soft:rgba(240,68,56,.16);
  --info-soft:rgba(46,144,250,.16);
  --primary-soft:rgba(124,92,255,.18);
}

/* ============ ACCENT PRESETS (define primary + gradient) ============ */
[data-color="blue"]   {--primary:#3b74ff;--primary-dark:#2a56d6;--grad:linear-gradient(135deg,#3b74ff,#5aa2ff 55%,#57e0ff);--primary-soft:#e8f0ff;}
[data-color="indigo"] {--primary:#5b5bf6;--primary-dark:#4141d6;--grad:linear-gradient(135deg,#5b5bf6,#7d6bff 55%,#57b7ff);--primary-soft:#ecebff;}
[data-color="violet"] {--primary:#7c5cff;--primary-dark:#5b3ce0;--grad:linear-gradient(135deg,#7c5cff,#9d6bff 45%,#4ac1ff);--primary-soft:#efeaff;}
[data-color="emerald"]{--primary:#10b981;--primary-dark:#0a8f66;--grad:linear-gradient(135deg,#0fbf8f,#3ad29a 55%,#8fe6c0);--primary-soft:#e6f8f1;}
[data-color="teal"]   {--primary:#14b8c4;--primary-dark:#0d8f99;--grad:linear-gradient(135deg,#12b5c9,#2fd4d0 55%,#7fe9d8);--primary-soft:#e4f7f9;}
[data-color="orange"] {--primary:#f97316;--primary-dark:#d85e0a;--grad:linear-gradient(135deg,#ff7a18,#ff9a3d 55%,#ffcf6b);--primary-soft:#fff0e3;}
[data-color="rose"]   {--primary:#f43f7a;--primary-dark:#d62661;--grad:linear-gradient(135deg,#ff4d7e,#ff6fa0 55%,#ffb3c6);--primary-soft:#ffe7ee;}
[data-color="gold"]   {--primary:#d4a017;--primary-dark:#a97d0c;--grad:linear-gradient(135deg,#e0b021,#f0c94f 55%,#ffe79a);--primary-soft:#fbf3d8;}
[data-color="cyan"]   {--primary:#06b6d4;--primary-dark:#078aa0;--grad:linear-gradient(135deg,#06b6d4,#22d3ee 55%,#67e8f9);--primary-soft:#e3f8fb;}
[data-color="purple"] {--primary:#a855f7;--primary-dark:#7e22ce;--grad:linear-gradient(135deg,#9333ea,#b45cff 55%,#e879f9);--primary-soft:#f4e9ff;}
[data-color="red"]    {--primary:#ef4444;--primary-dark:#c52d2d;--grad:linear-gradient(135deg,#ef4444,#f65f5f 55%,#fb8b75);--primary-soft:#feeaea;}
[data-color="lime"]   {--primary:#84cc16;--primary-dark:#5f9710;--grad:linear-gradient(135deg,#72b90f,#9bd82c 55%,#c7ea62);--primary-soft:#f1f9df;}
