
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


* {
    font-family: 'Inter', sans-serif;
}


::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #08090f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #14b8a6 0%, #6366f1 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #2dd4bf 0%, #818cf8 100%);
}


::placeholder {
    color: rgb(219, 219, 219);
    opacity: 1;
}

:-ms-input-placeholder {
    color: rgb(219, 219, 219);
}

::-ms-input-placeholder {
    color: rgb(219, 219, 219);
}


.gradient-glow {
    background: linear-gradient(135deg, #141724 0%, #0d0f17 100%);
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.15);
}


.btn-primary {
    background: #141418;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f4f4f5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: background 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.btn-primary:hover {
    background: #1e1e24;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(20, 184, 166, 0.4);
}


.feature-card {
    background: linear-gradient(135deg, rgba(20, 22, 36, 0.7) 0%, rgba(9, 10, 17, 0.7) 100%);
    border: 1px solid rgba(20, 184, 166, 0.12);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: rgba(20, 184, 166, 0.35);
    background: linear-gradient(135deg, rgba(24, 26, 42, 0.9) 0%, rgba(11, 12, 20, 0.9) 100%);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.08), 0 0 20px rgba(99, 102, 241, 0.03);
    transform: translateY(-5px);
}


.stat-card {
    background: linear-gradient(135deg, rgba(20, 22, 36, 0.5) 0%, rgba(9, 10, 17, 0.5) 100%);
    border: 1px solid rgba(20, 184, 166, 0.08);
    backdrop-filter: blur(12px);
}


.section-title {
    background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(20, 184, 166, 0.15));
}


.step-number {
    background: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
}


.command-card {
    background: linear-gradient(135deg, rgba(20, 22, 36, 0.5) 0%, rgba(9, 10, 17, 0.5) 100%);
    border: 1px solid rgba(20, 184, 166, 0.1);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.command-card:hover {
    border-color: rgba(20, 184, 166, 0.3);
    background: linear-gradient(135deg, rgba(20, 22, 36, 0.75) 0%, rgba(9, 10, 17, 0.75) 100%);
    box-shadow: 0 8px 20px rgba(20, 184, 166, 0.06);
}


.category-badge {
    background: linear-gradient(135deg, #14b8a6 0%, #6366f1 100%);
}


.permission-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
}


.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}


#robot-container {
    display: none;
}

@media (min-width: 1024px) {
    #robot-container {
        display: block;
        position: fixed;
        right: 0;
        top: 12%;
        width: 45%;
        height: 75%;
        z-index: 5;
        pointer-events: auto;
        transform-style: preserve-3d;
        perspective: 1000px;
    }
}


#features, #how-it-works, #stats {
    position: relative;
}


#features > div, #how-it-works > div, #stats > div {
    position: relative;
    z-index: 10;
}

footer {
    position: relative;
    z-index: 20;
}
