/*===================================
RESET
===================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #eaf3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    padding: 30px;
}

.mobile-screen {
       width: 100%;
        max-width: 430px;
        /* min-height: 100vh; */
        position: relative;
        overflow: hidden;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid lightgrey;
}


@media screen and (min-width:1000px) {
    .mobile-screen {
        width: 100%;
        max-width:80%!important;
        /* min-height: 100vh; */
        position: relative;
        overflow: hidden;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid lightgrey;
    }
}

@media screen and (min-width:765px) {
    .mobile-screen {
        width: 100%;
        max-width: 100%;
        /* min-height: 100vh; */
        position: relative;
        overflow: hidden;
        background: #ffffff;
        border-radius: 20px;
        border: 1px solid lightgrey;
    }
}





    /*===================================
BACKGROUND
===================================*/

    .bg-overlay {
        position: absolute;
        inset: 0;
        background: url("../images/cover-page.png") center/cover no-repeat;
        opacity: .22;
        z-index: 0;
    }

    /* Purple Glow */

    .gradient-left {
        position: absolute;
        width: 320px;
        height: 320px;
        left: -170px;
        bottom: 160px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(172, 95, 255, .45), transparent 70%);
        filter: blur(45px);
        z-index: 1;
    }

    /* Blue Glow */

    .gradient-right {
        position: absolute;
        width: 280px;
        height: 280px;
        right: -120px;
        top: 220px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(71, 169, 255, .35), transparent 70%);
        filter: blur(45px);
        z-index: 1;
    }

    /*===================================
LOGO
===================================*/

    .logo-section {
        position: relative;
        z-index: 5;
        text-align: center;
        padding-top: 20px;
    }

    .logo {
        width: 175px;
    }

    /*===================================
CONTENT
===================================*/

    .hero-content {
        position: relative;
        z-index: 5;
        text-align: center;
        margin-top: 35px;
        padding: 0 25px;
    }

        .hero-content h1 {
            font-size: 38px;
            line-height: 1.05;
            font-weight: 800;
            color: #1841b7;
            letter-spacing: .5px;
            margin-bottom: 22px;
        }

        .hero-content p {
            font-size: 22px;
            line-height: 1.7;
            color: #344054;
            font-weight: 500;
        }

    /*===================================
ROBOT
===================================*/

    .robot-section {
        position: relative;
        z-index: 4;
        display: flex;
        justify-content: center;
        margin-top: 0px;
    }

        .robot-section img {
            width: 77%;
            max-width: 340px;
            animation: floatRobot 4s ease-in-out infinite;
            user-select: none;
            pointer-events: none;
        }

    /*===================================
BUTTON
===================================*/
    .bottom-area {
        position: absolute;
        left: 55%;
        bottom: 30px;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .start-btn {
        width: 82%;
        height: 62px;
        border: none;
        border-radius: 18px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        color: #fff;
        font-size: 22px;
        font-weight: 700;
        background: linear-gradient(90deg, #1668ff, #2f6eff, #7a4dff, #d14bff);
        box-shadow: 0 18px 40px rgba(68, 93, 255, .35);
        transition: .3s;
    }

        .start-btn:hover {
            transform: translateY(-3px);
        }

        .start-btn:active {
            transform: scale(.98);
        }

        .start-btn i {
            font-size: 24px;
        }

    /*===================================
ANIMATION
===================================*/

    @keyframes floatRobot {

        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

        100% {
            transform: translateY(0);
        }
    }

    /*===================================
RESPONSIVE
===================================*/

    @media(max-width:490px) {

        .logo {
            width: 155px;
        }

        .hero-content {
            margin-top: 25px;
        }

            .hero-content h1 {
                font-size: 25px;
            }

            .hero-content p {
                font-size: 14px;
            }

        .robot-section {
            margin-top: 0px;
        }

            .robot-section img {
                width: 77%;
            }

        .start-btn {
            width: 88%;
            height: 56px;
            font-size: 18px;
        }
    }