/*
╔══════════════════════════════════════════════════════════════╗
║                                                              ║
║                ILLUMINATE AI - MODERN DESIGN SYSTEM          ║
║                                                              ║
║  🧠 Mental Health Focused • ♿ WCAG AA Compliant • 📱 Modern  ║
║                                                              ║
╚══════════════════════════════════════════════════════════════╝
*/

/* ==========================================================================
   DESIGN TOKENS - Foundation Layer
   ========================================================================== */

:root {
  /* 🎨 MODERN COLOR SYSTEM - Calming & Professional */
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-200: #bae6fd;
  --primary-300: #7dd3fc;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --primary-800: #075985;
  --primary-900: #0c4a6e;

  --calm-50: #f0fdf4;
  --calm-100: #dcfce7;
  --calm-200: #bbf7d0;
  --calm-500: #22c55e;
  --calm-600: #16a34a;
  --calm-700: #15803d;

  --warm-50: #fff7ed;
  --warm-100: #ffedd5;
  --warm-200: #fed7aa;
  --warm-500: #f97316;
  --warm-600: #ea580c;

  /* 🧠 MENTAL HEALTH STATE COLORS */
  --mood-calm: #10b981;
  --mood-anxious: #f59e0b;
  --mood-stressed: #ef4444;
  --mood-sad: #6366f1;
  --mood-focused: #8b5cf6;

  /* 📏 MODERN SPACING SCALE */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* 🔤 TYPOGRAPHY SCALE - DM Sans */
  --font-size-xs: 0.75rem;    /* 12px */
  --font-size-sm: 0.875rem;   /* 14px */
  --font-size-base: 1rem;     /* 16px */
  --font-size-lg: 1.125rem;   /* 18px */
  --font-size-xl: 1.25rem;    /* 20px */
  --font-size-2xl: 1.5rem;    /* 24px */
  --font-size-3xl: 1.875rem;  /* 30px */
  --font-size-4xl: 2.25rem;   /* 36px */
  --font-size-5xl: 3rem;      /* 48px */

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

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;

  /* 📐 MODERN BORDER RADIUS */
  --radius-sm: 0.25rem;   /* 4px */
  --radius-md: 0.375rem;  /* 6px */
  --radius-lg: 0.5rem;    /* 8px */
  --radius-xl: 0.75rem;   /* 12px */
  --radius-2xl: 1rem;     /* 16px */
  --radius-3xl: 1.5rem;   /* 24px */
  --radius-full: 9999px;

  /* 🎭 MODERN SHADOWS */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* ⚡ MODERN ANIMATIONS */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ♿ ACCESSIBILITY */
  --focus-ring: 2px solid var(--primary-500);
  --focus-ring-offset: 2px;

  /* 🎨 SEMANTIC COLORS */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --text-inverse: #ffffff;

  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-accent: #e0f2fe;

  --border-light: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-dark: #475569;
}

/* ==========================================================================
   BASE STYLES - Reset & Foundation
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ==========================================================================
   ACCESSIBILITY FIRST - WCAG 2.1 AA
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --border-medium: #000000;
    --text-secondary: #000000;
  }
}

/* Focus Management */
*:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

/* Skip Links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-600);
  color: white;
  padding: 8px 12px;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  z-index: 1001;
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: 6px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   MODERN COMPONENT LIBRARY
   ========================================================================== */

/* 🎯 BUTTON SYSTEM - Primary, Secondary, Ghost */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  min-height: 44px; /* Touch target */
  white-space: nowrap;
}

/* Button States */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}

/* Primary Button - Trust Building */
.btn-primary {
  background: var(--primary-600);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary Button - Supportive */
.btn-secondary {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--bg-secondary);
  border-color: var(--primary-300);
  transform: translateY(-1px);
}

/* Ghost Button - Subtle */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
  box-shadow: none;
  padding: var(--space-2) var(--space-4);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

/* Mood-Based Button Variants */
.btn-calm {
  background: var(--mood-calm);
  color: white;
}

.btn-calm:hover:not(:disabled) {
  background: var(--calm-600);
  box-shadow: 0 4px 12px rgb(16 185 129 / 0.3);
}

.btn-anxious {
  background: var(--mood-anxious);
  color: white;
}

.btn-anxious:hover:not(:disabled) {
  background: var(--warm-600);
  box-shadow: 0 4px 12px rgb(245 158 11 / 0.3);
}

.btn-stressed {
  background: var(--mood-stressed);
  color: white;
}

.btn-stressed:hover:not(:disabled) {
  background: #dc2626;
  box-shadow: 0 4px 12px rgb(239 68 68 / 0.3);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  min-height: 36px;
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-lg);
  min-height: 52px;
}

