/* 
OzPath Modern Techy Design System
Inspired by Cluely, Keytom, QuietCubes
Color Palette: Blue, White, Dark Blue (OzPath Logo Colors)
*/

:root {
  /* Primary Colors - OzPath Blue Theme */
  --primary-blue: #2E89E6;
  --primary-dark-blue: #1a5db8;
  --primary-light-blue: #5ba3f0;
  --primary-navy: #0d3a7d;
  --primary-white: #ffffff;
  --accent-color: #2E89E6;
  
  /* Blue Variations */
  --blue-50: #e6f0f9;
  --blue-100: #b3d9f0;
  --blue-200: #80c0e8;
  --blue-300: #4da6e0;
  --blue-400: #2e8cda;
  --blue-500: #2E89E6;
  --blue-600: #1a5db8;
  --blue-700: #135299;
  --blue-800: #0d3a7d;
  --blue-900: #061f4d;
  
  /* Neutral Colors */
  --grey-50: #f8fafc;
  --grey-100: #f1f5f9;
  --grey-200: #e2e8f0;
  --grey-300: #cbd5e1;
  --grey-400: #94a3b8;
  --grey-500: #64748b;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1e293b;
  --grey-900: #0f172a;
  
  /* Gradients - Blue Focused */
  --gradient-primary: linear-gradient(135deg, #2E89E6 0%, #1a5db8 100%);
  --gradient-secondary: linear-gradient(135deg, #5ba3f0 0%, #2E89E6 100%);
  --gradient-dark: linear-gradient(135deg, #0d3a7d 0%, #061f4d 100%);
  --gradient-glass: linear-gradient(135deg, rgba(46, 137, 230, 0.1) 0%, rgba(26, 93, 184, 0.05) 100%);
  
  /* Glassmorphism - Blue Tinted for White Background */
  --glass-bg: rgba(46, 137, 230, 0.03);
  --glass-border: rgba(46, 137, 230, 0.15);
  --glass-shadow: 0 8px 32px rgba(46, 137, 230, 0.08);
  
  /* Text Colors for White Background */
  --text-primary: #000000;
  --text-secondary: #1e293b;
  --text-tertiary: #475569;
  
  /* Typography */
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  
  /* Animations */
  --transition-fast: 0.15s ease-out;
  --transition-normal: 0.3s ease-out;
  --transition-slow: 0.5s ease-out;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  
  /* Shadows - Blue Focused */
  --shadow-sm: 0 1px 2px 0 rgba(0, 61, 153, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 61, 153, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 61, 153, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 61, 153, 0.1);
  --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.4);
  --shadow-blue-glow: 0 0 30px rgba(0, 102, 255, 0.2);
}

/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
}

*:focus,
*:focus-visible,
*:active {
  outline: none !important;
}

/* Remove all possible outlines and borders on interactive states */
div:focus,
div:focus-visible,
div:active,
section:focus,
section:focus-visible,
section:active {
  outline: none !important;
  border-color: inherit !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Body base styles */
body {
  font-family: var(--font-primary);
  background: #ffffff;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Animated background particles - Disabled */
.bg-particles {
  display: none;
}

/* Glass morphism utility classes */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(46, 137, 230, 0.15) !important;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: none;
  transition: all var(--transition-normal);
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 102, 255, 0.15), 0 4px 6px -2px rgba(0, 102, 255, 0.1);
  border-color: rgba(46, 137, 230, 0.15) !important;
}

.waitlist-content:hover {
  transform: none !important;
  box-shadow: none !important;
}

.glass-card:focus,
.glass-card:focus-visible,
.glass-card:active,
.glass-card:focus-within {
  outline: none !important;
  border-color: inherit !important;
  box-shadow: none !important;
}

/* Button styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  transform: none !important;
  box-shadow: none !important;
  background: var(--primary-dark-blue);
}

.btn-ghost {
  background: rgba(46, 137, 230, 0.1);
  color: var(--primary-blue);
  border: none;
  outline: none !important;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-ghost:hover {
  transform: none !important;
  background: rgba(46, 137, 230, 0.2);
  color: var(--primary-blue);
  border: none;
  outline: none !important;
  box-shadow: none;
}

.btn-ghost:focus,
.btn-ghost:focus-visible,
.btn-ghost:active {
  outline: none !important;
  border: none !important;
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Glow effect */
.glow {
  box-shadow: 0 0 20px var(--primary-blue);
}

/* Text gradients */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Grid system */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-sm);
  }
  
  .glass-card {
    padding: var(--space-lg);
  }
}