@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);
/* ===================================
   COMMON.CSS - Shared Styles for All Pages
   Apple-inspired Design System
   =================================== */

/* Import Google Fonts */

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  /* Apple-inspired Color Palette */
  --apple-gray-50: #f9fafb;
  --apple-gray-100: #f3f4f6;
  --apple-gray-200: #e5e7eb;
  --apple-gray-300: #d1d5db;
  --apple-gray-400: #9ca3af;
  --apple-gray-500: #6b7280;
  --apple-gray-600: #4b5563;
  --apple-gray-700: #374151;
  --apple-gray-800: #1f2937;
  --apple-gray-900: #111827;
  
  /* Accent Colors */
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --accent-yellow: #f59e0b;
  --accent-purple: #8b5cf6;
  
  /* Nova Brand Colors */
  --nova-blue: #0071CE;
  
  /* Typography */
  --font-apple: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  --font-inter: 'Inter', var(--font-apple);
  
  /* Spacing & Layout */
  --blur-amount: 20px;
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --header-height: 64px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  
  /* Liquid Glass Variables */
  --glass-bg-light: rgba(255, 255, 255, 0.15);
  --glass-bg-medium: rgba(255, 255, 255, 0.25);
  --glass-bg-strong: rgba(255, 255, 255, 0.35);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-border-strong: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  --glass-shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.15);
  --glass-blur-light: 12px;
  --glass-blur-medium: 20px;
  --glass-blur-strong: 32px;
  
  /* Liquid Glass Dark Mode */
  --glass-bg-dark-light: rgba(0, 0, 0, 0.15);
  --glass-bg-dark-medium: rgba(0, 0, 0, 0.25);
  --glass-bg-dark-strong: rgba(0, 0, 0, 0.35);
  --glass-border-dark: rgba(0, 0, 0, 0.2);
  
  /* Dynamic Glass Colors (content-aware) */
  --glass-tint-blue: rgba(0, 113, 206, 0.1);
  --glass-tint-green: rgba(16, 185, 129, 0.1);
  --glass-tint-purple: rgba(139, 92, 246, 0.1);
}

/* ===================================
   BASE STYLES
   =================================== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

/* ===================================
   CITATION STYLES
   =================================== */
.citation-ref {
  font-size: 0.7em;
  vertical-align: super;
  margin-left: 2px;
}

.citation-ref a {
  color: var(--nova-blue);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.citation-ref a:hover {
  opacity: 1;
  text-decoration: underline;
}

cite {
  font-style: normal;
  display: inline-block;
  padding: 0.25rem 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-apple);
  background-color: white;
  color: var(--apple-gray-900);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  font-size: 1.1em; /* 10% larger than Apple default */
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--apple-gray-900);
  margin-top: 0;
}

h1 { 
  font-size: 3.5rem; 
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 { 
  font-size: 2.5rem; 
  letter-spacing: -0.01em;
}

h3 { 
  font-size: 1.75rem; 
}

p {
  color: var(--apple-gray-600);
  line-height: 1.75;
}

.text-large {
  font-size: 1.25rem;
  line-height: 1.75;
}

/* ===================================
   HEADER STYLES
   =================================== */
.main-header {
  top: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  background: linear-gradient(180deg, 
    rgba(255, 255, 255, 0.72) 0%, 
    rgba(255, 255, 255, 0.64) 100%
  );
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  position: fixed;
}

.main-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  opacity: 1;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--apple-gray-900);
  text-decoration: none;
  transition: opacity var(--transition-fast);
  display: flex;
  align-items: center;
}

.logo:hover {
  opacity: 0.8;
}

/* Logo image sizing */
.logo img {
  height: 32px;
  width: auto;
  max-width: 120px; /* Prevent logo from being too wide */
  object-fit: contain;
}

/* Header logo specific sizing */
nav .logo img {
  height: 36px; /* Slightly larger in header for better visibility */
  max-width: 140px;
}

/* Footer logo sizing */
footer .logo img,
footer img[alt="Logo"] {
  height: 32px;
  max-width: 120px;
}

/* Footer Styling */
.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer ul li {
  line-height: 1.4;
}

.site-footer h3 {
  text-transform: none !important;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.site-footer .space-y-2 > * + * {
  margin-top: 0.5rem;
}

.site-footer address {
  line-height: 1.4;
}

/* Climate Pledge Logo Styling */
.climate-pledge-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin-top: 0.5rem;
}

/* Mobile responsive logo sizing */
@media (max-width: 768px) {
  .logo img {
    height: 28px;
    max-width: 100px;
  }
  
  nav .logo img {
    height: 32px;
    max-width: 110px;
  }
  
  footer .logo img,
  footer img[alt="Logo"] {
    height: 28px;
    max-width: 100px;
  }
  
  .climate-pledge-logo {
    height: 40px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 24px;
    max-width: 90px;
  }
  
  nav .logo img {
    height: 28px;
    max-width: 100px;
  }
  
  footer .logo img,
  footer img[alt="Logo"] {
    height: 24px;
    max-width: 90px;
  }
  
  .climate-pledge-logo {
    height: 36px;
    max-width: 140px;
  }
}

nav .nav-link {
  color: var(--apple-gray-700) !important;
  text-decoration: none !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  transition: all var(--transition-normal) !important;
  position: relative !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

nav .nav-link:hover {
  color: var(--apple-gray-900) !important;
  backdrop-filter: blur(var(--glass-blur-light)) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur-light)) !important;
  background: var(--glass-bg-light) !important;
  border: 1px solid var(--glass-border) !important;
  box-shadow: var(--glass-shadow) !important;
  transform: translateY(-1px) !important;
}

nav .nav-link::after {
  content: '' !important;
  position: absolute !important;
  width: 0 !important;
  height: 2px !important;
  bottom: 2px !important;
  left: 50% !important;
  background-color: var(--nova-blue) !important;
  transition: all var(--transition-normal) !important;
  transform: translateX(-50%) !important;
  border-radius: 1px !important;
}

nav .nav-link:hover::after {
  width: calc(100% - 32px) !important;
}

/* Glass shimmer effect for navigation links */
nav .nav-link::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent) !important;
  opacity: 0 !important;
  transition: all 0.6s ease !important;
  z-index: 1 !important;
}

nav .nav-link:hover::before {
  left: 100% !important;
  opacity: 0.3 !important;
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  background: var(--glass-bg-strong);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-normal);
  overflow: hidden;
}

.mobile-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent);
  opacity: 0.6;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-link {
  display: block;
  padding: 12px 24px;
  color: var(--apple-gray-700);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  position: relative;
  overflow: hidden;
}

.mobile-nav-link:hover {
  color: var(--apple-gray-900);
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin: 0 -1px;
  border-radius: 6px;
}

/* Glass shimmer effect for mobile navigation links */
.mobile-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
}

.mobile-nav-link:hover::before {
  left: 100%;
  opacity: 0.3;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.site-footer {
  background-color: white;
  border-top: 1px solid var(--apple-gray-200);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-grid h3 {
  color: var(--apple-gray-900);
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-grid a {
  color: var(--apple-gray-600);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-grid a:hover {
  color: var(--apple-gray-900);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 12px;
}

.partner-logo {
  height: 36px;
  object-fit: contain;
  background-color: var(--apple-gray-50);
  border: 1px solid var(--apple-gray-200);
  border-radius: 6px;
  padding: 8px;
  transition: all var(--transition-fast);
}

.partner-logo:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-color: var(--apple-gray-300);
  transform: translateY(-1px);
}

.social-link {
  display: inline-block;
  transition: transform var(--transition-fast);
}

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

.legal-row {
  border-top: 1px solid var(--apple-gray-200);
  padding-top: 32px;
}

/* ===================================
   SECTIONS & CONTAINERS
   =================================== */
.section {
  padding: 80px 0;
}

.section-large {
  padding: 120px 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* ===================================
   HERO SECTIONS WITH VIDEO
   =================================== */
.hero-video {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(0, 0, 0, 0.1) 50%, 
    rgba(0, 0, 0, 0.3) 100%
  );
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  z-index: -1;
}

.hero-video-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 30%, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 60%
  );
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 0 24px;
}

.hero-content h1 {
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.375rem;
  max-width: 800px;
  margin: 0 auto 40px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Video controls for easy disabling */
.hero-video.no-video {
  background: linear-gradient(135deg, var(--apple-gray-50) 0%, var(--apple-gray-100) 100%);
  min-height: 80vh;
}

.hero-video.no-video .hero-content h1,
.hero-video.no-video .hero-content p {
  color: var(--apple-gray-900);
  text-shadow: none;
}

/* ===================================
   CARDS & COMPONENTS
   =================================== */
.card {
  background: white;
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card:hover::before {
  opacity: 1;
}

.card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  margin-bottom: 24px;
}

.card-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--apple-gray-900);
}

.card-description {
  color: var(--apple-gray-600);
  line-height: 1.75;
  flex-grow: 1;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
  border: none;
  font-size: 0.9375rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: white;
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--apple-gray-700);
  border: 2px solid var(--apple-gray-300);
}

.btn-secondary:hover {
  background-color: var(--apple-gray-50);
  border-color: var(--apple-gray-400);
  transform: translateY(-1px);
}

.btn-white {
  background-color: white;
  color: var(--apple-gray-900);
}