/* 📝 FORM SYSTEM - Accessible & Calming */
.form-input {
  width: 100%;
  padding: var(--space-4);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  min-height: 48px; /* Touch friendly */
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgb(14 165 233 / 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-label {
  display: block;
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
}

.form-group {
  margin-bottom: var(--space-6);
}

/* 🎨 CARD SYSTEM - Breathing Space */
.card {
  background: var(--bg-primary);
  border-radius: var(--radius-3xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-header {
  margin-bottom: var(--space-4);
}

.card-title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin: 0;
}

.card-content {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Mental Health Specific Cards */
.mood-card {
  background: linear-gradient(135deg, var(--calm-50) 0%, var(--primary-50) 100%);
  border-left: 4px solid var(--mood-calm);
}

.journal-card {
  background: linear-gradient(135deg, var(--warm-50) 0%, var(--primary-50) 100%);
  border-left: 4px solid var(--mood-anxious);
}

.session-card {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--primary-50) 100%);
  border-left: 4px solid var(--primary-500);
}

/* 🧠 MOOD SYSTEM - Visual Emotional States */
.mood-indicator {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.mood-indicator.calm {
  background: var(--calm-100);
  color: var(--calm-700);
}

.mood-indicator.anxious {
  background: var(--warm-100);
  color: var(--warm-700);
}

.mood-indicator.stressed {
  background: #fef2f2;
  color: var(--mood-stressed);
}

.mood-indicator.focused {
  background: #faf5ff;
  color: var(--mood-focused);
}

/* 📊 PROGRESS SYSTEM - Encouraging, Not Pressuring */
.progress-ring {
  width: 80px;
  height: 80px;
  position: relative;
  margin: 0 auto;
}

.progress-ring-circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring-bg {
  fill: none;
  stroke: var(--border-light);
  stroke-width: 4;
}

.progress-ring-fill {
  fill: none;
  stroke: var(--primary-500);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  transition: stroke-dashoffset var(--transition-slow);
  animation: progress-glow 2s ease-in-out infinite alternate;
}

@keyframes progress-glow {
  from { filter: drop-shadow(0 0 2px rgb(14 165 233 / 0.3)); }
  to { filter: drop-shadow(0 0 6px rgb(14 165 233 / 0.6)); }
}

/* 🧘 BREATHING ANIMATIONS - Calming 4-Second Cycles */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.breathing-element {
  animation: breathe 4s ease-in-out infinite;
}

/* 🎈 MICRO-INTERACTIONS - Gentle Feedback */
@keyframes gentle-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
  60% { transform: translateY(-3px); }
}

.gentle-bounce {
  animation: gentle-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes success-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0.4); }
  50% { box-shadow: 0 0 0 8px rgb(34 197 94 / 0); }
}

.success-pulse {
  animation: success-pulse 0.6s ease-out;
}

/* 🌊 RIPPLE EFFECTS - Modern Touch Feedback */
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.6s, height 0.6s;
  transform: translate(-50%, -50%);
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

/* 🏗️ LAYOUT SYSTEM - Modern Grid */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

@media (min-width: 640px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

.grid {
  display: grid;
  gap: var(--space-6);
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (min-width: 768px) {
  .md-grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg-grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg-grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* 📱 MOBILE FIRST RESPONSIVE */
@media (max-width: 768px) {
  .btn {
    width: 100%;
    justify-content: center;
  }

  .card {
    padding: var(--space-4);
    margin-bottom: var(--space-4);
  }

  .grid {
    gap: var(--space-4);
  }
}

/* 🖥️ DESKTOP ENHANCEMENTS */
@media (min-width: 1024px) {
  .card:hover {
    box-shadow: var(--shadow-xl);
  }

  .btn:hover {
    transform: translateY(-2px);
  }
}

/* 🎨 HERO SECTION - Immersive & Calming */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg,
    var(--primary-50) 0%,
    var(--calm-50) 50%,
    var(--primary-100) 100%);
  padding: var(--space-20) var(--space-4);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-200) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--bg-primary);
  color: var(--primary-700);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--primary-200);
  margin-bottom: var(--space-6);
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
  animation: fadeInUp 1.2s ease-out;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--primary-600), var(--calm-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1.4s ease-out;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-12);
  animation: fadeInUp 1.6s ease-out;
  flex-wrap: wrap;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🧭 NAVIGATION - Modern & Accessible */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  padding: var(--space-4) var(--space-4);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--primary-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--primary-800);
}

.nav-logo-icon {
  font-size: var(--font-size-2xl);
  animation: gentle-bounce 2s ease-in-out infinite;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-links a:hover {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-links a.active {
  color: var(--primary-700);
  background: var(--primary-100);
}

/* 📊 LOADING STATES - Calming, Not Anxious */
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-light);
  border-top: 3px solid var(--primary-500);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-dots {
  display: flex;
  gap: var(--space-1);
  justify-content: center;
  align-items: center;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  animation: loading-bounce 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes loading-bounce {
  0%, 80%, 100% {
    transform: scale(0);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 🎉 SUCCESS ANIMATIONS */
.success-checkmark {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
}

.success-checkmark::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 3px solid var(--calm-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: success-checkmark-circle 0.6s ease-out;
}

.success-checkmark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 10px;
  border: solid var(--calm-500);
  border-width: 0 0 3px 3px;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0);
  animation: success-checkmark-check 0.6s ease-out 0.3s both;
}

@keyframes success-checkmark-circle {
  from {
    width: 0;
    height: 0;
    opacity: 1;
  }
  to {
    width: 80px;
    height: 80px;
    opacity: 0;
  }
}

@keyframes success-checkmark-check {
  from { transform: translate(-50%, -50%) rotate(-45deg) scale(0); }
  to { transform: translate(-50%, -50%) rotate(-45deg) scale(1); }
}

/* 🚨 ERROR STATES - Gentle, Solution-Oriented */
.error-message {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
  color: #dc2626;
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border-left: 4px solid #dc2626;
  margin-bottom: var(--space-4);
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🌙 DARK MODE - Mental Health Conscious */
@media (prefers-color-scheme: dark) {
  :root {
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;

    --border-light: #334155;
    --border-medium: #475569;
  }

  .card {
    background: var(--bg-secondary);
    border-color: var(--border-light);
  }

  .btn-primary {
    background: var(--primary-500);
  }

  .btn-primary:hover:not(:disabled) {
    background: var(--primary-400);
  }
}

/* Print Styles - Accessible */
@media print {
  .btn, .nav, .hero-glow {
    display: none !important;
  }

  .card {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
}