/* =========================================================
   MOVPAY WEBSITE - MAIN CSS
   Brand Theme: Blue + Purple + Deep Navy
   ========================================================= */

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
    scroll-padding-top:85px;
}

body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:#f4f7ff;
    color:#263b52;
    line-height:1.7;
}


/* =========================================================
   HEADER
   ========================================================= */

.header{
    position:sticky;
    top:0;
    z-index:9999;

    background:rgba(255,255,255,.97);

    border-bottom:1px solid #e1e7f5;

    box-shadow:0 4px 20px rgba(31,42,90,.08);

    backdrop-filter:blur(12px);
}

.header-inner{
    max-width:1250px;
    margin:auto;

    height:76px;

    padding:0 20px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    font-size:25px;
    font-weight:800;

    color:#17267c;
}

.logo img{
    width:48px;
    height:48px;

    object-fit:cover;

    border-radius:12px;

    box-shadow:
        0 5px 15px rgba(32,40,180,.20);
}

.logo span{
    background:linear-gradient(
        90deg,
        #4210d9,
        #172a9b,
        #0739d7
    );

    -webkit-background-clip:text;
    background-clip:text;

    color:transparent;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

nav{
    display:flex;
    align-items:center;
    gap:26px;
}

nav a{
    position:relative;

    text-decoration:none;

    color:#33456c;

    font-size:15px;
    font-weight:700;

    transition:.25s ease;
}

nav a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-7px;

    width:0;
    height:2px;

    border-radius:10px;

    background:linear-gradient(
        90deg,
        #6815e8,
        #1768ff
    );

    transition:.25s ease;
}

nav a:hover{
    color:#3d20c8;
}

nav a:hover::after{
    width:100%;
}


/* =========================================================
   MENU BUTTON
   ========================================================= */

.menu-btn{
    display:none;

    width:43px;
    height:43px;

    border:1px solid #dce3f2;

    border-radius:10px;

    background:#ffffff;

    color:#172a8b;

    font-size:25px;

    cursor:pointer;

    box-shadow:0 4px 12px rgba(40,50,100,.08);

    transition:.25s ease;
}

.menu-btn:hover{
    background:#f2f3ff;

    transform:translateY(-1px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
    position:relative;

    padding:70px 20px 80px;

    text-align:center;

    color:white;

    overflow:hidden;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(113,25,255,.75),
            transparent 34%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(0,104,255,.55),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #26006d 0%,
            #111b73 45%,
            #071b63 100%
        );

    border-bottom:4px solid #356dff;
}


/* Decorative glow */

.hero::before{
    content:"";

    position:absolute;

    width:350px;
    height:350px;

    left:-170px;
    top:-180px;

    background:rgba(132,31,255,.25);

    border-radius:50%;

    filter:blur(20px);
}

.hero::after{
    content:"";

    position:absolute;

    width:400px;
    height:400px;

    right:-180px;
    bottom:-220px;

    background:rgba(0,111,255,.20);

    border-radius:50%;

    filter:blur(25px);
}

.hero-content{
    position:relative;

    z-index:2;

    max-width:950px;

    margin:auto;
}


/* =========================================================
   HERO LOGO
   ========================================================= */

.hero-logo{
    width:125px;
    height:125px;

    object-fit:cover;

    border-radius:28px;

    margin-bottom:20px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.35);

    border:3px solid rgba(255,255,255,.16);
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero h1{
    font-size:48px;

    line-height:1.2;

    margin:10px 0 20px;

    color:#ffffff;

    font-weight:800;

    letter-spacing:-.5px;
}

.hero p{
    font-size:18px;

    max-width:820px;

    margin:0 auto 32px;

    color:#dce8ff;
}

.hero p strong{
    color:#ffffff;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons{
    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    display:inline-block;

    padding:15px 28px;

    border-radius:11px;

    text-decoration:none;

    font-weight:700;

    transition:.25s ease;
}

