/* ═══════════════════════════════════════════
   variables.css — MetaLife Group Design Tokens
   ═══════════════════════════════════════════ */

:root {
  /* Colors */
  --bg-base: #060912;
  --bg-card: #0A0F1C;
  --bg-card-hover: #0D1426;
  --bg-elevated: #0F1828;
  --bg-input: rgba(255, 255, 255, 0.04);
  
  --accent: #00E5A4;
  --accent-hover: #00CC92;
  --accent-dim: rgba(0, 229, 164, 0.10);
  --accent-dim2: rgba(0, 229, 164, 0.06);
  --accent-gradient: linear-gradient(135deg, #00E5A4, #00CC92);
  
  --blue: #4B7BFF;
  --blue-dim: rgba(75, 123, 255, 0.10);
  
  --purple: #A855F7;
  --purple-dim: rgba(168, 85, 247, 0.10);
  
  --orange: #FF6240;
  --orange-dim: rgba(255, 98, 64, 0.10);
  
  --teal: #14B8A6;
  
  --success: #00E5A4;
  --error: #FF4545;
  
  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #B0B8C9;
  --text-muted: #6B7280;
  --text-disabled: #4B5563;
  --text-inverse: #060912;
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-default: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.10);
  --border-accent: rgba(0, 229, 164, 0.20);
  --border-blue: rgba(75, 123, 255, 0.20);
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.7);
  
  --shadow-accent-sm: 0 4px 12px rgba(0, 229, 164, 0.15);
  --shadow-accent-md: 0 8px 24px rgba(0, 229, 164, 0.20);
  
  /* Typography */
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;
  
  --text-2xs: 11px;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-md: 18px;
  --text-lg: 20px;
  --text-xl: 24px;
  --text-2xl: 28px;
  --text-3xl: 32px;
  --text-4xl: 40px;
  --text-5xl: 48px;
  
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;
  
  --leading-tight: 1.1;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.65;
  
  --tracking-tight: -0.5px;
  --tracking-normal: 0;
  
  /* Spacing */
  --space-1: 4px;
  --space-1-5: 6px;
  --space-2: 8px;
  --space-2-5: 10px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  
  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-pill: 9999px;
  
  /* Layout */
  --topbar-h: 64px;
  --section-py: 120px;
  --max-text: 560px;
  --max-container: 1200px;
  
  /* Z-index */
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  
  /* Effects */
  --backdrop-blur: 16px;
}

/* Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.3);
  }
}

/* Reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}