/* =================================================================== */
/* Tier C Glassmorphism Light Theme & Premium Design System           */
/* =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color-scheme: light;
}

code, kbd, pre, .font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Ambient Radial Glow Background */
body.bg-ambient-glow {
  background-color: #F8FAFC;
  background-image: 
    radial-gradient(at 0% 0%, rgba(238, 242, 255, 0.9) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(243, 232, 255, 0.9) 0px, transparent 50%),
    radial-gradient(at 50% 60%, rgba(238, 242, 255, 0.6) 0px, transparent 60%);
  background-attachment: fixed;
  background-size: cover;
}

/* Pure White Glassmorphism Cards & Containers */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px -5px rgba(226, 232, 240, 0.8), 0 4px 12px -2px rgba(226, 232, 240, 0.3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.glass-card:hover {
  border-color: rgba(199, 210, 254, 0.8);
}

.glass-nav {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 20px -2px rgba(226, 232, 240, 0.5);
}

.search-pill-input {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 6px 0 rgba(226, 232, 240, 0.6);
  transition: all 0.2s ease;
}

.search-pill-input:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px 0 rgba(226, 232, 240, 0.8);
}

/* Electric Indigo to Royal Violet Gradient Button */
.btn-indigo-gradient {
  background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
  box-shadow: 0 4px 16px -2px rgba(79, 70, 229, 0.4);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-indigo-gradient:hover {
  background: linear-gradient(135deg, #4338CA 0%, #6D28D9 100%);
  box-shadow: 0 8px 24px -4px rgba(79, 70, 229, 0.5);
  transform: translateY(-1px);
}

.btn-indigo-gradient:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px -1px rgba(79, 70, 229, 0.4);
}

/* Badge Glow Effects */
.badge-glow-emerald {
  box-shadow: 0 0 12px -1px rgba(16, 185, 129, 0.3);
}

.badge-glow-indigo {
  box-shadow: 0 0 12px -1px rgba(79, 70, 229, 0.3);
}

/* Input & Form Controls Focus Rings */
textarea:focus, select:focus, input:focus {
  outline: none !important;
  border-color: #4F46E5 !important;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12) !important;
}

/* Table Responsive Utilities */
@media (max-width: 640px) {
  .table-responsive-wrapper {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  th, td {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Keyframe Animations */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 0.9s linear infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* FAQ Accordion Transitions */
.faq-content {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle i {
  transition: transform 0.25s ease;
}

/* Hide Scrollbar for Horizontal Carousel */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #f8fafc;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}