.primary-btn{
    color:#ffffff;

    background:
        linear-gradient(
            100deg,
            #7017e8,
            #304cff,
            #008bff
        );

    box-shadow:
        0 10px 25px rgba(31,55,210,.30);
}

.primary-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(31,55,210,.40);
}

.secondary-btn{
    color:#ffffff;

    border:1px solid rgba(255,255,255,.35);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(8px);
}

.secondary-btn:hover{
    background:rgba(255,255,255,.16);

    transform:translateY(-3px);
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.container{
    max-width:1250px;

    margin:auto;

    padding:40px 18px;
}


/* =========================================================
   CARDS
   ========================================================= */

.card{
    background:#ffffff;

    border:1px solid #e1e7f2;

    border-radius:18px;

    padding:32px;

    margin-bottom:28px;

    box-shadow:
        0 5px 22px rgba(34,52,100,.06);
}

.card h2{
    font-size:30px;

    color:#172a6d;

    margin:0 0 22px;

    padding-bottom:13px;

    border-bottom:2px solid #edf0fa;

    position:relative;
}

.card h2::after{
    content:"";

    display:block;

    width:70px;
    height:3px;

    margin-top:13px;

    border-radius:10px;

    background:
        linear-gradient(
            90deg,
            #7118e8,
            #176eff
        );
}

.card h3{
    color:#263e9b;
}

.card p,
.card li{
    font-size:17px;

    color:#405875;
}


/* =========================================================
   TABLE OF CONTENTS
   ========================================================= */

.toc{
    display:grid;

    grid-template-columns:1fr 1fr;

    column-gap:35px;
}

.toc a{
    position:relative;

    text-decoration:none;

    color:#36537a;

    font-size:16px;

    padding:8px 0 8px 17px;

    border-bottom:1px solid #edf1f7;

    transition:.25s ease;
}

.toc a::before{
    content:"";

    position:absolute;

    left:0;
    top:50%;

    width:6px;
    height:6px;

    transform:translateY(-50%);

    border-radius:50%;

    background:#4b26df;
}

.toc a:hover{
    color:#4b20d4;

    padding-left:22px;
}


/* =========================================================
   INVITE CODE
   ========================================================= */

.invite-box{
    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding:22px 25px;

    border:1px dashed #6174ff;

    border-radius:15px;

    background:
        linear-gradient(
            135deg,
            #f8f6ff,
            #f0f7ff
        );

    box-shadow:
        inset 0 0 25px rgba(70,50,220,.04);
}

.invite-box span{
    display:block;

    font-size:12px;

    color:#6e7894;

    font-weight:bold;

    letter-spacing:.5px;
}

.invite-box strong{
    display:block;

    font-size:28px;

    letter-spacing:3px;

    color:#3823ce;

    margin-top:3px;
}

.invite-box button{
    border:0;

    background:
        linear-gradient(
            100deg,
            #6515e4,
            #176cff
        );

    color:white;

    padding:12px 22px;

    border-radius:9px;

    font-weight:bold;

    cursor:pointer;

    box-shadow:
        0 7px 18px rgba(61,40,220,.22);

    transition:.25s ease;
}

.invite-box button:hover{
    transform:translateY(-2px);

    box-shadow:
        0 10px 22px rgba(61,40,220,.30);
}

.small-note{
    font-size:14px!important;

    color:#71839a!important;
}


/* =========================================================
   DOWNLOAD BUTTON
   ========================================================= */

.download-btn{
    display:block;

    max-width:420px;

    margin:27px auto;

    padding:17px;

    text-align:center;

    text-decoration:none;

    color:white;

    font-weight:bold;

    font-size:18px;

    border-radius:12px;

    background:
        linear-gradient(
            100deg,
            #6414df,
            #2648f4,
            #008cf7
        );

    box-shadow:
        0 10px 25px rgba(43,52,220,.25);

    transition:.25s ease;
}

.download-btn:hover{
    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(43,52,220,.35);
}


/* =========================================================
   APP INFORMATION
   ========================================================= */

.app-info{
    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:15px;

    margin-top:25px;
}

.app-info div{
    padding:19px;

    background:
        linear-gradient(
            135deg,
            #f7f8ff,
            #f3f8ff
        );

    border:1px solid #e0e6f2;

    border-radius:12px;

    text-align:center;

    transition:.25s ease;
}

.app-info div:hover{
    transform:translateY(-3px);

    border-color:#aab5f5;

    box-shadow:
        0 8px 20px rgba(48,58,150,.07);
}

.app-info span{
    display:block;

    font-size:11px;

    color:#73829b;

    font-weight:bold;

    letter-spacing:.5px;
}

.app-info strong{
    font-size:16px;

    color:#172e6b;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features{
    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:20px;
}

.feature{
    padding:25px;

    border:1px solid #dfe6f2;

    border-radius:15px;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f8f9ff
        );

    transition:.25s ease;
}

