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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Arial,Helvetica,sans-serif;
    background:#090d1d;
    color:white;
    line-height:1.6;
}

a{
    text-decoration:none;
}

.nav{
    position:fixed;
    top:0;
    width:100%;
    padding:22px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(9,13,29,.75);
    backdrop-filter:blur(14px);
    z-index:1000;
}

.logo{
    font-size:28px;
    font-weight:700;
}

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

.nav a{
    color:#ddd;
}

.nav a:hover{
    color:white;
}

.nav-cta{
    background:#7c3aed;
    color:white!important;
    padding:12px 20px;
    border-radius:12px;
}

.hero{
    min-height:100vh;
    display:grid;
    grid-template-columns:1fr 420px;
    align-items:center;
    gap:80px;
    padding:120px 10%;
}

.eyebrow{
    color:#9d7cff;
    letter-spacing:2px;
    font-size:13px;
    margin-bottom:20px;
    text-transform:uppercase;
}

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

.hero p{
    font-size:22px;
    color:#b9bfd5;
    max-width:650px;
}

.buttons{
    margin-top:45px;
    display:flex;
    gap:20px;
}

.btn{
    padding:16px 28px;
    border-radius:14px;
    font-weight:600;
}

.primary{
    background:#7c3aed;
    color:white;
}

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

.hero-card{
    background:linear-gradient(180deg,#161d35,#111728);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:40px;
    box-shadow:0 40px 80px rgba(0,0,0,.35);
}

.card-top{
    color:#9d7cff;
    font-size:14px;
    margin-bottom:20px;
}

.metric{
    font-size:82px;
    font-weight:700;
    margin-bottom:10px;
}

.section{
    padding:120px 10%;
}

.section h2{
    font-size:48px;
    margin-bottom:50px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.tile{
    background:#111728;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.25s;
}

.tile:hover{
    transform:translateY(-8px);
}

.tile h3{
    margin-bottom:18px;
}

.tile p{
    color:#b9bfd5;
}

.split{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:70px;
}

.feature-box{
    background:#111728;
    border-radius:20px;
    padding:35px;
}

.feature-box li{
    margin:18px 0;
}

.steps{
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.steps div{
    background:#111728;
    padding:25px 35px;
    border-radius:18px;
}

.cta{
    text-align:center;
    padding:120px 10%;
    background:#0f1430;
}

.cta h2{
    font-size:52px;
    margin-bottom:20px;
}

.cta p{
    color:#b9bfd5;
    margin-bottom:35px;
    font-size:22px;
}

@media(max-width:900px){

.hero{
grid-template-columns:1fr;
text-align:center;
}

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

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

.nav{
padding:20px;
}

.nav nav{
display:none;
}

.buttons{
justify-content:center;
flex-wrap:wrap;
}

.hero-card{
margin-top:40px;
}

}
