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

:root {
    --sun-yellow: #FFD200;
    --eco-green: #10B981; /* Vibrant Emerald */
    --sky-blue: #F0F9FF;
    --electric-blue: #0369A1; /* Deeper Blue */
    --deep-slate: #0F172A;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--sky-blue);
    color: var(--deep-slate);
}

h1, h2, h3, h4, .font-display {
    font-family: 'Outfit', sans-serif;
}

.bg-mesh {
    background-color: #F0F9FF;
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 210, 0, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(3, 105, 161, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(255, 210, 0, 0.05) 0px, transparent 50%);
}

.btn-cta {
    background: linear-gradient(135deg, var(--eco-green), #34D399);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px rgba(16, 185, 129, 0.3);
}

/* Flux Animation */
.flux-line {
    stroke-dasharray: 10;
    animation: flux-move 2s linear infinite;
}

@keyframes flux-move {
    from { stroke-dashoffset: 20; }
    to { stroke-dashoffset: 0; }
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(3, 105, 161, 0.05);
}

.bg-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230369a1' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
    animation: float 8s ease-in-out infinite;
}

.benefit-visual {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}

.benefit-visual.active {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.active-benefit {
    background-color: white !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    transform: translateX(10px);
}

.active-benefit .icon-box {
    background-color: var(--sun-yellow) !important;
    transform: scale(1.1);
}

.active-benefit h3 {
    color: var(--electric-blue) !important;
}

@keyframes reverse-spin {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--sun-yellow);
    border-radius: 50%;
    filter: blur(1px);
}

.p1 { top: 20%; left: 20%; animation: particle-float 3s infinite; }
.p2 { top: 60%; left: 80%; animation: particle-float 4s infinite 1s; }
.p3 { top: 80%; left: 30%; animation: particle-float 5s infinite 2.5s; }

@keyframes particle-float {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    50% { transform: translate(20px, -40px); opacity: 1; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

html {
    scroll-behavior: smooth;
}