.feature:hover{
    transform:translateY(-4px);

    border-color:#aeb8fa;

    box-shadow:
        0 10px 25px rgba(42,53,150,.08);
}

.feature-icon{
    font-size:30px;
}

.feature h3{
    color:#3824c8;

    margin:8px 0;
}


/* =========================================================
   TABLE
   ========================================================= */

table{
    width:100%;

    border-collapse:collapse;

    overflow:hidden;

    border-radius:10px;
}

th,
td{
    border:1px solid #dce4f0;

    padding:15px;

    text-align:left;
}

th{
    background:
        linear-gradient(
            90deg,
            #f1efff,
            #eef6ff
        );

    color:#243575;

    font-weight:700;
}


/* =========================================================
   SCREENSHOTS
   ========================================================= */

.screenshots{
    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:20px;
}

.screenshots div{
    border:1px solid #dce4f0;

    border-radius:14px;

    overflow:hidden;

    text-align:center;

    background:#07115b;

    transition:.25s ease;
}

.screenshots div:hover{
    transform:translateY(-4px);

    box-shadow:
        0 10px 25px rgba(30,35,100,.15);
}

.screenshots img{
    width:100%;

    height:400px;

    object-fit:contain;

    background:
        linear-gradient(
            135deg,
            #18004f,
            #071c65
        );

    display:block;
}

