*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#fff;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(30px);
    -webkit-backdrop-filter:blur(30px);
    border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-inner{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    font-size:38px;
    font-weight:900;
    letter-spacing:-2px;
    white-space:nowrap;
}

.logo span{
    color:#7c3aed;
}

.menu{
    display:flex;
    align-items:center;
    gap:40px;
}

.menu a{
    color:#aaa;
    font-size:16px;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#fff;
}

.nav-buttons{
    display:flex;
    align-items:center;
    gap:14px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    border-radius:16px;
    font-weight:700;
    transition:.3s;
}

.btn-dark{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
}

.btn-dark:hover{
    background:#191919;
}

.btn-primary{
    background:#7c3aed;
    color:#fff;
    box-shadow:0 0 30px rgba(124,58,237,.35);
}

.btn-primary:hover{
    background:#6d28d9;
    transform:translateY(-2px);
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    padding-top:170px;
    padding-bottom:120px;
}

.hero::before{
    content:'';
    position:absolute;
    width:900px;
    height:900px;
    background:#7c3aed;
    filter:blur(250px);
    opacity:.18;
    top:-300px;
    right:-200px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.mini-badge{
    display:inline-flex;
    align-items:center;
    padding:14px 24px;
    border-radius:100px;
    background:rgba(124,58,237,.14);
    border:1px solid rgba(124,58,237,.3);
    color:#c4b5fd;
    margin-bottom:30px;
    font-weight:600;
}

.hero-left h1{
    font-size:86px;
    line-height:1;
    font-weight:900;
    letter-spacing:-4px;
    margin-bottom:35px;
}

.hero-left h1 span{
    display:block;
    color:#7c3aed;
    text-shadow:
    0 0 10px rgba(124,58,237,.4),
    0 0 30px rgba(124,58,237,.5),
    0 0 60px rgba(124,58,237,.3);
}

.hero-left p{
    font-size:22px;
    line-height:1.8;
    color:#999;
    margin-bottom:45px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.big-btn{
    padding:20px 38px;
    font-size:17px;
}

.hero-stats{
    display:flex;
    gap:60px;
}

.stat-box h3{
    font-size:48px;
    font-weight:900;
    margin-bottom:10px;
}

.stat-box span{
    color:#888;
    font-size:16px;
}

/* DASHBOARD */

.dashboard-card{
    background:#0b0b0b;
    border-radius:36px;
    border:1px solid rgba(255,255,255,.06);
    overflow:hidden;
    box-shadow:0 0 90px rgba(124,58,237,.22);
    transition:.4s;
}

.dashboard-card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 130px rgba(124,58,237,.35);
}

.dashboard-top{
    height:70px;
    display:flex;
    align-items:center;
    gap:12px;
    padding:0 25px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.circle{
    width:14px;
    height:14px;
    border-radius:100%;
}

.red{
    background:#ff4d4d;
}

.yellow{
    background:#ffcc00;
}

.green{
    background:#00d26a;
}

.dashboard-content{
    padding:35px;
}

.dashboard-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.dash-box{
    background:#121212;
    border-radius:24px;
    padding:26px;
}

.dash-box span{
    color:#888;
    font-size:14px;
}

.dash-box h3{
    font-size:46px;
    margin-top:12px;
}

/* TREND */

.trend-box{
    background:linear-gradient(to bottom right,#7c3aed33,#000);
    border:1px solid rgba(124,58,237,.2);
    border-radius:30px;
    padding:35px;
}

.trend-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.trend-top small{
    color:#c4b5fd;
    font-size:15px;
}

.trend-top h3{
    font-size:48px;
    margin-top:10px;
    line-height:1.1;
}

.trend-top button{
    border:none;
    background:#7c3aed;
    color:#fff;
    padding:16px 28px;
    border-radius:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    white-space:nowrap;
}

.trend-top button:hover{
    background:#6d28d9;
}

.trend-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.trend-item{
    background:rgba(0,0,0,.35);
    border:1px solid rgba(255,255,255,.05);
    border-radius:20px;
    padding:20px;
    transition:.3s;
}

.trend-item:hover{
    border-color:#7c3aed;
    transform:translateX(6px);
}

/* TRUST */

.trust-bar{
    border-top:1px solid rgba(255,255,255,.05);
    border-bottom:1px solid rgba(255,255,255,.05);
    background:#080808;
}

.trust-inner{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:50px;
    padding:35px 0;
    flex-wrap:wrap;
}

.trust-inner span{
    color:#777;
    font-size:18px;
    font-weight:700;
    transition:.3s;
}

.trust-inner span:hover{
    color:#fff;
}

/* FEATURES */

.features{
    padding:140px 0;
}

.section-title{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.section-title small{
    color:#a78bfa;
    font-size:15px;
    font-weight:700;
}

.section-title h2{
    font-size:64px;
    line-height:1.1;
    margin:24px 0;
    letter-spacing:-2px;
}

.section-title p{
    color:#888;
    font-size:20px;
    line-height:1.8;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.feature-card{
    background:#0d0d0d;
    border:1px solid rgba(255,255,255,.06);
    border-radius:30px;
    padding:38px;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#7c3aed;
    box-shadow:0 0 40px rgba(124,58,237,.18);
}

.feature-card h3{
    font-size:30px;
    margin-bottom:20px;
}

.feature-card p{
    color:#888;
    line-height:1.9;
    font-size:16px;
}

/* TABLET */

@media(max-width:1100px){

    .hero-grid{
        grid-template-columns:1fr;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .hero-left h1{
        font-size:62px;
    }

    .dashboard-stats{
        grid-template-columns:1fr;
    }

}

/* MOBILE */

@media(max-width:768px){

    .container{
        padding:0 16px;
    }

    /* NAVBAR */

    .navbar{
        padding:0;
    }

    .nav-inner{
        height:76px;
        gap:10px;
    }

    .logo{
        font-size:26px;
        letter-spacing:-1px;
    }

    .menu{
        display:none;
    }

    .nav-buttons{
        gap:8px;
    }

    .btn{
        padding:10px 14px;
        border-radius:12px;
        font-size:13px;
        min-width:auto;
        white-space:nowrap;
    }

    /* HERO */

    .hero{
        padding-top:120px;
        padding-bottom:70px;
    }

    .hero-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .mini-badge{
        font-size:14px;
        padding:12px 18px;
        margin-bottom:24px;
    }

    .hero-left h1{
        font-size:44px;
        line-height:1.05;
        letter-spacing:-2px;
        margin-bottom:22px;
    }

    .hero-left p{
        font-size:16px;
        line-height:1.9;
        margin-bottom:30px;
    }

    .hero-buttons{
        flex-direction:column;
        gap:12px;
        margin-bottom:35px;
    }

    .big-btn{
        width:100%;
        padding:16px 20px;
        font-size:15px;
    }

    .hero-stats{
        flex-direction:column;
        gap:20px;
    }

    .stat-box h3{
        font-size:34px;
    }

    /* DASHBOARD */

    .dashboard-card{
        border-radius:24px;
    }

    .dashboard-top{
        height:60px;
        padding:0 18px;
    }

    .dashboard-content{
        padding:18px;
    }

    .dashboard-stats{
        grid-template-columns:1fr;
        gap:14px;
        margin-bottom:18px;
    }

    .dash-box{
        padding:20px;
        border-radius:18px;
    }

    .dash-box h3{
        font-size:34px;
    }

    /* TREND */

    .trend-box{
        padding:20px;
        border-radius:22px;
    }

    .trend-top{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
        margin-bottom:22px;
    }

    .trend-top h3{
        font-size:28px;
    }

    .trend-top button{
        width:100%;
        padding:14px;
        border-radius:14px;
    }

    .trend-item{
        padding:16px;
        font-size:14px;
        border-radius:14px;
    }

    /* TRUST */

    .trust-inner{
        gap:16px;
        justify-content:center;
    }

    .trust-inner span{
        font-size:14px;
    }

    /* FEATURES */

    .features{
        padding:90px 0;
    }

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
        line-height:1.2;
    }

    .section-title p{
        font-size:16px;
    }

    .feature-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .feature-card{
        padding:24px;
        border-radius:22px;
    }

    .feature-card h3{
        font-size:24px;
    }

    .feature-card p{
        font-size:15px;
    }

}