*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#060816;
    color:white;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

.navbar{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 4%;
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(6,8,22,0.92);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.logo-img{
    height:120px;
}

nav{
    display:flex;
    align-items:center;
    gap:40px;
}

nav a{
    color:#eceef7;
    font-size:16px;
    font-weight:500;
    transition:0.25s;
}

nav a:hover{
    color:#8f6fff;
}

.nav-buttons{
    display:flex;
    gap:14px;
}

.btn-outline{
    background:transparent;
    border:1px solid rgba(255,255,255,0.18);
    color:white;
    padding:12px 24px;
    border-radius:14px;
    font-weight:600;
}

.btn-gradient{
    background:linear-gradient(90deg,#7d4dff,#22b9ff);
    border:none;
    color:white;
    padding:12px 24px;
    border-radius:14px;
    font-weight:700;
}

.hero{
    min-height:100vh;
    position:relative;
    padding:40px 5% 100px;
}

.bg-logo{
    position:absolute;
    width:800px;
    opacity:0.068;
    top:120px;
    left:50%;
    transform:translateX(-50%);
    pointer-events:none;
}

.hero-left{
    position:relative;
    z-index:2;
    max-width:760px;
}

.hero-tag{
    display:inline-block;
    border:1px solid rgba(138,102,255,0.4);
    color:#b694ff;
    padding:10px 18px;
    border-radius:999px;
    font-size:14px;
    margin-bottom:28px;
}

.hero h1{
    font-size:72px;
    line-height:1.04;
    margin-bottom:26px;
    font-weight:900;
}

.hero-gradient{
    background:linear-gradient(90deg,#8b5fff,#20bfff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    color:#b5bdd3;
    font-size:24px;
    line-height:1.8;
    max-width:680px;
    margin-bottom:36px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.hero-buttons a{
    padding:18px 30px;
    border-radius:16px;
    font-weight:700;
    font-size:18px;
}

.primary-btn{
    background:linear-gradient(90deg,#7d4dff,#22b9ff);
    color:white;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.18);
    color:white;
}

.trust-row{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.trust-item h4{
    font-size:20px;
    margin-bottom:8px;
}

.trust-item p{
    font-size:14px;
    margin:0;
}


.market-strip{
    margin:0 5%;
    margin-top:-30px;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:18px;
}

.market-box{
    background:#0e1327;
    border:1px solid rgba(255,255,255,0.09);
    border-radius:20px;
    padding:24px;
    box-shadow:0 0 40px rgba(0,0,0,0.2);
}

.market-box h5{
    color:#b7bfd4;
    font-size:14px;
    margin-bottom:18px;
    font-weight:500;
}

.market-box h2{
    margin-bottom:14px;
    font-size:38px;
}

.green{
    color:#00ffa3;
    font-weight:700;
}

.red{
    color:#ff5c7a;
    font-weight:700;
}

.section{
    padding:90px 5%;
}

.section-title{
    font-size:56px;
    margin-bottom:16px;
}

.section-text{
    color:#b4bbcf;
    max-width:760px;
    line-height:1.8;
    font-size:18px;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-top:50px;
}

.feature-card{
    background:linear-gradient(180deg,#0d1224,#0a0f20);
    border:1px solid rgba(124,91,255,0.32);
    border-radius:24px;
    padding:36px;
    min-height:280px;
    box-shadow:0 0 40px rgba(53,63,120,0.15);
}

.feature-card h3{
    font-size:34px;
    margin-bottom:20px;
}

.feature-card p{
    color:#b4bbcf;
    line-height:1.9;
    font-size:17px;
    margin-bottom:26px;
}

.feature-card a{
    color:#8d6bff;
    font-weight:700;
}

.powered{
    margin:40px 5% 0;
    background:#0d1224;
    border:1px solid rgba(255,255,255,0.08);
    border-radius:20px;
    padding:28px 40px;
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:30px;
}

.powered span{
    color:#cfd5e6;
    font-weight:600;
}

.footer{
    text-align:center;
    padding:80px 20px;
    color:#747d93;
}

@media(max-width:1200px){

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .market-strip{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .trust-row{
        justify-content:center;
    }

    .hero h1{
        font-size:52px;
    }

    .market-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .bg-logo{
        width:420px;
        top:240px;
        left:50%;
        transform:translateX(-50%);
    }
}

@media(max-width:600px){

    nav{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .hero h1{
        font-size:40px;
    }

    .hero p{
        font-size:18px;
    }

    .market-strip{
        grid-template-columns:1fr;
    }


/* MOBILE */

@media(max-width:900px){
}   

/* HERO RIGHT IMAGE */

.hero-right-img{
    position:fixed !important;

    top:160px !important;
    right:40px !important;

    width:38% !important;

    display:block;

    z-index:1 !important;

    opacity:0.85 !important;

    pointer-events:none;

    filter:drop-shadow(0 0 40px rgba(120,70,255,0.22));
}

/* MOBILE */

@media(max-width:900px){

    .hero-right-img{

        width:78%;

        right:50%;
        top:520px;

        transform:translateX(50%);

        opacity:0.22;
    }
}