/* ============================================
   KIKIZADE SIGORTA — Design Tokens
   ============================================ */

:root {
  /* ── Brand Colors (from logo) ── */
  --color-primary: #0A1628;
  --color-primary-light: #1B3A5C;
  --color-primary-dark: #060E1A;
  --color-secondary: #1E3050;
  
  --color-accent: #C9963C;
  --color-accent-light: #E0B865;
  --color-accent-dark: #A67A2E;
  --color-accent-glow: rgba(201, 150, 60, 0.25);
  
  /* ── Surfaces ── */
  --color-surface: #0E1E35;
  --color-surface-light: #152A47;
  --color-surface-card: rgba(14, 30, 53, 0.7);
  --color-surface-glass: rgba(14, 30, 53, 0.45);
  
  /* ── Text ── */
  --color-text: #E8ECF1;
  --color-text-muted: #8A9BB5;
  --color-text-dark: #1A1A2E;
  --color-text-accent: #C9963C;
  
  /* ── Semantic ── */
  --color-success: #22C55E;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  
  /* ── Whites ── */
  --color-white: #FFFFFF;
  --color-white-90: rgba(255, 255, 255, 0.9);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-10: rgba(255, 255, 255, 0.1);
  --color-white-05: rgba(255, 255, 255, 0.05);
  
  /* ── Gradients ── */
  --gradient-primary: linear-gradient(135deg, #0A1628 0%, #1B3A5C 100%);
  --gradient-accent: linear-gradient(135deg, #C9963C 0%, #E0B865 100%);
  --gradient-hero: linear-gradient(180deg, #060E1A 0%, #0A1628 40%, #1B3A5C 100%);
  --gradient-card: linear-gradient(145deg, rgba(14, 30, 53, 0.8) 0%, rgba(27, 58, 92, 0.4) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.6) 50%, rgba(10, 22, 40, 0.9) 100%);
  
  /* ── Typography ── */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --fs-display: clamp(2.8rem, 6vw, 5rem);
  --fs-h1: clamp(2.2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.8rem, 3.5vw, 2.8rem);
  --fs-h3: clamp(1.3rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.1rem);
  --fs-small: clamp(0.8rem, 0.9vw, 0.9rem);
  --fs-xs: 0.75rem;
  
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
  
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-wide: 0.05em;
  --ls-wider: 0.12em;
  --ls-widest: 0.2em;
  
  /* ── Spacing ── */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --space-section: clamp(5rem, 10vh, 8rem);
  
  /* ── Border Radius ── */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* ── Shadows ── */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 30px rgba(201, 150, 60, 0.2);
  --shadow-glow-strong: 0 0 50px rgba(201, 150, 60, 0.35);
  
  /* ── Transitions ── */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* ── Z-Index ── */
  --z-behind: -1;
  --z-normal: 1;
  --z-above: 10;
  --z-nav: 100;
  --z-modal: 1000;
  --z-toast: 2000;
  
  /* ── Container ── */
  --container-max: 1280px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);
}
