:root {
  /* Brand Colors - mokka.solutions Identity */
  --color-bg-deep: #020e24;
  --color-bg-primary: #0a1628;
  --color-bg-secondary: #0c2d5a;
  --color-bg-card: rgba(12, 45, 90, 0.3);
  --color-bg-card-hover: rgba(12, 45, 90, 0.5);
  --color-bg-glass: rgba(10, 22, 40, 0.7);

  /* Accent - Cyan/Sky Blue */
  --color-accent-100: #e0f2fe;
  --color-accent-200: #bae6fd;
  --color-accent-300: #7dd3fc;
  --color-accent-400: #38bdf8;
  --color-accent-500: #0ea5e9;
  --color-accent-600: #0284c7;
  --color-accent-700: #0369a1;

  /* Text */
  --color-text-primary: #f0f6ff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  --color-text-accent: #38bdf8;

  /* Borders */
  --color-border: rgba(56, 189, 248, 0.12);
  --color-border-hover: rgba(56, 189, 248, 0.3);

  /* Gradients */
  --gradient-accent: linear-gradient(135deg, #0ea5e9, #38bdf8, #7dd3fc);
  --gradient-bg: radial-gradient(ellipse at 20% 50%, #0c2d5a 0%, #020e24 70%);
  --gradient-card: linear-gradient(145deg, rgba(14, 165, 233, 0.08), rgba(56, 189, 248, 0.02));
  --gradient-glow: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1360px;
  --container-wide: 1440px;
  --section-padding: var(--space-24) var(--space-6);

  /* Borders & Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.15);
  --shadow-glow-lg: 0 0 80px rgba(14, 165, 233, 0.2);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-slower: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Z-index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
}