.btn-white:hover {
  background-color: var(--apple-gray-50);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

/* Enhanced Liquid Glass Button Variants */
.btn-glass {
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  color: var(--apple-gray-900);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-glass:hover {
  background: var(--glass-bg-medium);
  border-color: var(--glass-border-strong);
  transform: translateY(-1px);
  box-shadow: var(--glass-shadow);
}

.btn-glass:hover::before {
  left: 100%;
}

.btn-glass-white {
  backdrop-filter: blur(var(--glass-blur-medium));
  -webkit-backdrop-filter: blur(var(--glass-blur-medium));
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-glass-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.btn-glass-white:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-glass-white:hover::before {
  left: 100%;
}

/* ===================================
   CAROUSELS
   =================================== */
.carousel {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.carousel-item {
  flex: 0 0 auto;
  padding: 0 16px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  backdrop-filter: blur(var(--glass-blur-medium));
  -webkit-backdrop-filter: blur(var(--glass-blur-medium));
  background: var(--glass-bg-medium);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent);
  opacity: 0.6;
  border-radius: 50%;
}

.carousel-btn:hover {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  transform: translateY(-50%) scale(1.05);
  box-shadow: var(--glass-shadow-strong);
}

.carousel-btn.prev {
  left: 24px;
}

.carousel-btn.next {
  right: 24px;
}

/* ===================================
   GRIDS
   =================================== */
.grid-3x3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

@media (min-width: 1024px) {
  .grid-3x3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-2x2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-2x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

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

.slide-up {
  animation: slideUp 0.6s ease-out forwards;
}

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

/* ===================================
   UTILITIES
   =================================== */
.text-center {
  text-align: center;
}

.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */
@media (max-width: 767px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
  
  .section { padding: 60px 0; }
  .section-large { padding: 80px 0; }
  
  .hero-content p {
    font-size: 1.125rem;
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
*:focus {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* High contrast mode */
@media (prefers-contrast: high) {
  .card {
    border: 2px solid var(--apple-gray-900);
  }
  
  .btn {
    border: 2px solid currentColor;
  }
}

/* ===================================
   LIQUID GLASS COMPONENTS
   =================================== */

/* Liquid Glass Base */
.liquid-glass {
  backdrop-filter: blur(var(--glass-blur-medium));
  -webkit-backdrop-filter: blur(var(--glass-blur-medium));
  background: var(--glass-bg-medium);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.liquid-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent);
  opacity: 0.6;
}

/* Liquid Glass Variants */
.liquid-glass-light {
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.liquid-glass-strong {
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  box-shadow: var(--glass-shadow-strong);
}

/* Liquid Glass with Tints */
.liquid-glass-blue {
  background: linear-gradient(135deg, var(--glass-bg-medium), var(--glass-tint-blue));
}

.liquid-glass-green {
  background: linear-gradient(135deg, var(--glass-bg-medium), var(--glass-tint-green));
}

.liquid-glass-purple {
  background: linear-gradient(135deg, var(--glass-bg-medium), var(--glass-tint-purple));
}

/* Liquid Glass Cards */
.liquid-glass-card {
  backdrop-filter: blur(var(--glass-blur-medium));
  -webkit-backdrop-filter: blur(var(--glass-blur-medium));
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.liquid-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent);
  opacity: 0.8;
}

.liquid-glass-card:hover {
  background: var(--glass-bg-medium);
  border-color: var(--glass-border-strong);
  box-shadow: var(--glass-shadow-strong);
  transform: translateY(-2px);
}

/* Liquid Glass Buttons */
.btn-liquid-glass {
  backdrop-filter: blur(var(--glass-blur-light));
  -webkit-backdrop-filter: blur(var(--glass-blur-light));
  background: var(--glass-bg-light);
  border: 1px solid var(--glass-border);
  color: var(--apple-gray-900);
  border-radius: 16px;
  padding: 12px 32px;
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-liquid-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-liquid-glass:hover {
  background: var(--glass-bg-medium);
  border-color: var(--glass-border-strong);
  transform: translateY(-1px);
  box-shadow: var(--glass-shadow);
}

.btn-liquid-glass:hover::before {
  left: 100%;
}

/* Liquid Glass Navigation */
.nav-liquid-glass {
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  background: var(--glass-bg-strong);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* Dynamic Content-Aware Colors */
@media (prefers-color-scheme: dark) {
  .liquid-glass {
    background: var(--glass-bg-dark-medium);
    border-color: var(--glass-border-dark);
  }
  
  .liquid-glass-light {
    background: var(--glass-bg-dark-light);
  }
  
  .liquid-glass-strong {
    background: var(--glass-bg-dark-strong);
  }
}

/* Specular Highlights (responds to movement) */
/* Removed liquid-glass-interactive animations to prevent unwanted rotation effects */

/* ===================================
   AI ENHANCED BADGE COMPONENT
   =================================== */
.ai-enhanced-badge {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
             0 0 0 2px rgba(255, 204, 0, 0.2);
}

.ai-enhanced-badge::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  transform: scale(0);
  transition: transform 0.6s ease-out;
}

.ai-enhanced-badge:hover::before {
  transform: scale(1);
}

.ai-enhanced-badge:active {
  transform: scale(0.98);
}

.ai-enhanced-badge:hover {
  animation: pulse 2s infinite;
  background: rgba(255, 204, 0, 0.95) !important;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 
             0 0 0 3px rgba(255, 204, 0, 0.3);
  transform: rotate(18deg) scale(1.05) !important;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 204, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 204, 0, 0); }
}

@media (max-width: 768px) {
  .ai-enhanced-badge {
    position: static !important;
    transform: rotate(0deg) !important;
    margin-top: 1rem;
    display: inline-flex;
  }
}

/* ===================================
   NAVIGATION PROGRESS BAR COMPONENT
   =================================== */
/* Enhanced nav-link with progress bar effect */
.nav-link-progress {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
  overflow: hidden;
}

/* Base progress bar (always visible) - dark blue-gray */
.nav-link-progress::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #475569; /* Dark blue-gray for empty state */
  transform: scaleX(1); /* Always visible */
}

/* Fill progress bar (on hover) - Nova blue */
.nav-link-progress::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #3b82f6; /* Nova blue */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.nav-link-progress:hover::after {
  transform: scaleX(1);
}

/* Special styling for active link */
.nav-link-progress.active::after {
  transform: scaleX(1);
  background-color: #3b82f6; /* Same Nova blue for active */
}

/* Mobile nav links with same effect */
.mobile-nav-link-progress {
  position: relative;
  display: block;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.mobile-nav-link-progress::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #475569; /* Dark blue-gray for empty state */
  transform: scaleX(1); /* Always visible */
}

.mobile-nav-link-progress::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #3b82f6; /* Nova blue */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mobile-nav-link-progress:hover::after {
  transform: scaleX(1);
}
/* ===================================
   ESTILOS ESPECÍFICOS DE PÁGINAS
   =================================== */

/* Video Background Styles */
#video-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Customer Carousel Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-13 * 150px));
  }
}

.animate-scroll {
  animation: scroll 60s linear infinite;
}

.customers-carousel:hover .animate-scroll {
  animation-play-state: paused;
}

/* Mobile Navigation Styles */
.mobile-nav-link {
  display: block;
  padding: 8px 12px;
  color: var(--apple-gray-700);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  border-radius: 4px;
}

.mobile-nav-link:hover {
  color: var(--apple-gray-900);
  background-color: var(--apple-gray-100);
}

/* Service Grid Hover Effects */
.service-card img {
  transition: transform var(--transition-normal);
}

.service-card:hover img {
  transform: scale(1.05);
}

/* Stat Numbers Gradient */
.stat-number {
  background: linear-gradient(135deg, var(--apple-gray-800) 0%, var(--apple-gray-700) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* Button Styles */
.btn-primary {
  background-color: var(--service-blue);
  color: white;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--apple-gray-700);
  padding: 12px 32px;
  border: 2px solid var(--apple-gray-300);
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--apple-gray-50);
  border-color: var(--apple-gray-400);
  transform: translateY(-1px);
}

/* White button variants for video backgrounds */
.btn-primary.bg-white {
  background-color: white;
  color: var(--apple-gray-900);
}

.btn-primary.bg-white:hover {
  background-color: var(--apple-gray-100);
}

.btn-secondary.border-white {
  border-color: white;
  color: white;
}

.btn-secondary.border-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* ===================================
   APPLE-STYLE CAROUSEL (MAIN)
   =================================== */

/* Legacy carousel dot styles removed - now using Apple-style dots */

/* Carousel Arrow Buttons */
.carousel-arrow {
  width: 56px;
  height: 56px;
  backdrop-filter: blur(var(--glass-blur-strong));
  -webkit-backdrop-filter: blur(var(--glass-blur-strong));
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
  color: var(--apple-gray-800);
  box-shadow: var(--glass-shadow-strong);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.carousel-arrow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border-strong), transparent);
  opacity: 0.6;
  border-radius: 50%;
}

.carousel-arrow:hover {
  background: var(--glass-bg-strong);
  border-color: var(--glass-border-strong);
  transform: scale(1.05);
  box-shadow: var(--glass-shadow-strong);
}

/* Add shimmer effect to carousel arrows */
.carousel-arrow::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  border-radius: 50%;
}

.carousel-arrow:hover::after {
  left: 100%;
  opacity: 1;
  animation: glassShimmer 1.5s ease-in-out;
}

.carousel-arrow:active {
  transform: scale(0.95);
}

/* Arrow positioning handled by flexbox layout now */

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  z-index: 2;
  position: relative;
}

