@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

@keyframes subtle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes subtle-glow {
    from { box-shadow: 0 0 20px rgba(59, 130, 246, 0.1); }
    to { box-shadow: 0 0 30px rgba(59, 130, 246, 0.2); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: subtle-gradient-shift 8s ease-in-out infinite;
}

@keyframes subtle-gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 231, 235, 0.6);
}

.dark-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.3);
    color: #1F2937;
}

.mesh-gradient {
    background: radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 40%);
}

.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-bg {
    background: linear-gradient(135deg, #fef7ff 0%, #f0f9ff 25%, #ecfdf5 50%, #fef3c7 75%, #fdf2f8 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
            radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 50% 100%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
}

.floating-orbs::before,
.floating-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: subtle-float 12s ease-in-out infinite;
}

.floating-orbs::before {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(99, 102, 241, 0.08));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-orbs::after {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.06));
    bottom: 10%;
    right: 5%;
    animation-delay: 4s;
}

.icon-container {
    transition: all 0.3s ease;
}

.icon-container:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}