:root {
    --primary: #8b5cf6;
    --secondary: #06b6d4;
    --accent: #ec4899;
    --dark-bg: #020617;
    --light-bg: #111827;
}

body {
    font-family: "Inter", sans-serif;
    background-color: var(--dark-bg);
    color: #e2e8f0;
    overflow-x: hidden;
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    filter: blur(120px);
    animation: float 25s infinite ease-in-out;
}

.shape1 {
    width: 450px;
    height: 450px;
    top: 5%;
    left: 10%;
    opacity: 0.15;
    animation-duration: 20s;
}

.shape2 {
    width: 350px;
    height: 350px;
    top: 60%;
    left: 75%;
    opacity: 0.1;
    animation-duration: 30s;
    animation-delay: 5s;
}

.shape3 {
    width: 250px;
    height: 250px;
    bottom: 5%;
    left: 40%;
    opacity: 0.08;
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    animation-duration: 25s;
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(40px, -60px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.9);
    }
    75% {
        transform: translate(60px, 30px) scale(1.2);
    }
    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-gradient-bg {
    background: radial-gradient(circle at top center, rgba(139, 92, 246, 0.1), transparent 50%);
    animation: pulse-glow 8s infinite ease-in-out;
}

#hero-animation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#rocket-animation-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.feature-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid #334155;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(139, 92, 246, 0.25), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25), 0 0 15px rgba(6, 182, 212, 0.1);
    border-color: var(--primary);
}

.gradient-text {
    background: linear-gradient(90deg, #a78bfa, #f472b6, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-pan 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-pan {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-button-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    transition: all 0.4s ease;
    background-size: 200% 100%;
}

.cta-button-primary:hover {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    transform: scale(1.05) translateY(-2px);
    background-position: right center;
}

.pricing-card-popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.3), inset 0 0 15px rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}