/* Hide arrows when at edges */
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-arrow:disabled:hover {
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Cursor Styles */
.cursor-grab {
  cursor: grab;
}

.cursor-grab:active,
.active\:cursor-grabbing:active {
  cursor: grabbing;
}

/* Responsive Design */
@media (max-width: 768px) {
  .services-carousel-container {
    margin: 0 -1rem;
    padding: 0;
  }
  
  .services-track {
    padding: 0.5rem 1rem 1rem 1rem;
    gap: 1rem;
    /* Add padding for iOS safe areas */
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }
  
  .service-carousel-card {
    flex: 0 0 280px;
  }
  
  /* Smaller arrows on mobile */
  .carousel-arrow {
    width: 48px;
    height: 48px;
  }
  
  .carousel-arrow-left {
    left: 5px;
  }
  
  .carousel-arrow-right {
    right: 5px;
  }
  
  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .services-carousel-container {
    padding: 0 3rem;
  }
  
  /* Ensure touch targets are at least 44px for accessibility */
  .carousel-dot {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carousel-dot::after {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background-color: inherit;
    border-radius: 50%;
  }
  
  .carousel-dot.active::after {
    width: 1.5rem;
    border-radius: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .services-track {
    padding: 0.5rem 2rem 1rem 2rem;
  }
}

/* ===================================
   CATALOGUE PAGE HORIZONTAL CARDS
   =================================== */

/* Horizontal service cards layout */
.service-card.flex {
  min-height: 240px;
}

.service-card.flex .w-2\/5 {
  min-height: 240px;
}

/* Responsive behavior for horizontal cards */
@media (max-width: 768px) {
  .service-card.flex {
    flex-direction: column;
    min-height: auto;
  }
  
  .service-card.flex .w-2\/5 {
    width: 100% !important;
    min-height: 200px;
  }
  
  .service-card.flex .w-3\/5 {
    width: 100% !important;
  }
  
  .service-card.flex .w-3\/5 h3 {
    font-size: 1.5rem !important;
  }
  
  .service-card.flex .w-3\/5 p {
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .service-card.flex .w-2\/5 {
    min-height: 180px;
  }
  
  .service-card.flex .w-3\/5 {
    padding: 1.5rem !important;
  }
}

/* ===================================
   APPLE-STYLE CAROUSEL
   =================================== */

/* Apple Carousel Container */
.apple-carousel-viewport {
  position: relative;
  width: 100%;
  max-width: 1400px; /* Wider to accommodate multiple Apple-sized cards */
  margin: 0 auto;
  touch-action: pan-y pinch-zoom; /* Allow vertical scrolling but handle horizontal swipes */
  overscroll-behavior: none; /* Prevent all overscroll behaviors including browser navigation */
  padding: 0 2rem; /* Add padding for better card visibility */
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: grab; /* Show that it's draggable */
  transition: cursor 0.2s ease;
}

.apple-carousel-viewport:active {
  cursor: grabbing;
}

.apple-carousel-track {
  will-change: transform;
  width: max-content; /* Allow track to be wider than viewport */
}

.apple-carousel-card {
  position: relative;
  overflow: hidden;
  min-width: 0; /* Prevent flex items from overflowing */
  width: 360px; /* Fixed Apple-style width */
  flex-shrink: 0;
}

/* Apple Carousel Card Text Effects */
.apple-carousel-card .card-text-content {
  /* Container is always visible */
}

.apple-carousel-card .card-title {
  /* Titles are always visible */
  opacity: 1;
  transform: translateY(0);
}

.apple-carousel-card .card-description {
  /* Descriptions are always visible */
  opacity: 1;
  transform: translateY(0);
}

/* Text theme modifiers */
.card-text-light {
  color: white;
}

.card-text-light h3 {
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.card-text-light p {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.card-text-dark {
  color: #1f2937;
}

.card-text-dark h3 {
  color: #111827;
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
}

.card-text-dark p {
  color: #374151;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Adaptive Glass Navigation Controls */
.glass-nav-control {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  
  /* Default: Light background (dark controls) */
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* Glass Navigation Button States */
.glass-nav-control:disabled,
.glass-nav-control.disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  transform: none !important;
}

.glass-nav-control:disabled:hover,
.glass-nav-control.disabled:hover {
  background: rgba(0, 0, 0, 0.25) !important;
  transform: none !important;
  scale: 1 !important;
}

/* Glass Style for Light Backgrounds - High Contrast */
.glass-light-bg {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}

.glass-light-bg:hover {
  background: rgba(255, 255, 255, 0.85) !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(0, 0, 0, 0.1),
    0 3px 10px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08) !important;
  transform: translateY(-2px) scale(1.02);
}

.glass-light-bg svg {
  color: rgba(0, 0, 0, 0.7) !important;
}

.glass-light-bg:hover svg {
  color: rgba(0, 0, 0, 0.85) !important;
}

/* ===================================
   UNIFIED GLASS BUTTON SYSTEM
   =================================== */

/* Base Glass Button */
.btn-glass {
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Shimmer Effect for All Glass Buttons */
.btn-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-glass:hover::before {
  left: 100%;
}

/* Glass Button Variants */

/* Light Background Variant */
.btn-glass--light {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: rgba(0, 0, 0, 0.8);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

.btn-glass--light:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    0 6px 20px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

/* Navy Blue Variant */
.btn-glass--navy {
  background: rgba(30, 58, 138, 0.85);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 8px 32px rgba(30, 58, 138, 0.25),
    0 4px 16px rgba(30, 58, 138, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.btn-glass--navy:hover {
  background: rgba(30, 58, 138, 0.95);
  border-color: rgba(59, 130, 246, 0.5);
  color: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(30, 58, 138, 0.35),
    0 6px 20px rgba(30, 58, 138, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* SVG Icon Styles */
.btn-glass svg {
  transition: transform 0.3s ease;
  margin-left: 8px;
}

.btn-glass--light svg {
  color: rgba(0, 0, 0, 0.8);
}

.btn-glass--light:hover svg {
  color: rgba(0, 0, 0, 0.9);
  transform: translateX(2px);
}

.btn-glass--navy svg {
  color: rgba(255, 255, 255, 0.95);
}

.btn-glass--navy:hover svg {
  color: rgba(255, 255, 255, 1);
  transform: translateX(2px);
}

/* Dark background variation (light controls) */
.glass-nav-control.dark-bg {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 16px 64px rgba(0, 0, 0, 0.25),
    0 8px 32px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.glass-nav-control::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-nav-control:hover::before {
  opacity: 1;
}

/* Default hover (light background) */
.glass-nav-control:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(0, 0, 0, 0.3);
  box-shadow: 
    0 24px 80px rgba(0, 0, 0, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

/* Dark background hover */
.glass-nav-control.dark-bg:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 24px 80px rgba(0, 0, 0, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.glass-nav-control:active {
  transform: translateY(-1px) scale(1.01);
  transition: all 0.15s ease;
}

/* Play/Pause Button */
#carousel-play-pause {
  position: relative;
  overflow: hidden;
}

#carousel-play-pause.playing .play-icon {
  display: none;
}

#carousel-play-pause.playing .pause-icon {
  display: block;
}

/* Dot Indicators */
.carousel-dot-apple {
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

/* Dots for light backgrounds */
.glass-light-bg .carousel-dot-apple.active {
  background: rgba(0, 0, 0, 0.8) !important;
  width: 24px !important; /* Expand to horizontal line */
  height: 8px !important; /* Keep same height */
  border-radius: 4px !important; /* Rounded pill shape */
  transform: none; /* Remove scale effect */
}

.glass-light-bg .carousel-dot-apple:not(.active) {
  background: rgba(0, 0, 0, 0.3);
}

.glass-light-bg .carousel-dot-apple:not(.active):hover {
  background: rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.1);
}

/* Default dots for dark backgrounds */
.carousel-dot-apple.active {
  background: white !important;
  width: 24px !important;
  height: 8px !important;
  border-radius: 4px !important;
  transform: none;
}

.carousel-dot-apple:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

.carousel-dot-apple:not(.active):hover {
  background: rgba(255, 255, 255, 0.7) !important;
  transform: scale(1.1);
}

/* Apple Carousel Controls */
.apple-carousel-controls {
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Enhanced shadow effects for floating */
.shadow-3xl {
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.25),
    0 16px 32px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Card image and video zoom effect */
.apple-carousel-card img,
.apple-carousel-card video {
  will-change: transform;
}

/* Ensure videos have no borders and clean appearance */
.apple-carousel-card video {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
}

/* Text content animations */
.apple-carousel-card h3,
.apple-carousel-card p {
  will-change: transform, opacity;
}

/* Responsive Design for Apple Carousel */
@media (max-width: 768px) {
  .apple-carousel-viewport {
    padding: 0 1rem; /* Smaller padding on tablet */
  }
  
  .apple-carousel-card {
    width: 320px !important; /* Smaller cards on tablet */
  }
  
  .apple-carousel-card .aspect-\[16\/27\] {
    aspect-ratio: 16/27; /* Triple height - 16:9 × 3 = 16:27 */
  }
  
  .apple-carousel-card .card-text-content {
    top: 1.5rem !important;
    left: 1.5rem !important;
    right: 1.5rem !important;
    padding: 0;
  }
  
  .apple-carousel-card h3 {
    font-size: 1.5rem;
  }
  
  .apple-carousel-card p {
    font-size: 0.875rem;
  }
  
  .apple-carousel-controls {
    bottom: 1rem;
    scale: 0.9;
  }
  
  .glass-nav-control {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  
  /* Larger touch targets on mobile */
  #carousel-play-pause {
    width: 3.5rem !important;
    height: 3.5rem !important;
  }
  
  .carousel-dot-apple {
    min-width: 44px !important; /* Minimum touch target */
    min-height: 44px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  
  .carousel-dot-apple::before {
    content: '';
    width: 8px;
    height: 8px;
    background: inherit;
    border-radius: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .carousel-dot-apple.active::before {
    width: 24px;
    height: 8px;
    border-radius: 4px;
  }
}

@media (max-width: 480px) {
  .apple-carousel-viewport {
    padding: 0 0.5rem !important; /* Minimal padding on mobile */
  }
  
  .apple-carousel-card {
    width: 280px !important; /* Apple mobile card size */
  }
  
  .apple-carousel-track {
    gap: 1rem !important; /* Smaller gap on mobile */
  }
  
  .apple-carousel-card .card-text-content {
    top: 1rem !important;
    left: 1rem !important;
    right: 1rem !important;
  }
  
  .apple-carousel-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .apple-carousel-card p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .apple-carousel-controls {
    scale: 0.8;
  }
  
  /* Ensure proper mobile touch targets */
  .carousel-dot-apple {
    min-width: 44px !important;
    min-height: 44px !important;
  }
}

/* Performance optimizations */
.apple-carousel-track,
.apple-carousel-card,
.glass-nav-control {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .apple-carousel-track,
  .apple-carousel-card img,
  .apple-carousel-card .absolute.bottom-0,
  .glass-nav-control {
    transition: none !important;
  }
  
  .apple-carousel-controls {
    animation: none !important;
  }
}

/* ===================================
   APPLE-STYLE HERO SECTION
   =================================== */

/* Hero Section Container */
.apple-hero-section {
  position: relative;
  height: 75vh; /* Reduced from full screen - Apple style */
  min-height: 600px;
  max-height: 800px;
  display: flex;
  align-items: flex-start;
  padding-top: 120px; /* Space for navigation */
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Media Container */
.apple-hero-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: 0 0 40px 40px; /* Apple-style rounded bottom corners */
}

/* Video Styling */
.apple-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%) scale(1.05);
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.4) contrast(1.1);
}

/* Fallback Image */
.apple-hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Subtle Overlay */
.apple-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(30, 41, 59, 0.1) 50%,
    rgba(15, 23, 42, 0.2) 100%
  );
  backdrop-filter: blur(0.5px);
  -webkit-backdrop-filter: blur(0.5px);
}

/* Content Container */
.apple-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 60px;
}

/* Text Container */
.apple-hero-text {
  text-align: center;
  margin-bottom: 48px;
}

/* Title Styling */
.apple-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.02em;
}

/* Accent Color */
.apple-hero-accent {
  background: linear-gradient(135deg, #0ABAB5 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Light Accent Color for better contrast */
.apple-hero-accent-light {
  background: linear-gradient(135deg, #7dd3d8 0%, #64e3ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 20px rgba(125, 211, 216, 0.3);
}

/* Subtitle Styling */
.apple-hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-width: 650px;
  margin: 0 auto;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.3),
    0 8px 16px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Actions Container */
.apple-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* Hero Button Styling */
.apple-hero-btn {
  min-width: 200px;
  justify-content: center;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

/* Base animation classes */
.scroll-fade-up,
.scroll-fade-up-delay,
.scroll-fade-up-delay-2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fallback for users without JavaScript - content is always visible */
.no-js .scroll-fade-up,
.no-js .scroll-fade-up-delay,
.no-js .scroll-fade-up-delay-2,
.no-js .scroll-section {
  opacity: 1 !important;
  transform: none !important;
}

/* Delay variations */
.scroll-fade-up-delay {
  transition-delay: 0.1s;
}

.scroll-fade-up-delay-2 {
  transition-delay: 0.2s;
}

/* Active state when in view */
.scroll-fade-up.animate,
.scroll-fade-up-delay.animate,
.scroll-fade-up-delay-2.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Section scroll animations - more subtle */
.scroll-section {
  /* Don't hide entire sections, let child elements animate */
  opacity: 1;
  transform: none;
}

/* Individual item animations with stagger */
.scroll-fade-up:nth-child(1) { transition-delay: 0s; }
.scroll-fade-up:nth-child(2) { transition-delay: 0.05s; }
.scroll-fade-up:nth-child(3) { transition-delay: 0.1s; }
.scroll-fade-up:nth-child(4) { transition-delay: 0.15s; }
.scroll-fade-up:nth-child(5) { transition-delay: 0.2s; }
.scroll-fade-up:nth-child(6) { transition-delay: 0.25s; }
.scroll-fade-up:nth-child(7) { transition-delay: 0.3s; }
.scroll-fade-up:nth-child(8) { transition-delay: 0.35s; }
.scroll-fade-up:nth-child(9) { transition-delay: 0.4s; }

/* Scale animation for feature cards */
.scroll-fade-up.bg-white {
  transform: translateY(30px) scale(0.98);
}

.scroll-fade-up.bg-white.animate {
  transform: translateY(0) scale(1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (min-width: 640px) {
  .apple-hero-actions {
    flex-direction: row;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .apple-hero-section {
    height: 70vh;
    min-height: 500px;
    padding-top: 100px;
  }
  
  .apple-hero-content {
    padding-top: 40px;
  }
  
  .apple-hero-text {
    margin-bottom: 32px;
  }
  
  .apple-hero-media {
    border-radius: 0 0 24px 24px;
  }
}

@media (max-width: 480px) {
  .apple-hero-section {
    height: 65vh;
    min-height: 450px;
    padding-top: 80px;
  }
  
  .apple-hero-content {
    padding-top: 20px;
  }
  
  .apple-hero-btn {
    min-width: 180px;
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Performance optimizations */
.apple-hero-video,
.apple-hero-content {
  will-change: transform;
  backface-visibility: hidden;
  transform3d: translateZ(0);
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .apple-hero-video,
  .scroll-fade-up,
  .scroll-fade-up-delay,
  .scroll-fade-up-delay-2,
  .scroll-section {
    transition: none !important;
    animation: none !important;
  }
  
  .scroll-fade-up,
  .scroll-fade-up-delay,
  .scroll-fade-up-delay-2,
  .scroll-section {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===================================
   APPLE-STYLE PHONES ANIMATION
   =================================== */

/* Phones Animation Container */
.phones-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
}

/* Base Phone Styling */
.phone {
  position: absolute;
  width: 180px;
  height: 360px;
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  border-radius: 30px;
  border: 3px solid #333;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform-style: preserve-3d;
  animation: phoneFloat 6s ease-in-out infinite;
}

/* Phone Screen */
.phone-screen {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* App Grid */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  padding: 20px;
}

/* App Icons */
.app-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  animation: appPulse 3s ease-in-out infinite;
}

/* App Icon Colors */
.app-icon-1 { background: linear-gradient(135deg, #FF6B6B, #FF8E8E); animation-delay: 0s; }
.app-icon-2 { background: linear-gradient(135deg, #4ECDC4, #44A08D); animation-delay: 0.2s; }
.app-icon-3 { background: linear-gradient(135deg, #45B7D1, #96C7ED); animation-delay: 0.4s; }
.app-icon-4 { background: linear-gradient(135deg, #FFA07A, #FFB347); animation-delay: 0.6s; }
.app-icon-5 { background: linear-gradient(135deg, #98D8C8, #06B6D4); animation-delay: 0.1s; }
.app-icon-6 { background: linear-gradient(135deg, #F7DC6F, #F4D03F); animation-delay: 0.3s; }
.app-icon-7 { background: linear-gradient(135deg, #BB8FCE, #8E44AD); animation-delay: 0.5s; }
.app-icon-8 { background: linear-gradient(135deg, #85C1E9, #3498DB); animation-delay: 0.7s; }
.app-icon-9 { background: linear-gradient(135deg, #82E0AA, #27AE60); animation-delay: 0.2s; }
.app-icon-10 { background: linear-gradient(135deg, #F8C471, #E67E22); animation-delay: 0.4s; }
.app-icon-11 { background: linear-gradient(135deg, #F1948A, #E74C3C); animation-delay: 0.6s; }
.app-icon-12 { background: linear-gradient(135deg, #D7DBDD, #BDC3C7); animation-delay: 0.8s; }
.app-icon-13 { background: linear-gradient(135deg, #A569BD, #9B59B6); animation-delay: 0.1s; }
.app-icon-14 { background: linear-gradient(135deg, #5DADE2, #2980B9); animation-delay: 0.3s; }
.app-icon-15 { background: linear-gradient(135deg, #58D68D, #229954); animation-delay: 0.5s; }
.app-icon-16 { background: linear-gradient(135deg, #F7DC6F, #F39C12); animation-delay: 0.7s; }
.app-icon-17 { background: linear-gradient(135deg, #EC7063, #C0392B); animation-delay: 0.2s; }
.app-icon-18 { background: linear-gradient(135deg, #76D7C4, #148F77); animation-delay: 0.4s; }
.app-icon-19 { background: linear-gradient(135deg, #AED6F1, #2471A3); animation-delay: 0.6s; }
.app-icon-20 { background: linear-gradient(135deg, #D5A6BD, #922B21); animation-delay: 0.8s; }

/* Phone Positioning */
.phone-1 {
  z-index: 5;
  transform: translateX(0) rotateY(0deg);
  animation-delay: 0s;
}

.phone-2 {
  z-index: 4;
  transform: translateX(-120px) rotateY(15deg);
  animation-delay: 0.5s;
}

.phone-3 {
  z-index: 4;
  transform: translateX(120px) rotateY(-15deg);
  animation-delay: 1s;
}

.phone-4 {
  z-index: 3;
  transform: translateX(-240px) rotateY(30deg) scale(0.95);
  opacity: 0.9;
  animation-delay: 1.5s;
}

.phone-5 {
  z-index: 3;
  transform: translateX(240px) rotateY(-30deg) scale(0.95);
  opacity: 0.9;
  animation-delay: 2s;
}

/* Phone Float Animation */
@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0) rotateY(var(--rotation, 0deg)) scale(var(--scale, 1));
  }
  50% {
    transform: translateY(-20px) rotateY(var(--rotation, 0deg)) scale(var(--scale, 1));
  }
}

/* App Pulse Animation */
@keyframes appPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Responsive Design for Phones Animation */
@media (max-width: 768px) {
  .phone {
    width: 120px;
    height: 240px;
  }
  
  .phone-screen {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  
  .app-grid {
    gap: 8px;
    padding: 15px;
  }
  
  .app-icon {
    width: 30px;
    height: 30px;
  }
  
  .phone-2 {
    transform: translateX(-80px) rotateY(15deg);
  }
  
  .phone-3 {
    transform: translateX(80px) rotateY(-15deg);
  }
  
  .phone-4 {
    transform: translateX(-160px) rotateY(25deg) scale(0.9);
  }
  
  .phone-5 {
    transform: translateX(160px) rotateY(-25deg) scale(0.9);
  }
}

@media (max-width: 480px) {
  .phone {
    width: 100px;
    height: 200px;
  }
  
  .phone-2 {
    transform: translateX(-60px) rotateY(20deg);
  }
  
  .phone-3 {
    transform: translateX(60px) rotateY(-20deg);
  }
  
  .phone-4 {
    transform: translateX(-120px) rotateY(30deg) scale(0.8);
  }
  
  .phone-5 {
    transform: translateX(120px) rotateY(-30deg) scale(0.8);
  }
  
  .app-icon {
    width: 25px;
    height: 25px;
  }
  
  .app-grid {
    gap: 6px;
    padding: 10px;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .phone,
  .app-icon {
    animation: none !important;
  }
  
  .phone {
    transform: translateY(0) rotateY(var(--rotation, 0deg)) scale(var(--scale, 1));
  }
}

/* ===================================
   AI CELL ANIMATION STYLES
   =================================== */

/* Team member animations */
.team-member {
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-member:hover {
    filter: brightness(1.1);
}

.team-member.transforming {
    animation: pulseTransform 1.5s ease-in-out;
}

@keyframes pulseTransform {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
    }
    75% {
        opacity: 0.9;
    }
}

/* AI Glow Effect */
.ai-glow {
    filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.7));
    animation: aiGlowPulse 2s ease-in-out infinite;
}

@keyframes aiGlowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.7));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(249, 115, 22, 1));
    }
}

/* Connection line animations */
.connecting-line {
    fill: none;
    transition: all 0.8s ease-in-out;
    opacity: 1;
}

.connecting-line.agile-active {
    stroke: #3b82f6;
    stroke-width: 4;
}

.connecting-line.ai-active {
    stroke: #f97316;
    stroke-width: 4;
    stroke-dasharray: 8, 4;
    animation: dashAnimation 1.5s linear infinite;
}

@keyframes dashAnimation {
    to {
        stroke-dashoffset: -12;
    }
}

/* Particle effects */
.particle {
    pointer-events: none;
}

/* Center circle transitions */
#centerGroup circle {
    transition: all 0.8s ease-in-out;
}

#centerGroup text {
    transition: all 0.5s ease-in-out;
}

/* Button styles specific to AI Cell */
.ai-cell-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-cell-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ai-cell-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive adjustments for animation */
@media (max-width: 768px) {
    #animationContainer {
        height: 400px !important;
    }
    
    .team-member text {
        font-size: 10px;
    }
    
    .team-member circle {
        r: 40;
    }
}

/* Animation container styling */
#animationContainer {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

#animationContainer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

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

/* SVG specific styles */
#teamDiagram {
    position: relative;
    z-index: 1;
}

/* Text selection prevention for better UX */
#teamDiagram text {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Tooltip styles (optional) */
.team-member-tooltip {
    position: absolute;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.team-member-tooltip.show {
    opacity: 1;
}

/* Loading animation (if needed) */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Data flow animation for Nova Cell */
@keyframes dataFlow {
    0%, 100% {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }
    50% {
        stroke-dashoffset: -16;
        opacity: 1;
    }
}

.data-flow-line {
    animation: dataFlow 2s ease-in-out infinite;
}

/* Mobile toggle enhancements */
#mobileToggle:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

#mobileToggle:active {
    transform: scale(0.98);
}

/* Progress ring animation */
.duration-8000 {
    transition-duration: 8s;
}

/* ===================================
   ACCESSIBILITY IMPROVEMENTS
   =================================== */

/* Responsive SVG text sizing - be specific to avoid affecting icons */
#teamDiagram .center-text {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
}

#teamDiagram .hub-label {
    font-size: clamp(0.8rem, 3vw, 1rem);
}

#teamDiagram .hub-icon {
    font-size: clamp(1.5rem, 5vw, 2rem);
}

#teamDiagram .team-role-text {
    font-size: clamp(0.75rem, 2.5vw, 1rem);
}

/* Smaller text for longer role names to prevent border touching */
#teamDiagram .team-role-text.long-text {
    font-size: clamp(0.65rem, 2.2vw, 0.9rem);
}

/* Team member icons should remain large */
#teamDiagram .team-icon {
    font-size: clamp(2rem, 6vw, 2.5rem);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    #teamDiagram * {
        animation: none !important;
        transition: none !important;
    }
    
    #teamDiagram animate {
        display: none;
    }
    
    .team-member.transforming {
        animation: none !important;
    }
    
    .ai-glow {
        animation: none !important;
    }
    
    #novaCellHub circle {
        animation: none !important;
    }
    
    /* Provide instant state changes for reduced motion users */
    .team-member {
        transition: opacity 0.1s ease !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    #teamDiagram text {
        font-weight: bold;
        stroke: rgba(0, 0, 0, 0.3);
        stroke-width: 0.5px;
    }
    
    .connecting-line {
        stroke-width: 4px !important;
    }
    
    .team-member circle {
        stroke-width: 6px !important;
    }
}

/* Focus indicators for keyboard navigation */
#mobileToggle:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

#mobileToggle:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}

/* Nova Cell hub - animations handled by SVG */

/* Enhanced toggle slider effect */
#toggleSlider {
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Improved hover states for better UX */
.team-member {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===================================
   AI CELL PAGE DARK THEME STYLES
   =================================== */

/* Dark theme overrides */
.dark-theme {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* Transparent dark navigation */
.dark-nav {
    background: rgba(15, 15, 35, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Scroll offset for fixed navigation */
html {
    scroll-padding-top: 70px;
}

/* Dark glass cards */
.dark-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dark-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Dark hero section */
.dark-hero {
    background: radial-gradient(circle at center, rgba(220, 38, 127, 0.1) 0%, rgba(15, 15, 35, 0.9) 70%);
    position: relative;
    overflow: hidden;
}

.dark-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') center/cover;
    opacity: 0.1;
    z-index: 0;
}

/* White logo filter */
.logo-white-filter {
    filter: brightness(0) invert(1);
}

/* Dark carousel animation */
.dark-customers-carousel {
    background: transparent;
    border-radius: 12px;
    padding: 2rem 0;
}

/* Dark footer */
.dark-footer {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Override footer link styles */
.dark-footer a {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.dark-footer h3 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer address {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer .text-dark-primary {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Text colors for dark theme */
.text-dark-primary { color: rgba(255, 255, 255, 0.95); }
.text-dark-secondary { color: rgba(255, 255, 255, 0.7); }
.text-dark-tertiary { color: rgba(255, 255, 255, 0.5); }
.text-dark-muted { color: rgba(255, 255, 255, 0.85); }

/* Dark navigation hover effects */
.dark-nav a.text-dark-secondary {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
  overflow: hidden;
}

.dark-nav a.text-dark-secondary:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Dark gradient text */
.dark-gradient-text {
    background: linear-gradient(135deg, #dc2677 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Dark buttons */
.btn-dark-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-dark-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
}

.btn-dark-accent {
    background: linear-gradient(135deg, #dc2677 0%, #f59e0b 100%);
    border: 1px solid rgba(220, 38, 119, 0.3);
    color: white;
}

.btn-dark-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 119, 0.3);
}

/* AI Enhancement specific styles */
.ai-badge {
    background: linear-gradient(135deg, #dc2677 0%, #f59e0b 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    display: inline-block;
    margin-bottom: 1rem;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.profile-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.profile-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   FIN DEL ARCHIVO CSS
   =================================== */
/* Mobile video optimizations */
@media (max-width: 768px) {
    /* Always show fallback image on mobile */
    .is-mobile .apple-hero-fallback {
        display: block \!important;
    }
    
    /* Hide all videos on mobile */
    .is-mobile video {
        display: none \!important;
    }
    
    /* Ensure hero section works without video */
    .is-mobile .apple-hero-media {
        background: #000;
    }
    
    /* Adjust hero overlay for static image */
    .is-mobile .apple-hero-overlay {
        background: linear-gradient(to bottom, 
            rgba(0,0,0,0.4) 0%, 
            rgba(0,0,0,0.5) 50%, 
            rgba(0,0,0,0.6) 100%);
    }
}

/* Force hide videos on mobile devices */
@media (hover: none) and (pointer: coarse) {
    video {
        display: none \!important;
    }
    
    .apple-hero-fallback,
    video + img {
        display: block \!important;
    }
}

/* ===================================
   DARK-THEME.CSS - Dark Theme Styles and Navigation
   Nova Website - Premium Apple-inspired Design
   =================================== */

/* ===================================
   DARK THEME BASE
   =================================== */
.dark-theme {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    min-height: 100vh;
}

/* ===================================
   DARK NAVIGATION
   =================================== */
/* Transparent dark navigation */
.dark-nav {
    background: rgba(15, 15, 35, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

/* Darker background on scroll */
.dark-nav.scrolled {
    background: rgba(15, 15, 35, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Override common.css navigation styles for dark theme */
.dark-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    background: transparent !important;
    border: none !important;
    position: relative !important;
    padding: 8px 16px !important;
    transition: all 0.3s ease !important;
}

.dark-nav .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transform: translateY(-1px) !important;
}

/* Red underline animation */
.dark-nav .nav-link::after {
    content: '' !important;
    position: absolute !important;
    width: 0 !important;
    height: 2px !important;
    bottom: 2px !important;
    left: 50% !important;
    background-color: #dc2626 !important; /* Machina red */
    transition: all 0.3s ease !important;
    transform: translateX(-50%) !important;
}

.dark-nav .nav-link:hover::after {
    width: calc(100% - 32px) !important;
}

/* Remove the blue shimmer effect */
.dark-nav .nav-link::before {
    display: none !important;
}

/* Mobile menu styles */
.mobile-menu a {
    position: relative !important;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease !important;
}

.mobile-menu a:hover {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Mobile menu button */
#mobile-menu-btn {
    color: rgba(255, 255, 255, 0.9) !important;
}

#mobile-menu-btn:hover {
    color: rgba(255, 255, 255, 1) !important;
}

#mobile-menu-btn svg {
    stroke: currentColor !important;
}

.mobile-menu a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 2px !important;
    background-color: #dc2626 !important; /* Machina red */
    transition: left 0.3s ease !important;
}

.mobile-menu a:hover::after {
    left: 0 !important;
}

/* ===================================
   BRAND BADGES
   =================================== */
/* Brand Badges Container - Folder Tab Style */
.brand-badges-container {
    position: fixed;
    top: 64px; /* Height of navbar */
    left: 50%;
    transform: translateX(-50%);
    z-index: 30; /* Below navbar */
    display: flex;
    gap: 1rem;
    pointer-events: none;
}

.brand-badges-container > * {
    pointer-events: auto;
}

/* Brand Badges - Folder Tab Design */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    /* Folder tab shape */
    border-radius: 0 0 12px 12px;
    margin-top: -1px; /* Connect to header */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.brand-badge:hover {
    transform: translateY(2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Machina Badge */
.brand-badge-machina {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: white;
    border: 1px solid rgba(220, 38, 38, 0.4);
    border-top: none;
}

/* Prototype Badge */
.brand-badge-prototype {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #1f2937;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-top: none;
}

/* Precision Badge */
.brand-badge-precision {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    border: 1px solid rgba(5, 150, 105, 0.4);
    border-top: none;
}

/* ===================================
   REVERSE BRAND BADGES
   =================================== */
/* Reverse Brand Badges - Bottom Right Corner, Upside Down Tab */
.reverse-brand-badge {
    position: absolute;
    bottom: -1px;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 16px 16px 0 0;
    box-shadow: 
        0 -4px 20px rgba(0, 0, 0, 0.15),
        0 -2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10;
    letter-spacing: 0.025em;
}


/* Reverse Machina Badge */
.reverse-brand-badge-machina {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reverse-brand-badge-machina::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

/* Reverse Prototype Badge */
.reverse-brand-badge-prototype {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fcd34d 100%);
    color: #1f2937;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.reverse-brand-badge-prototype::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

/* Reverse Precision Badge */
.reverse-brand-badge-precision {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.reverse-brand-badge-precision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

/* Reverse Badge Label */
.reverse-brand-badge-label {
    font-size: 1rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Reverse Badge Logo */
.reverse-brand-badge-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.reverse-brand-badge-prototype .reverse-brand-badge-logo {
    filter: none; /* Dark logo for yellow background */
}

/* Badge Label */
.brand-badge-label {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Badge Logo */
.brand-badge-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    flex-shrink: 0;
}

.brand-badge-prototype .brand-badge-logo {
    filter: none; /* Dark logo for yellow background */
}

/* Subtle bottom highlight */
.brand-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-badge:hover::after {
    opacity: 1;
}

/* Single badge aligned to the right of content area */
.brand-badge-single {
    position: fixed;
    top: 64px;
    right: calc(50vw - 672px + 2rem); /* 672px = half of max-w-7xl (1344px) + padding */
    z-index: 30;
}

/* Fallback for smaller screens - align to page edge */
@media (max-width: 1408px) {
    .brand-badge-single {
        right: 2rem;
    }
}

/* Remove extra padding from body */
body.with-brand-badges {
    padding-top: 0;
}

/* Adjust hero section to accommodate badges */
.dark-hero {
    padding-top: 4rem; /* Space for badges */
}

/* Mobile responsive styles */
@media (max-width: 640px) {
    .brand-badges-container {
        gap: 0.5rem;
    }

    .brand-badge {
        padding: 0.5rem 1rem;
        gap: 0.5rem;
        font-size: 0.75rem;
    }

    .brand-badge-logo {
        height: 20px;
    }

    .dark-hero {
        padding-top: 3rem;
    }
    
    .brand-badge-single {
        right: 1rem;
    }
}

/* ===================================
   DARK THEME ELEMENTS
   =================================== */
/* Dark glass cards */
.dark-glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.dark-glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

/* Dark hero section with animated gradient background */
.dark-hero {
    position: relative;
    overflow: hidden;
    background: #0f0f23; /* Fallback color */
}

/* Animated gradient background */
.dark-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        #0f0f23,
        #1a1a2e,
        #16213e,
        #0071CE,
        #dc2626,
        #16213e,
        #1a1a2e,
        #0f0f23
    );
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.8;
    z-index: 0;
}

/* Additional animated gradient layer for depth */
.dark-hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        transparent 0%,
        rgba(220, 38, 127, 0.2) 40%,
        rgba(0, 113, 206, 0.2) 60%,
        transparent 100%
    );
    animation: gradientRotate 20s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

/* Gradient animation keyframes */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* White logo filter */
.logo-white-filter {
    filter: brightness(0) invert(1);
}

/* Dark carousel animation */
.dark-customers-carousel {
    background: transparent;
    border-radius: 12px;
    padding: 2rem 0;
}

/* Dark footer */
.dark-footer {
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Override footer link styles */
.dark-footer a {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer a:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.dark-footer h3 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer address {
    color: rgba(255, 255, 255, 0.95) !important;
}

.dark-footer .text-dark-primary {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Text colors for dark theme */
.text-dark-primary { color: rgba(255, 255, 255, 0.95); }
.text-dark-secondary { color: rgba(255, 255, 255, 0.7); }
.text-dark-tertiary { color: rgba(255, 255, 255, 0.5); }

/* Dark gradient text */
.dark-gradient-text {
    background: linear-gradient(135deg, #dc2677 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Dark buttons */
.btn-dark-glass {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-dark-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
}

.btn-dark-accent {
    background: linear-gradient(135deg, #dc2677 0%, #f59e0b 100%);
    border: 1px solid rgba(220, 38, 119, 0.3);
    color: white;
}

.btn-dark-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 119, 0.3);
}
/* Tailwind CSS layers */
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #D1D1D6; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, SF Pro Text, Helvetica Neue, Helvetica, Arial, sans-serif; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #AEAEB2; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #AEAEB2; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
}
@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}
/* Button components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tw-bg-opacity: 1;
  background-color: rgb(0 122 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.btn-primary {
    background-color: rgb(0 122 255 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.btn-primary:hover {
  --tw-bg-opacity: 0.9;
}
.btn-primary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(0 122 255 / var(--tw-ring-opacity, 1));
  --tw-ring-offset-width: 2px;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-weight: 500;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 234 / 1);
  --tw-text-opacity: 1;
  color: rgb(28 28 30 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.btn-secondary {
    background-color: rgb(229 229 234 / var(--tw-bg-opacity, 1));
    color: rgb(28 28 30 / var(--tw-text-opacity, 1));
  }
}
.btn-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 209 214 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.btn-secondary:hover {
    background-color: rgb(209 209 214 / var(--tw-bg-opacity, 1));
  }
}
.btn-secondary:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(142 142 147 / var(--tw-ring-opacity, 1));
  --tw-ring-offset-width: 2px;
}
/* Card components */
.card {
  border-radius: 1rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 1.5rem;
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@supports (color: rgb(0 0 0 / 0)) {
.card {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.card:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
/* Section components */
/* Typography components */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.inset-0 {
  inset: 0px;
}
.inset-2 {
  inset: 0.5rem;
}
.-right-8 {
  right: -2rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-12 {
  top: -3rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-8 {
  bottom: 2rem;
}
.left-0 {
  left: 0px;
}
.left-1 {
  left: 0.25rem;
}
.left-1\/2 {
  left: 50%;
}
.left-1\/4 {
  left: 25%;
}
.left-2\/4 {
  left: 50%;
}
.left-3\/4 {
  left: 75%;
}
.left-4 {
  left: 1rem;
}
.left-8 {
  left: 2rem;
}
.left-full {
  left: 100%;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.right-8 {
  right: 2rem;
}
.top-0 {
  top: 0px;
}
.top-1 {
  top: 0.25rem;
}
.top-1\/2 {
  top: 50%;
}
.top-10 {
  top: 2.5rem;
}
.top-4 {
  top: 1rem;
}
.top-8 {
  top: 2rem;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.-mt-0\.5 {
  margin-top: -0.125rem;
}
.-mt-1 {
  margin-top: -0.25rem;
}
.-mt-2 {
  margin-top: -0.5rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-0\.5 {
  margin-left: 0.125rem;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-20 {
  margin-left: 5rem;
}
.ml-4 {
  margin-left: 1rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-\[16\/27\] {
  aspect-ratio: 16/27;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-32 {
  height: 8rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-60 {
  height: 15rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[600px\] {
  height: 600px;
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.max-h-24 {
  max-height: 6rem;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1\/2 {
  width: 50%;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-2\/5 {
  width: 40%;
}
.w-20 {
  width: 5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\/5 {
  width: 60%;
}
.w-4 {
  width: 1rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-none {
  max-width: none;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink {
  flex-shrink: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow {
  flex-grow: 1;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(-50%, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-4 {
  --tw-translate-x: 1rem;
  transform: translate(1rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90 {
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {
  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.resize {
  resize: both;
}
.list-disc {
  list-style-type: disc;
}
.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));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.items-baseline {
  align-items: baseline;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * 0);
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - 0));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * 0);
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - 0));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * 0);
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - 0));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * 0);
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - 0));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * 0);
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - 0));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - 0));
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * 0);
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - 0));
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * 0);
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - 0));
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * 0);
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - 0));
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * 0);
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - 0));
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * 0);
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - 0));
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * 0);
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - 0));
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * 0);
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-white\/10 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgb(255 255 255 / 0.1);
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.scroll-smooth {
  scroll-behavior: smooth;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-b-2xl {
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-x-2 {
  border-left-width: 2px;
  border-right-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-l-4 {
  border-left-width: 4px;
}
.border-t {
  border-top-width: 1px;
}
.border-dashed {
  border-style: dashed;
}
.border-blue-200 {
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-blue-200 {
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }
}
.border-blue-300 {
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-blue-300 {
    border-color: rgb(147 197 253 / var(--tw-border-opacity, 1));
  }
}
.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-blue-400 {
    border-color: rgb(96 165 250 / var(--tw-border-opacity, 1));
  }
}
.border-blue-400\/20 {
  border-color: rgb(96 165 250 / 0.2);
}
.border-blue-400\/30 {
  border-color: rgb(96 165 250 / 0.3);
}
.border-blue-500 {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-blue-500 {
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }
}
.border-blue-500\/20 {
  border-color: rgb(59 130 246 / 0.2);
}
.border-blue-500\/30 {
  border-color: rgb(59 130 246 / 0.3);
}
.border-blue-600 {
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-blue-600 {
    border-color: rgb(37 99 235 / var(--tw-border-opacity, 1));
  }
}
.border-cyan-100 {
  --tw-border-opacity: 1;
  border-color: rgb(207 250 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-cyan-100 {
    border-color: rgb(207 250 254 / var(--tw-border-opacity, 1));
  }
}
.border-cyan-200 {
  --tw-border-opacity: 1;
  border-color: rgb(165 243 252 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-cyan-200 {
    border-color: rgb(165 243 252 / var(--tw-border-opacity, 1));
  }
}
.border-cyan-400\/20 {
  border-color: rgb(34 211 238 / 0.2);
}
.border-cyan-400\/30 {
  border-color: rgb(34 211 238 / 0.3);
}
.border-cyan-500\/20 {
  border-color: rgb(6 182 212 / 0.2);
}
.border-emerald-400\/20 {
  border-color: rgb(52 211 153 / 0.2);
}
.border-emerald-400\/30 {
  border-color: rgb(52 211 153 / 0.3);
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 234 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-gray-100 {
    border-color: rgb(229 229 234 / var(--tw-border-opacity, 1));
  }
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(209 209 214 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-gray-200 {
    border-color: rgb(209 209 214 / var(--tw-border-opacity, 1));
  }
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(199 199 204 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-gray-300 {
    border-color: rgb(199 199 204 / var(--tw-border-opacity, 1));
  }
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(99 99 102 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-gray-600 {
    border-color: rgb(99 99 102 / var(--tw-border-opacity, 1));
  }
}
.border-green-200 {
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-green-200 {
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }
}
.border-green-300 {
  --tw-border-opacity: 1;
  border-color: rgb(134 239 172 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-green-300 {
    border-color: rgb(134 239 172 / var(--tw-border-opacity, 1));
  }
}
.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-green-400 {
    border-color: rgb(74 222 128 / var(--tw-border-opacity, 1));
  }
}
.border-green-400\/20 {
  border-color: rgb(74 222 128 / 0.2);
}
.border-green-400\/30 {
  border-color: rgb(74 222 128 / 0.3);
}
.border-green-500\/20 {
  border-color: rgb(34 197 94 / 0.2);
}
.border-green-500\/30 {
  border-color: rgb(34 197 94 / 0.3);
}
.border-indigo-500\/20 {
  border-color: rgb(99 102 241 / 0.2);
}
.border-orange-400\/20 {
  border-color: rgb(251 146 60 / 0.2);
}
.border-orange-400\/30 {
  border-color: rgb(251 146 60 / 0.3);
}
.border-orange-500\/20 {
  border-color: rgb(249 115 22 / 0.2);
}
.border-orange-500\/30 {
  border-color: rgb(249 115 22 / 0.3);
}
.border-pink-400\/20 {
  border-color: rgb(244 114 182 / 0.2);
}
.border-pink-400\/30 {
  border-color: rgb(244 114 182 / 0.3);
}
.border-purple-400\/20 {
  border-color: rgb(192 132 252 / 0.2);
}
.border-purple-400\/30 {
  border-color: rgb(192 132 252 / 0.3);
}
.border-purple-500 {
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-purple-500 {
    border-color: rgb(168 85 247 / var(--tw-border-opacity, 1));
  }
}
.border-purple-500\/20 {
  border-color: rgb(168 85 247 / 0.2);
}
.border-red-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-red-200 {
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }
}
.border-red-300 {
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-red-300 {
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }
}
.border-red-400\/20 {
  border-color: rgb(248 113 113 / 0.2);
}
.border-red-400\/30 {
  border-color: rgb(248 113 113 / 0.3);
}
.border-rose-400\/20 {
  border-color: rgb(251 113 133 / 0.2);
}
.border-rose-400\/30 {
  border-color: rgb(251 113 133 / 0.3);
}
.border-teal-400\/20 {
  border-color: rgb(45 212 191 / 0.2);
}
.border-teal-400\/30 {
  border-color: rgb(45 212 191 / 0.3);
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-white {
    border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
  }
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-white\/20 {
  border-color: rgb(255 255 255 / 0.2);
}
.border-yellow-200 {
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-yellow-200 {
    border-color: rgb(254 240 138 / var(--tw-border-opacity, 1));
  }
}
.border-yellow-300 {
  --tw-border-opacity: 1;
  border-color: rgb(253 224 71 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-yellow-300 {
    border-color: rgb(253 224 71 / var(--tw-border-opacity, 1));
  }
}
.border-yellow-400 {
  --tw-border-opacity: 1;
  border-color: rgb(250 204 21 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-yellow-400 {
    border-color: rgb(250 204 21 / var(--tw-border-opacity, 1));
  }
}
.border-yellow-500 {
  --tw-border-opacity: 1;
  border-color: rgb(234 179 8 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.border-yellow-500 {
    border-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }
}
.border-yellow-500\/20 {
  border-color: rgb(234 179 8 / 0.2);
}
.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-blue-100 {
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(191 219 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-blue-200 {
    background-color: rgb(191 219 254 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-blue-50 {
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-blue-500 {
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-blue-600 {
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }
}
.bg-cyan-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(207 250 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-cyan-100 {
    background-color: rgb(207 250 254 / var(--tw-bg-opacity, 1));
  }
}
.bg-cyan-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-cyan-500 {
    background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
  }
}
.bg-cyan-500\/10 {
  background-color: rgb(6 182 212 / 0.1);
}
.bg-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-dark {
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
  }
}
.bg-emerald-500\/10 {
  background-color: rgb(16 185 129 / 0.1);
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 234 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-100 {
    background-color: rgb(229 229 234 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 209 214 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-200 {
    background-color: rgb(209 209 214 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-50 {
    background-color: rgb(242 242 247 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-50\/50 {
  background-color: rgb(242 242 247 / 0.5);
}
.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(142 142 147 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-500 {
    background-color: rgb(142 142 147 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(72 72 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-700 {
    background-color: rgb(72 72 74 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(58 58 60 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-gray-800 {
    background-color: rgb(58 58 60 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-800\/50 {
  background-color: rgb(58 58 60 / 0.5);
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-green-100 {
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-green-50 {
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }
}
.bg-green-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-green-500 {
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }
}
.bg-green-500\/10 {
  background-color: rgb(34 197 94 / 0.1);
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-green-600 {
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
  }
}
.bg-indigo-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-indigo-100 {
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-orange-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-orange-100 {
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }
}
.bg-orange-500\/10 {
  background-color: rgb(249 115 22 / 0.1);
}
.bg-orange-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-orange-600 {
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
  }
}
.bg-pink-500\/10 {
  background-color: rgb(236 72 153 / 0.1);
}
.bg-purple-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-purple-100 {
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-purple-500\/10 {
  background-color: rgb(168 85 247 / 0.1);
}
.bg-purple-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(147 51 234 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-purple-600 {
    background-color: rgb(147 51 234 / var(--tw-bg-opacity, 1));
  }
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-red-100 {
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-red-50 {
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }
}
.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-red-500 {
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }
}
.bg-red-500\/10 {
  background-color: rgb(239 68 68 / 0.1);
}
.bg-rose-500\/10 {
  background-color: rgb(244 63 94 / 0.1);
}
.bg-teal-500\/10 {
  background-color: rgb(20 184 166 / 0.1);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-white {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-yellow-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-yellow-100 {
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }
}
.bg-yellow-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.bg-yellow-50 {
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
  }
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-amber-800\/45 {
  --tw-gradient-from: rgb(146 64 14 / 0.45) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(146 64 14 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black {
  --tw-gradient-from: #000 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-black\/60 {
  --tw-gradient-from: rgb(0 0 0 / 0.6) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-300 {
  --tw-gradient-from: #93c5fd var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(147 197 253 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400 {
  --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-50 {
  --tw-gradient-from: #eff6ff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 246 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500 {
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/10 {
  --tw-gradient-from: rgb(59 130 246 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/20 {
  --tw-gradient-from: rgb(59 130 246 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500\/80 {
  --tw-gradient-from: rgb(59 130 246 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-600 {
  --tw-gradient-from: #2563eb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(37 99 235 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-50 {
  --tw-gradient-from: #ecfeff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 254 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500 {
  --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/10 {
  --tw-gradient-from: rgb(6 182 212 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/80 {
  --tw-gradient-from: rgb(6 182 212 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500\/80 {
  --tw-gradient-from: rgb(16 185 129 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-400 {
  --tw-gradient-from: #AEAEB2 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(174 174 178 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-50 {
  --tw-gradient-from: #F2F2F7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(242 242 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-500 {
  --tw-gradient-from: #8E8E93 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(142 142 147 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900\/50 {
  --tw-gradient-from: rgb(28 28 30 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(28 28 30 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-50 {
  --tw-gradient-from: #f0fdf4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(240 253 244 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500 {
  --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/10 {
  --tw-gradient-from: rgb(34 197 94 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/20 {
  --tw-gradient-from: rgb(34 197 94 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500\/80 {
  --tw-gradient-from: rgb(34 197 94 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500 {
  --tw-gradient-from: #6366f1 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-indigo-500\/10 {
  --tw-gradient-from: rgb(99 102 241 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(99 102 241 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-500 {
  --tw-gradient-from: #f97316 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-500\/10 {
  --tw-gradient-from: rgb(249 115 22 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-500\/20 {
  --tw-gradient-from: rgb(249 115 22 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-orange-500\/80 {
  --tw-gradient-from: rgb(249 115 22 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 115 22 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500 {
  --tw-gradient-from: #ec4899 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/20 {
  --tw-gradient-from: rgb(236 72 153 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-pink-500\/80 {
  --tw-gradient-from: rgb(236 72 153 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(236 72 153 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/10 {
  --tw-gradient-from: rgb(168 85 247 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/80 {
  --tw-gradient-from: rgb(168 85 247 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-900\/20 {
  --tw-gradient-from: rgb(88 28 135 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(88 28 135 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-red-500\/80 {
  --tw-gradient-from: rgb(239 68 68 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(239 68 68 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-rose-500\/80 {
  --tw-gradient-from: rgb(244 63 94 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(244 63 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-800\/50 {
  --tw-gradient-from: rgb(30 41 59 / 0.5) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 41 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-slate-800\/95 {
  --tw-gradient-from: rgb(30 41 59 / 0.95) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 41 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-stone-600\/40 {
  --tw-gradient-from: rgb(87 83 78 / 0.4) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(87 83 78 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-teal-500\/80 {
  --tw-gradient-from: rgb(20 184 166 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(20 184 166 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white {
  --tw-gradient-from: #fff var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/80 {
  --tw-gradient-from: rgb(255 255 255 / 0.8) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-500 {
  --tw-gradient-from: #eab308 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-yellow-500\/10 {
  --tw-gradient-from: rgb(234 179 8 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(234 179 8 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-blue-500 {
  --tw-gradient-to: rgb(59 130 246 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #3b82f6 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-cyan-500 {
  --tw-gradient-to: rgb(6 182 212 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #06b6d4 var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white {
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-amber-700\/25 {
  --tw-gradient-to: rgb(180 83 9 / 0.25) var(--tw-gradient-to-position);
}
.to-black {
  --tw-gradient-to: #000 var(--tw-gradient-to-position);
}
.to-black\/40 {
  --tw-gradient-to: rgb(0 0 0 / 0.4) var(--tw-gradient-to-position);
}
.to-blue-100 {
  --tw-gradient-to: #dbeafe var(--tw-gradient-to-position);
}
.to-blue-500 {
  --tw-gradient-to: #3b82f6 var(--tw-gradient-to-position);
}
.to-blue-500\/10 {
  --tw-gradient-to: rgb(59 130 246 / 0.1) var(--tw-gradient-to-position);
}
.to-blue-600 {
  --tw-gradient-to: #2563eb var(--tw-gradient-to-position);
}
.to-blue-600\/80 {
  --tw-gradient-to: rgb(37 99 235 / 0.8) var(--tw-gradient-to-position);
}
.to-cyan-100 {
  --tw-gradient-to: #cffafe var(--tw-gradient-to-position);
}
.to-cyan-300 {
  --tw-gradient-to: #67e8f9 var(--tw-gradient-to-position);
}
.to-cyan-50 {
  --tw-gradient-to: #ecfeff var(--tw-gradient-to-position);
}
.to-cyan-500 {
  --tw-gradient-to: #06b6d4 var(--tw-gradient-to-position);
}
.to-cyan-600 {
  --tw-gradient-to: #0891b2 var(--tw-gradient-to-position);
}
.to-cyan-600\/80 {
  --tw-gradient-to: rgb(8 145 178 / 0.8) var(--tw-gradient-to-position);
}
.to-emerald-100 {
  --tw-gradient-to: #d1fae5 var(--tw-gradient-to-position);
}
.to-emerald-50 {
  --tw-gradient-to: #ecfdf5 var(--tw-gradient-to-position);
}
.to-emerald-500 {
  --tw-gradient-to: #10b981 var(--tw-gradient-to-position);
}
.to-emerald-500\/10 {
  --tw-gradient-to: rgb(16 185 129 / 0.1) var(--tw-gradient-to-position);
}
.to-emerald-500\/20 {
  --tw-gradient-to: rgb(16 185 129 / 0.2) var(--tw-gradient-to-position);
}
.to-emerald-600\/80 {
  --tw-gradient-to: rgb(5 150 105 / 0.8) var(--tw-gradient-to-position);
}
.to-gray-100 {
  --tw-gradient-to: #E5E5EA var(--tw-gradient-to-position);
}
.to-gray-50 {
  --tw-gradient-to: #F2F2F7 var(--tw-gradient-to-position);
}
.to-gray-500 {
  --tw-gradient-to: #8E8E93 var(--tw-gradient-to-position);
}
.to-gray-600 {
  --tw-gradient-to: #636366 var(--tw-gradient-to-position);
}
.to-green-500 {
  --tw-gradient-to: #22c55e var(--tw-gradient-to-position);
}
.to-green-600 {
  --tw-gradient-to: #16a34a var(--tw-gradient-to-position);
}
.to-green-600\/80 {
  --tw-gradient-to: rgb(22 163 74 / 0.8) var(--tw-gradient-to-position);
}
.to-indigo-500 {
  --tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
}
.to-indigo-500\/10 {
  --tw-gradient-to: rgb(99 102 241 / 0.1) var(--tw-gradient-to-position);
}
.to-indigo-700 {
  --tw-gradient-to: #4338ca var(--tw-gradient-to-position);
}
.to-orange-500 {
  --tw-gradient-to: #f97316 var(--tw-gradient-to-position);
}
.to-orange-500\/10 {
  --tw-gradient-to: rgb(249 115 22 / 0.1) var(--tw-gradient-to-position);
}
.to-orange-500\/20 {
  --tw-gradient-to: rgb(249 115 22 / 0.2) var(--tw-gradient-to-position);
}
.to-orange-600 {
  --tw-gradient-to: #ea580c var(--tw-gradient-to-position);
}
.to-orange-600\/80 {
  --tw-gradient-to: rgb(234 88 12 / 0.8) var(--tw-gradient-to-position);
}
.to-pink-500 {
  --tw-gradient-to: #ec4899 var(--tw-gradient-to-position);
}
.to-pink-500\/10 {
  --tw-gradient-to: rgb(236 72 153 / 0.1) var(--tw-gradient-to-position);
}
.to-pink-600\/80 {
  --tw-gradient-to: rgb(219 39 119 / 0.8) var(--tw-gradient-to-position);
}
.to-pink-900\/20 {
  --tw-gradient-to: rgb(131 24 67 / 0.2) var(--tw-gradient-to-position);
}
.to-purple-500 {
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.to-purple-500\/10 {
  --tw-gradient-to: rgb(168 85 247 / 0.1) var(--tw-gradient-to-position);
}
.to-purple-500\/20 {
  --tw-gradient-to: rgb(168 85 247 / 0.2) var(--tw-gradient-to-position);
}
.to-purple-600 {
  --tw-gradient-to: #9333ea var(--tw-gradient-to-position);
}
.to-purple-600\/80 {
  --tw-gradient-to: rgb(147 51 234 / 0.8) var(--tw-gradient-to-position);
}
.to-purple-900\/30 {
  --tw-gradient-to: rgb(88 28 135 / 0.3) var(--tw-gradient-to-position);
}
.to-red-500 {
  --tw-gradient-to: #ef4444 var(--tw-gradient-to-position);
}
.to-red-500\/10 {
  --tw-gradient-to: rgb(239 68 68 / 0.1) var(--tw-gradient-to-position);
}
.to-red-500\/20 {
  --tw-gradient-to: rgb(239 68 68 / 0.2) var(--tw-gradient-to-position);
}
.to-red-600\/80 {
  --tw-gradient-to: rgb(220 38 38 / 0.8) var(--tw-gradient-to-position);
}
.to-rose-600\/80 {
  --tw-gradient-to: rgb(225 29 72 / 0.8) var(--tw-gradient-to-position);
}
.to-slate-700\/30 {
  --tw-gradient-to: rgb(51 65 85 / 0.3) var(--tw-gradient-to-position);
}
.to-slate-900\/95 {
  --tw-gradient-to: rgb(15 23 42 / 0.95) var(--tw-gradient-to-position);
}
.to-stone-500\/25 {
  --tw-gradient-to: rgb(120 113 108 / 0.25) var(--tw-gradient-to-position);
}
.to-teal-500 {
  --tw-gradient-to: #14b8a6 var(--tw-gradient-to-position);
}
.to-teal-600\/80 {
  --tw-gradient-to: rgb(13 148 136 / 0.8) var(--tw-gradient-to-position);
}
.to-violet-500 {
  --tw-gradient-to: #8b5cf6 var(--tw-gradient-to-position);
}
.to-white {
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.to-white\/60 {
  --tw-gradient-to: rgb(255 255 255 / 0.6) var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.object-center {
  -o-object-position: center;
     object-position: center;
}
.p-1 {
  padding: 0.25rem;
}
.p-10 {
  padding: 2.5rem;
}
.p-12 {
  padding: 3rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.pb-16 {
  padding-bottom: 4rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-6 {
  padding-left: 1.5rem;
}
.pt-2 {
  padding-top: 0.5rem;
}
.pt-24 {
  padding-top: 6rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-60 {
  padding-top: 15rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.font-sans {
  font-family: -apple-system, BlinkMacSystemFont, SF Pro Display, SF Pro Text, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-6xl {
  font-size: 3.75rem;
  line-height: 1;
}
.text-9xl {
  font-size: 8rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-blue-100 {
  --tw-text-opacity: 1;
  color: rgb(219 234 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-100 {
    color: rgb(219 234 254 / var(--tw-text-opacity, 1));
  }
}
.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgb(191 219 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-200 {
    color: rgb(191 219 254 / var(--tw-text-opacity, 1));
  }
}
.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-300 {
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-400 {
    color: rgb(96 165 250 / var(--tw-text-opacity, 1));
  }
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-500 {
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-600 {
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }
}
.text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-700 {
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }
}
.text-blue-800 {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-800 {
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }
}
.text-blue-900 {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-blue-900 {
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }
}
.text-cyan-100 {
  --tw-text-opacity: 1;
  color: rgb(207 250 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-cyan-100 {
    color: rgb(207 250 254 / var(--tw-text-opacity, 1));
  }
}
.text-cyan-200 {
  --tw-text-opacity: 1;
  color: rgb(165 243 252 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-cyan-200 {
    color: rgb(165 243 252 / var(--tw-text-opacity, 1));
  }
}
.text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-cyan-300 {
    color: rgb(103 232 249 / var(--tw-text-opacity, 1));
  }
}
.text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-cyan-400 {
    color: rgb(34 211 238 / var(--tw-text-opacity, 1));
  }
}
.text-cyan-600 {
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-cyan-600 {
    color: rgb(8 145 178 / var(--tw-text-opacity, 1));
  }
}
.text-cyan-700 {
  --tw-text-opacity: 1;
  color: rgb(14 116 144 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-cyan-700 {
    color: rgb(14 116 144 / var(--tw-text-opacity, 1));
  }
}
.text-emerald-100 {
  --tw-text-opacity: 1;
  color: rgb(209 250 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-emerald-100 {
    color: rgb(209 250 229 / var(--tw-text-opacity, 1));
  }
}
.text-emerald-200 {
  --tw-text-opacity: 1;
  color: rgb(167 243 208 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-emerald-200 {
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }
}
.text-emerald-300 {
  --tw-text-opacity: 1;
  color: rgb(110 231 183 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-emerald-300 {
    color: rgb(110 231 183 / var(--tw-text-opacity, 1));
  }
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-emerald-400 {
    color: rgb(52 211 153 / var(--tw-text-opacity, 1));
  }
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(209 209 214 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-200 {
    color: rgb(209 209 214 / var(--tw-text-opacity, 1));
  }
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(199 199 204 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-300 {
    color: rgb(199 199 204 / var(--tw-text-opacity, 1));
  }
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(174 174 178 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-400 {
    color: rgb(174 174 178 / var(--tw-text-opacity, 1));
  }
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(142 142 147 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-500 {
    color: rgb(142 142 147 / var(--tw-text-opacity, 1));
  }
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(99 99 102 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-600 {
    color: rgb(99 99 102 / var(--tw-text-opacity, 1));
  }
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(72 72 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-700 {
    color: rgb(72 72 74 / var(--tw-text-opacity, 1));
  }
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(28 28 30 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-gray-900 {
    color: rgb(28 28 30 / var(--tw-text-opacity, 1));
  }
}
.text-green-100 {
  --tw-text-opacity: 1;
  color: rgb(220 252 231 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-100 {
    color: rgb(220 252 231 / var(--tw-text-opacity, 1));
  }
}
.text-green-200 {
  --tw-text-opacity: 1;
  color: rgb(187 247 208 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-200 {
    color: rgb(187 247 208 / var(--tw-text-opacity, 1));
  }
}
.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-300 {
    color: rgb(134 239 172 / var(--tw-text-opacity, 1));
  }
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-400 {
    color: rgb(74 222 128 / var(--tw-text-opacity, 1));
  }
}
.text-green-500 {
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-500 {
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-600 {
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-700 {
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }
}
.text-green-800 {
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-800 {
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }
}
.text-green-900 {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-green-900 {
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }
}
.text-indigo-300 {
  --tw-text-opacity: 1;
  color: rgb(165 180 252 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-indigo-300 {
    color: rgb(165 180 252 / var(--tw-text-opacity, 1));
  }
}
.text-indigo-600 {
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-indigo-600 {
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }
}
.text-orange-100 {
  --tw-text-opacity: 1;
  color: rgb(255 237 213 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-orange-100 {
    color: rgb(255 237 213 / var(--tw-text-opacity, 1));
  }
}
.text-orange-200 {
  --tw-text-opacity: 1;
  color: rgb(254 215 170 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-orange-200 {
    color: rgb(254 215 170 / var(--tw-text-opacity, 1));
  }
}
.text-orange-300 {
  --tw-text-opacity: 1;
  color: rgb(253 186 116 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-orange-300 {
    color: rgb(253 186 116 / var(--tw-text-opacity, 1));
  }
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-orange-400 {
    color: rgb(251 146 60 / var(--tw-text-opacity, 1));
  }
}
.text-orange-600 {
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-orange-600 {
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }
}
.text-orange-700 {
  --tw-text-opacity: 1;
  color: rgb(194 65 12 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-orange-700 {
    color: rgb(194 65 12 / var(--tw-text-opacity, 1));
  }
}
.text-pink-100 {
  --tw-text-opacity: 1;
  color: rgb(252 231 243 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-pink-100 {
    color: rgb(252 231 243 / var(--tw-text-opacity, 1));
  }
}
.text-pink-200 {
  --tw-text-opacity: 1;
  color: rgb(251 207 232 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-pink-200 {
    color: rgb(251 207 232 / var(--tw-text-opacity, 1));
  }
}
.text-pink-300 {
  --tw-text-opacity: 1;
  color: rgb(249 168 212 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-pink-300 {
    color: rgb(249 168 212 / var(--tw-text-opacity, 1));
  }
}
.text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-pink-400 {
    color: rgb(244 114 182 / var(--tw-text-opacity, 1));
  }
}
.text-pink-600 {
  --tw-text-opacity: 1;
  color: rgb(219 39 119 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-pink-600 {
    color: rgb(219 39 119 / var(--tw-text-opacity, 1));
  }
}
.text-purple-100 {
  --tw-text-opacity: 1;
  color: rgb(243 232 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-100 {
    color: rgb(243 232 255 / var(--tw-text-opacity, 1));
  }
}
.text-purple-200 {
  --tw-text-opacity: 1;
  color: rgb(233 213 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-200 {
    color: rgb(233 213 255 / var(--tw-text-opacity, 1));
  }
}
.text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-300 {
    color: rgb(216 180 254 / var(--tw-text-opacity, 1));
  }
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-400 {
    color: rgb(192 132 252 / var(--tw-text-opacity, 1));
  }
}
.text-purple-500 {
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-500 {
    color: rgb(168 85 247 / var(--tw-text-opacity, 1));
  }
}
.text-purple-600 {
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-600 {
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }
}
.text-purple-700 {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-purple-700 {
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }
}
.text-red-100 {
  --tw-text-opacity: 1;
  color: rgb(254 226 226 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-100 {
    color: rgb(254 226 226 / var(--tw-text-opacity, 1));
  }
}
.text-red-200 {
  --tw-text-opacity: 1;
  color: rgb(254 202 202 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-200 {
    color: rgb(254 202 202 / var(--tw-text-opacity, 1));
  }
}
.text-red-300 {
  --tw-text-opacity: 1;
  color: rgb(252 165 165 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-300 {
    color: rgb(252 165 165 / var(--tw-text-opacity, 1));
  }
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-400 {
    color: rgb(248 113 113 / var(--tw-text-opacity, 1));
  }
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-600 {
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.text-red-700 {
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-700 {
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-800 {
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }
}
.text-red-900 {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-red-900 {
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }
}
.text-rose-100 {
  --tw-text-opacity: 1;
  color: rgb(255 228 230 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-rose-100 {
    color: rgb(255 228 230 / var(--tw-text-opacity, 1));
  }
}
.text-rose-200 {
  --tw-text-opacity: 1;
  color: rgb(254 205 211 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-rose-200 {
    color: rgb(254 205 211 / var(--tw-text-opacity, 1));
  }
}
.text-rose-300 {
  --tw-text-opacity: 1;
  color: rgb(253 164 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-rose-300 {
    color: rgb(253 164 175 / var(--tw-text-opacity, 1));
  }
}
.text-teal-100 {
  --tw-text-opacity: 1;
  color: rgb(204 251 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-teal-100 {
    color: rgb(204 251 241 / var(--tw-text-opacity, 1));
  }
}
.text-teal-200 {
  --tw-text-opacity: 1;
  color: rgb(153 246 228 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-teal-200 {
    color: rgb(153 246 228 / var(--tw-text-opacity, 1));
  }
}
.text-teal-300 {
  --tw-text-opacity: 1;
  color: rgb(94 234 212 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-teal-300 {
    color: rgb(94 234 212 / var(--tw-text-opacity, 1));
  }
}
.text-teal-600 {
  --tw-text-opacity: 1;
  color: rgb(13 148 136 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-teal-600 {
    color: rgb(13 148 136 / var(--tw-text-opacity, 1));
  }
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-white {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.text-white\/60 {
  color: rgb(255 255 255 / 0.6);
}
.text-white\/70 {
  color: rgb(255 255 255 / 0.7);
}
.text-white\/90 {
  color: rgb(255 255 255 / 0.9);
}
.text-white\/95 {
  color: rgb(255 255 255 / 0.95);
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-yellow-400 {
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }
}
.text-yellow-600 {
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-yellow-600 {
    color: rgb(202 138 4 / var(--tw-text-opacity, 1));
  }
}
.text-yellow-700 {
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-yellow-700 {
    color: rgb(161 98 7 / var(--tw-text-opacity, 1));
  }
}
.text-yellow-800 {
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-yellow-800 {
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.text-yellow-900 {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / 1);
}
@supports (color: rgb(0 0 0 / 0)) {
.text-yellow-900 {
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }
}
.underline {
  text-decoration-line: underline;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0 {
  opacity: 0;
}
.opacity-25 {
  opacity: 0.25;
}
.opacity-75 {
  opacity: 0.75;
}
.opacity-90 {
  opacity: 0.9;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgb(0 0 0 / 0.25);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-2 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-green-400 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(74 222 128 / var(--tw-ring-opacity, 1));
}
.ring-opacity-50 {
  --tw-ring-opacity: 0.5;
}
.blur {
  --tw-blur: blur(8px);
  filter: blur(8px) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow {
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) grayscale(100%) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) invert(100%) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  -webkit-backdrop-filter: blur(16px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: blur(16px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: blur(4px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: blur(4px) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter {
  -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-linear {
  transition-timing-function: linear;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
/* Custom text gradient */
/* Smooth scroll behavior */
.scroll-smooth {
    scroll-behavior: smooth;
  }
/* Hide scrollbar but keep functionality */
/* Apple-style blur backgrounds */

/* Import existing styles */

/* Custom Tailwind component classes */

/* Custom Tailwind utilities */

.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.05) scaleY(1.05);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:transform:hover {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:border-gray-300:hover {
  --tw-border-opacity: 1;
  border-color: rgb(199 199 204 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:border-gray-300:hover {
    border-color: rgb(199 199 204 / var(--tw-border-opacity, 1));
  }
}

.hover\:border-white\/30:hover {
  border-color: rgb(255 255 255 / 0.3);
}

.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:bg-blue-50:hover {
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }
}

.hover\:bg-blue-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:bg-blue-700:hover {
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 234 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:bg-gray-100:hover {
    background-color: rgb(229 229 234 / var(--tw-bg-opacity, 1));
  }
}

.hover\:bg-white:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:bg-white:hover {
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}

.hover\:text-blue-300:hover {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-blue-300:hover {
    color: rgb(147 197 253 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-blue-600:hover {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-blue-600:hover {
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-blue-700:hover {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-blue-700:hover {
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-blue-800:hover {
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-blue-800:hover {
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-blue-900:hover {
  --tw-text-opacity: 1;
  color: rgb(30 58 138 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-blue-900:hover {
    color: rgb(30 58 138 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgb(28 28 30 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-gray-900:hover {
    color: rgb(28 28 30 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-green-600:hover {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-green-600:hover {
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-green-900:hover {
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-green-900:hover {
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-pink-700:hover {
  --tw-text-opacity: 1;
  color: rgb(190 24 93 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-pink-700:hover {
    color: rgb(190 24 93 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-purple-700:hover {
  --tw-text-opacity: 1;
  color: rgb(126 34 206 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-purple-700:hover {
    color: rgb(126 34 206 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-red-900:hover {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-red-900:hover {
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-white:hover {
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}

.hover\:text-yellow-900:hover {
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.hover\:text-yellow-900:hover {
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-pink-500\/10:hover {
  --tw-shadow-color: rgb(236 72 153 / 0.1);
  --tw-shadow: var(--tw-shadow-colored);
}

.focus\:text-gray-900:focus {
  --tw-text-opacity: 1;
  color: rgb(28 28 30 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.focus\:text-gray-900:focus {
    color: rgb(28 28 30 / var(--tw-text-opacity, 1));
  }
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.group:hover .group-hover\:translate-x-1 {
  --tw-translate-x: 0.25rem;
  transform: translate(0.25rem, var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:rotate-12 {
  --tw-rotate: 12deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(12deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.05) scaleY(1.05);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1.1) scaleY(1.1);
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:text-blue-700 {
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
}

@supports (color: rgb(0 0 0 / 0)) {
.group:hover .group-hover\:text-blue-700 {
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:flex-row {
    flex-direction: row;
  }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  .sm\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .sm\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .sm\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
}

@media (min-width: 768px) {
  .md\:mt-0 {
    margin-top: 0px;
  }
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:p-12 {
    padding: 3rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .md\:text-\[12rem\] {
    font-size: 12rem;
  }
}

@media (min-width: 1024px) {
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * 0);
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - 0));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }
  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .lg\:p-12 {
    padding: 3rem;
  }
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }
  .lg\:text-7xl {
    font-size: 4.5rem;
    line-height: 1;
  }
  .lg\:text-8xl {
    font-size: 6rem;
    line-height: 1;
  }
}
