:root {
  --spo-teal: #14b8a6;
  --spo-teal-dark: #0d9488;
  --spo-navy: #0f172a;
  --spo-navy-light: #1e3a8a;
  --spo-slate: #475569;
  --spo-bg: #ffffff;
  --spo-surface: #f8fafc;
  --spo-font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --spo-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Utility for Inter Font */
.spo-high-fidelity {
  font-family: var(--spo-font-sans);
  -webkit-font-smoothing: antialiased;
}

/* Background Blobs Engine */
.spo-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.spo-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}

.spo-blob-1 {
  top: -150px;
  left: -150px;
  background: var(--spo-teal);
}

.spo-blob-2 {
  bottom: -150px;
  right: -150px;
  background: #3b82f6;
}

/* Cinematic Animations */
.spo-fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: spoFadeInUp 0.8s ease-out forwards;
}

@keyframes spoFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glassmorphism Classes for Elementor */
.spo-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.spo-glass-dark {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
