@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#09090d;
    color:white;
    overflow-x:hidden;
}

.background-glow{
    position:fixed;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#7c3aed 0%,transparent 70%);
    top:-200px;
    left:-200px;
    opacity:.35;
    z-index:-1;
    pointer-events:none;
}

.navbar{
    width:100%;
    padding:30px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative;
    z-index:10;
}

.logo{
    font-size:32px;
    font-weight:800;
    cursor:pointer;
    transition:.3s;
}

.logo:hover{
    color:#c4b5fd;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    text-decoration:none;
    color:#d4d4d8;
    transition:.25s;
    position:relative;
}

.nav-links a:hover{
    color:white;
}

.nav-links a::after{
    content:'';
    position:absolute;
    width:0%;
    height:2px;
    background:#7c3aed;
    left:0;
    bottom:-6px;
    transition:.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.hero{
    width:100%;
    min-height:85vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 80px;
    gap:80px;
}

.hero-left{
    max-width:650px;
    animation:fadeUp 1s ease;
}

.badge{
    display:inline-block;
    background:rgba(124,58,237,.15);
    border:1px solid rgba(124,58,237,.5);
    padding:10px 18px;
    border-radius:999px;
    color:#c4b5fd;
    font-size:13px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

.hero h1{
    font-size:72px;
    font-weight:800;
    line-height:1;
    margin-bottom:30px;
}

.hero p{
    color:#a1a1aa;
    font-size:18px;
    line-height:1.7;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:18px 34px;
    border-radius:16px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#7c3aed;
    color:white;
    box-shadow:0 0 30px rgba(124,58,237,.35);
}

.btn-primary:hover{
    background:#8b5cf6;
    transform:translateY(-3px);
    box-shadow:0 0 45px rgba(124,58,237,.5);
}

.btn-secondary{
    border:1px solid #27272a;
    color:white;
}

.btn-secondary:hover{
    border-color:#7c3aed;
    transform:translateY(-3px);
    background:rgba(124,58,237,.05);
}

.hero-right{
    animation:fadeUp 1.2s ease;
}

.dashboard-preview{

    width:860px;
    height:560px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(124,58,237,.25);

    border-radius:34px;

    overflow:hidden;

    backdrop-filter:blur(20px);

    transition:
        transform .55s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;

    position:relative;

    cursor:pointer;

}

.dashboard-preview:hover{

    transform:
        scale(1.18)
        translateY(-10px);

    z-index:20;

    border-color:
        rgba(124,58,237,.65);

    box-shadow:
        0 0 140px rgba(124,58,237,.22);

}

.preview-top{
    width:100%;
    height:70px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.preview-content{

    padding:28px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;

    transition:.6s ease;

}

.preview-card{

    height:200px;

    border-radius:24px;

    overflow:hidden;

    position:relative;

    border:
        1px solid rgba(124,58,237,.22);

    background:
        rgba(255,255,255,.03);

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;

}

.preview-card img,
.preview-card video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

    transition:
        transform .45s ease;

}

.preview-card:hover img,
.preview-card:hover video{

    transform:scale(1.04);

}

.dashboard-preview:hover .preview-card{

    height:200px;

    transform:
        translateY(-6px);

    border-color:
        rgba(124,58,237,.5);

    box-shadow:
        0 0 35px rgba(124,58,237,.16);

}

.features{
    padding:120px 80px;
}

.features h2{
    font-size:48px;
    margin-bottom:50px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(124,58,237,.2);
    border-radius:24px;
    padding:35px;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.feature-card:hover{
    transform:translateY(-8px);

    border-color:
        rgba(124,58,237,.6);

    box-shadow:
        0 0 40px rgba(124,58,237,.12);
}

.feature-card h3{
    font-size:24px;
    margin-bottom:20px;
}

.feature-card p{
    color:#a1a1aa;
    line-height:1.6;
}

.login-container{
    width:100%;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login-box{
    width:450px;
    padding:50px;
    border-radius:32px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(124,58,237,.25);
    backdrop-filter:blur(20px);
}

.login-box h1{
    font-size:42px;
    margin-bottom:15px;
}

.login-box p{
    color:#a1a1aa;
    margin-bottom:30px;
}

.login-box input{
    width:100%;
    height:60px;
    border:none;
    outline:none;
    background:#111118;
    border:1px solid rgba(124,58,237,.3);
    border-radius:16px;
    padding:0 20px;
    color:white;
    font-size:16px;
    margin-bottom:20px;
    transition:.3s;
}

.login-box input:focus{
    border-color:#7c3aed;
    box-shadow:0 0 20px rgba(124,58,237,.2);
}

.login-box button{
    width:100%;
    height:60px;
    border:none;
    border-radius:16px;
    background:#7c3aed;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.login-box button:hover{
    background:#8b5cf6;
    transform:translateY(-3px);
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
.hero-stats{
    display:flex;
    gap:50px;
    margin-top:50px;
}

.stat h3{
    font-size:34px;
    margin-bottom:8px;
    color:#c4b5fd;
}

.stat span{
    color:#71717a;
    font-size:14px;
}

.showcase{

    padding:180px 120px;

    display:grid;

    grid-template-columns:
        1fr
        1.2fr;

    align-items:center;

    gap:90px;

}

.showcase-left{

    max-width:720px;

}

.showcase-left h2{
    max-width:620px;
    font-size:78px;
    line-height:1;
    margin:30px 0;
}

.showcase-left p{
    color:#a1a1aa;
    line-height:1.8;
    font-size:18px;
    margin-bottom:40px;
}

.showcase-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.showcase-item{
    font-size:18px;
    color:#e4e4e7;
}

.video-preview{

    width:100%;

    max-width:920px;

    height:500px;
    justify-self:end;
    border-radius:34px;

    overflow:hidden;

    position:relative;

    border:
        1px solid rgba(124,58,237,.25);

    background:
        rgba(255,255,255,.03);

    transition:
        transform .55s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;

    cursor:pointer;

}

.video-preview:hover{

    transform:
        scale(1.06)
        translateY(-10px);

    border-color:
        rgba(124,58,237,.6);

    box-shadow:
        0 0 120px rgba(124,58,237,.18);

}

.video-preview video{

    width:100%;
    height:100%;

    object-fit:cover;

    display:block;

}

.video-preview span{
    z-index:2;
    font-size:22px;
    font-weight:700;
    color:#c4b5fd;
}

.video-glow{
    position:absolute;
    width:400px;
    height:400px;
    background:radial-gradient(circle,#7c3aed 0%,transparent 70%);
    opacity:.2;
}

.pricing{
    padding:140px 80px;
    text-align:center;
}

.pricing h2{
    font-size:64px;
    margin-bottom:60px;
}

.pricing-card{
    width:520px;
    margin:auto;
    padding:60px;
    border-radius:36px;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(124,58,237,.25);

    backdrop-filter:blur(20px);

    transition:.4s;
}

.pricing-card:hover{
    transform:
        translateY(-8px);

    border-color:
        rgba(124,58,237,.6);

    box-shadow:
        0 0 80px rgba(124,58,237,.12);
}

.pricing-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;

    background:
        rgba(124,58,237,.15);

    border:
        1px solid rgba(124,58,237,.4);

    color:#c4b5fd;
    font-size:13px;

    margin-bottom:25px;
}

.pricing-card h3{
    font-size:42px;
    margin-bottom:25px;
}

.price{
    font-size:72px;
    font-weight:800;
    color:#c4b5fd;
    margin-bottom:20px;
}

.pricing-card p{
    color:#a1a1aa;
    margin-bottom:35px;
    line-height:1.7;
}

.pricing-card ul{
    list-style:none;
    text-align:left;
    display:flex;
    flex-direction:column;
    gap:18px;
    margin-bottom:40px;
}

.pricing-card li{
    color:#e4e4e7;
    font-size:17px;
}

.discord-section{
    padding:140px 80px;
    text-align:center;
}

.discord-section h2{
    font-size:64px;
    margin-bottom:20px;
}

.discord-section p{
    color:#a1a1aa;
    margin-bottom:40px;
    font-size:18px;
}
.media-modal{

    position:fixed;

    inset:0;

    background:
        rgba(0,0,0,.88);

    z-index:9999;

    display:none;

    justify-content:center;
    align-items:center;

    backdrop-filter:blur(10px);

}

.modal-content{

    width:72%;

    max-width:1150px;

    max-height:82vh;

    display:flex;
    justify-content:center;
    align-items:center;

}

.modal-content img,
.modal-content video{

    width:100%;

    max-height:82vh;

    object-fit:contain;

    border-radius:26px;

    border:
        1px solid rgba(124,58,237,.35);

    box-shadow:
        0 0 100px rgba(124,58,237,.18);

}

.media-modal{

    animation:
        fadeModal .25s ease;

}

.close-modal{

    position:absolute;

    top:40px;
    right:50px;

    font-size:40px;

    cursor:pointer;

    color:white;

}
@keyframes fadeModal{

    from{
        opacity:0;
    }

    to{
        opacity:1;
    }

}
.mouse-glow{

    position:fixed;

    width:700px;
    height:700px;

    border-radius:50%;

    pointer-events:none;

    z-index:-1;

    background:
        radial-gradient(

            circle,

            rgba(124,58,237,.22) 0%,

            rgba(124,58,237,.10) 25%,

            transparent 70%

        );

    filter:blur(40px);

    transform:
        translate(-50%, -50%);

    transition:
        opacity .3s ease;

}
.showcase-buttons{

    margin-top:50px;

}
.learn-modal{

    position:fixed;

    inset:0;

    background:
        rgba(0,0,0,.82);

    backdrop-filter:blur(12px);

    z-index:99999;

    display:none;

    justify-content:center;
    align-items:center;

    padding:40px;

    animation:
        fadeModal .25s ease;

}

.learn-box{

    width:78%;

    max-width:920px;

    max-height:78vh;

    padding:42px;

    overflow-y:auto;

    border-radius:36px;

    background:
        rgba(12,12,18,.96);

    border:
        1px solid rgba(124,58,237,.25);

    padding:60px;

    position:relative;

    box-shadow:
        0 0 120px rgba(124,58,237,.18);

}

.learn-content h2{

    font-size:48px;

    line-height:1.05;

    margin:
        25px 0;

}

.learn-content p{

    color:#a1a1aa;

    line-height:1.75;

    font-size:16px;

}

.learn-section{

    margin-top:38px;

}

.learn-section h3{

    font-size:24px;

    margin-bottom:12px;

}
.learn-box{

    overflow-x:hidden;

}
.learn-close{

    position:absolute;

    top:30px;
    right:35px;

    font-size:34px;

    cursor:pointer;

    color:white;

    transition:.3s;

}

.learn-close:hover{

    color:#c4b5fd;

    transform:rotate(90deg);

}
.purchase-modal{

    position:fixed;

    inset:0;

    background:
        rgba(0,0,0,.78);

    backdrop-filter:blur(10px);

    z-index:99999;

    display:none;

    justify-content:center;
    align-items:center;

    animation:
        fadeModal .25s ease;

}

.purchase-box{

    width:92%;

    max-width:620px;

    padding:50px;

    border-radius:34px;

    background:
        rgba(12,12,18,.96);

    border:
        1px solid rgba(124,58,237,.28);

    position:relative;

    text-align:center;

    box-shadow:
        0 0 100px rgba(124,58,237,.18);

}

.purchase-box h2{

    font-size:42px;

    margin:
        25px 0;

}

.purchase-box p{

    color:#a1a1aa;

    line-height:1.8;

    font-size:17px;

    margin-bottom:40px;

}

.purchase-buttons{

    display:flex;

    justify-content:center;

}

.purchase-close{

    position:absolute;

    top:28px;
    right:32px;

    font-size:34px;

    cursor:pointer;

    transition:.3s;

}

.purchase-close:hover{

    transform:rotate(90deg);

    color:#c4b5fd;

}
/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 900px){

    .navbar{

        padding:25px 25px;

    }

    .nav-links{

        display:none;

    }

    .hero{

        flex-direction:column;

        padding:
            140px 25px
            80px 25px;

        gap:70px;

        text-align:center;

    }

    .hero-left{

        width:100%;

        max-width:100%;

    }

    .hero-left h1{

        font-size:58px;

        line-height:1.02;

    }

    .hero-left p{

        font-size:17px;

    }

    .hero-buttons{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-stats{

        justify-content:center;

        flex-wrap:wrap;

    }

    .dashboard-preview{

        width:100%;

        max-width:100%;

        height:auto;

    }

    .dashboard-preview:hover{

        transform:none;

    }

    .preview-content{

        grid-template-columns:1fr;

    }

    .preview-card{

        height:220px;

    }

    .showcase{

        grid-template-columns:1fr;

        padding:
            120px 25px;

        gap:60px;

    }

    .showcase-left{

        max-width:100%;

        text-align:center;

    }

    .showcase-left h2{

        font-size:54px;

        line-height:1.05;

    }

    .showcase-list{

        align-items:center;

    }

    .video-preview{

        width:100%;

        height:280px;

    }

    .features{

        padding:
            120px 25px;

    }

    .features h2{

        font-size:52px;

    }

    .features-grid{

        grid-template-columns:1fr;

    }

    .pricing{

        padding:
            120px 25px;

    }

    .pricing-card{

        width:100%;

    }

    .discord-section{

        padding:
            120px 25px;

    }

    .discord-section h2{

        font-size:52px;

    }

    .learn-box{

        width:100%;

        padding:30px;

        max-height:90vh;

    }

    .learn-content h2{

        font-size:38px;

    }

    .purchase-box{

        width:100%;

        padding:35px;

    }

}
html,
body{

    overflow-x:hidden;

}