
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --animate-duration: 0.8s;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
}

.nav-gradient {
    background: var(--gradient);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero {
    padding: 120px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    transform: skewY(-3deg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-bottom: 20px;
}

.code-sample {
    background: #1e293b;
    color: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    font-family: 'Fira Code', monospace;
}

.cta-section {
    background: #f8fafc;
    position: relative;
    padding: 100px 0;
}

footer {
    background: #0f172a;
    color: #94a3b8;
}

.btn-custom {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.section-padding {
    padding: 6rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.dynamic-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loading-bar {
    height: 3px;
    background: var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: width 0.3s ease;
    width: 0;
}

.toast {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .hero::after {
        bottom: -30px;
        height: 60px;
    }

    .section-padding {
        padding: 4rem 0;
    }
}