.screenshots p{
    font-weight:bold;

    font-size:15px;

    color:#ffffff;

    margin:12px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.notice,
.warning{
    padding:20px;

    border-radius:12px;

    background:#f1f6ff;

    border-left:5px solid #3159e8;
}

.notice strong{
    color:#293f9c;
}

.warning{
    background:#fff8ed;

    border-left-color:#f09a28;
}


/* =========================================================
   FAQ
   ========================================================= */

details{
    border:1px solid #dce4f0;

    border-radius:12px;

    margin:12px 0;

    padding:0 18px;

    background:#ffffff;

    transition:.25s ease;
}

details:hover{
    border-color:#aab5f4;
}

summary{
    cursor:pointer;

    font-weight:bold;

    padding:17px 0;

    color:#273b79;
}

details p{
    padding-bottom:12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer{
    position:relative;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(102,20,220,.25),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #060b22,
            #050817,
            #02050e
        );

    color:#9fb3d0;

    padding:55px 20px 25px;

    border-top:3px solid #4220d8;
}

.footer-inner{
    max-width:1000px;

    margin:auto;

    display:grid;

    grid-template-columns:
        1.3fr 1fr 1fr;

    gap:50px;
}

.footer-inner h2{
    color:#ffffff;

    margin-top:0;
}

.footer-inner h3{
    color:#ffffff;
}

footer a{
    display:block;

    color:#a8bad4;

    text-decoration:none;

    margin:7px 0;

    transition:.2s ease;
}

footer a:hover{
    color:#ffffff;

    padding-left:4px;
}

.copyright{
    max-width:1000px;

    margin:35px auto 0;

    padding-top:22px;

    border-top:1px solid #252e49;

    text-align:center;

    color:#8294b2;
}


/* =========================================================
   SELECTION
   ========================================================= */

::selection{
    background:#4d24dc;

    color:#ffffff;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar{
    width:9px;
}

::-webkit-scrollbar-track{
    background:#eef1fa;
}

::-webkit-scrollbar-thumb{
    background:
        linear-gradient(
            #6615df,
            #176dff
        );

    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:
        linear-gradient(
            #5010bb,
            #0954d9
        );
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:900px){

    nav{
        gap:17px;
    }

    nav a{
        font-size:14px;
    }

    .hero h1{
        font-size:42px;
    }

    .app-info{
        grid-template-columns:
            repeat(2,1fr);
    }

    .screenshots{
        grid-template-columns:
            repeat(2,1fr);
    }

    .footer-inner{
        grid-template-columns:
            1fr 1fr;
    }

}


/* =========================================================
   MOBILE MENU
   ========================================================= */

@media(max-width:760px){

    .header-inner{
        height:66px;

        padding:0 15px;
    }

    .logo{
        font-size:21px;
    }

    .logo img{
        width:41px;
        height:41px;

        border-radius:10px;
    }

    .menu-btn{
        display:flex;

        align-items:center;
        justify-content:center;
    }


    /* Mobile navigation */

    nav{
        display:none;

        position:absolute;

        left:0;
        right:0;

        top:66px;

        background:#ffffff;

        padding:12px 20px 18px;

        flex-direction:column;

        gap:0;

        border-bottom:1px solid #dfe4f0;

        box-shadow:
            0 12px 25px rgba(20,30,80,.13);

        animation:menuDown .25s ease;
    }

    nav.active{
        display:flex;
    }

    nav a{
        width:100%;

        padding:13px 3px;

        border-bottom:1px solid #edf0f6;

        font-size:15px;
    }

    nav a:last-child{
        border-bottom:0;
    }

    nav a::after{
        display:none;
    }

    nav a:hover{
        color:#4b22d3;

        padding-left:8px;
    }


    /* Hero */

    .hero{
        padding:48px 17px 58px;
    }

    .hero-logo{
        width:95px;
        height:95px;

        border-radius:22px;
    }

    .hero h1{
        font-size:34px;

        line-height:1.25;
    }

    .hero p{
        font-size:16px;

        line-height:1.7;
    }


    /* Buttons */

    .hero-buttons{
        flex-direction:column;

        align-items:stretch;

        max-width:400px;

        margin:auto;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }


    /* Container */

    .container{
        padding:27px 13px;
    }


    /* Cards */

    .card{
        padding:23px 17px;

        border-radius:15px;
    }

    .card h2{
        font-size:25px;
    }

    .card p,
    .card li{
        font-size:16px;
    }


    /* TOC */

    .toc{
        grid-template-columns:1fr;
    }


    /* Invite */

    .invite-box{
        align-items:flex-start;

        flex-direction:column;

        padding:20px;
    }

    .invite-box strong{
        font-size:24px;

        word-break:break-word;
    }

    .invite-box button{
        width:100%;
    }


    /* Info */

    .app-info{
        grid-template-columns:1fr;
    }


    /* Features */

    .features{
        grid-template-columns:1fr;
    }


    /* Screenshots */

    .screenshots{
        grid-template-columns:1fr;
    }

    .screenshots img{
        height:430px;
    }


    /* Footer */

    .footer-inner{
        grid-template-columns:1fr;

        gap:30px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media(max-width:420px){

    .hero h1{
        font-size:29px;
    }

    .hero-logo{
        width:82px;
        height:82px;
    }

    .card h2{
        font-size:23px;
    }

    .invite-box strong{
        font-size:21px;

        letter-spacing:2px;
    }

    .screenshots img{
        height:390px;
    }

}