/* ==========================================================================
   Pelle Info Systems Pvt Ltd - Design Tokens & Variables
   Fintech Enterprise System (Fiserv Inspiration)
   ========================================================================== */

:root {
  /* Color Palette - Dark Fintech Theme */
  --bg-darkest: #030712;
  --bg-primary: #060D1E;
  --bg-secondary: #0B1528;
  --bg-tertiary: #101E38;
  --bg-card: rgba(16, 30, 56, 0.7);
  --bg-card-hover: rgba(22, 42, 78, 0.85);
  --bg-glass: rgba(11, 21, 40, 0.75);
  --bg-glass-high: rgba(16, 30, 56, 0.88);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 102, 255, 0.4);
  --border-accent-bright: #0066FF;
  --border-cyan: rgba(0, 210, 255, 0.5);

  /* Accent Colors */
  --accent-blue: #0066FF;         /* Fiserv-style core electric blue */
  --accent-blue-hover: #1A75FF;
  --accent-cyan: #00D2FF;         /* High-tech cyan glow */
  --accent-emerald: #00E5A3;      /* Transaction success & growth green */
  --accent-amber: #FFB020;        /* Alert & badge amber */
  --accent-purple: #7928CA;       /* Deep tech accent */

  /* Text & Foreground */
  --text-white: #FFFFFF;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-accent: #38BDF8;
  --text-emerald: #34D399;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #0066FF 0%, #00D2FF 100%);
  --grad-surface: linear-gradient(180deg, rgba(16, 30, 56, 0.6) 0%, rgba(11, 21, 40, 0.9) 100%);
  --grad-emerald: linear-gradient(135deg, #00E5A3 0%, #0066FF 100%);
  --grad-hero-glow: radial-gradient(circle at 50% 20%, rgba(0, 102, 255, 0.22) 0%, rgba(0, 210, 255, 0.06) 45%, transparent 75%);
  --grad-card-glow: radial-gradient(circle at top left, rgba(0, 210, 255, 0.12), transparent 50%);

  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 35px rgba(0, 102, 255, 0.35);
  --shadow-cyan-glow: 0 0 30px rgba(0, 210, 255, 0.25);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-full: 9999px;

  /* Layout */
  --container-max: 1240px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-Index Stack */
  --z-base: 1;
  --z-nav: 100;
  --z-modal-backdrop: 900;
  --z-modal: 1000;
  --z-toast: 1100;
}
