.hero{
    min-height:auto;
    padding:110px 4% 80px;
}

.bg-logo{
    position:absolute;
    right:8%;
    top:50%;
    transform:translateY(-50%);
    width:38%;
    opacity:0.08;
    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:-40px;
    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;
}

.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;
}

.powered-logos{
    display:flex;
    gap:22px;
    align-items:center;
    overflow-x:auto;
    white-space:nowrap;
}

.powered-logos span{
    font-size:13px;
    opacity:0.7;
    flex-shrink:0;
}

@media(max-width:1200px){

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

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

@media(max-width:900px){

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

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

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

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

}

@media(max-width:768px){

/* HERO */

.hero{
    padding:50px 20px 30px;
    min-height:auto;
}

.hero-left{
    max-width:100%;
}

.hero-tag{
    font-size:12px;
    padding:10px 18px;
    margin-bottom:18px;
}

.hero h1{
    font-size:34px;
    line-height:1.05;
    margin-bottom:18px;
}

.hero p{
    font-size:18px;
    line-height:1.6;
    margin-bottom:28px;
}

.hero-buttons{
    gap:14px;
    margin-bottom:28px;
}

.hero-buttons a{
    padding:16px 22px;
    font-size:16px;
}

/* TRUSTED / STATS */

.market-strip{
    grid-template-columns:1fr;
    gap:16px;
    margin-top:26px;
}

.market-card{
    padding:20px;
    border-radius:20px;
}

.market-card h3{
    font-size:20px;
}

.market-card-price{
    font-size:28px;
}

.market-card-change{
    font-size:16px;
}
}

/* POWERED BY */

.powered{
    padding:26px 20px;
}

.powered h3{
    font-size:14px;
    opacity:0.7;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.powered-logos{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
    justify-content:center;
}

.powered-logos span{
    font-size:14px;
    opacity:0.8;
}

}