*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:#020617;
    color:#FFFFFF;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.header{
    width:100%;
    position:fixed;
    top:0;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(2,6,23,.7);
    border-bottom:1px solid rgba(255,255,255,.05);
}

.header .container{
    height:90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    height:48px;
}

.menu{
    display:flex;
    gap:32px;
}

.menu a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.menu a:hover{
    color:#4F7CFF;
}

.btn-primary{
    background:#2E3192;
    color:#FFF;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    transition:.3s;
    font-weight:600;
}

.btn-primary:hover{
    background:#4F7CFF;
    transform:translateY(-2px);
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:#2E3192;
    filter:blur(200px);
    opacity:.25;
    top:-200px;
    right:-100px;
}

.hero-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

.hero-text h1{
    font-size:72px;
    line-height:1.1;
    margin:24px 0;
    font-family:'Poppins', sans-serif;
}

.hero-text p{
    font-size:20px;
    color:#94A3B8;
    line-height:1.7;
}

.badge{
    background:rgba(79,124,255,.15);
    border:1px solid rgba(79,124,255,.3);
    color:#4F7CFF;
    padding:10px 18px;
    border-radius:999px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.1);
    padding:14px 28px;
    border-radius:12px;
    color:#FFF;
    text-decoration:none;
}

.hero-image img{
    width:100%;
}



.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.hero-left h1{
    font-size:82px;
    line-height:1;
    margin:24px 0;
    font-family:'Poppins',sans-serif;
}

.hero-left p{
    color:#94A3B8;
    font-size:20px;
    line-height:1.8;
    max-width:620px;
}

.hero-badge{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    border:1px solid rgba(79,124,255,.25);
    background:rgba(79,124,255,.08);
    color:#4F7CFF;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:40px;
}

.btn-outline{
    padding:14px 28px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.1);
    color:#FFF;
    text-decoration:none;
}

.hero-metrics{
    display:flex;
    gap:20px;
    margin-top:60px;
}

.metric-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.05);
    backdrop-filter:blur(14px);
    padding:24px;
    border-radius:20px;
    min-width:160px;
}

.metric-card h3{
    font-size:32px;
    color:#4F7CFF;
}

.metric-card span{
    color:#94A3B8;
}

.dashboard-card{
    position:relative;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.05);
    border-radius:28px;
    padding:20px;
    backdrop-filter:blur(20px);
}

.dashboard-card img{
    width:100%;
    border-radius:18px;
}

.hero-blur{
    position:absolute;
    border-radius:50%;
    filter:blur(160px);
}

.hero-blur-1{
    width:500px;
    height:500px;
    background:#2E3192;
    top:-120px;
    right:-100px;
    opacity:.4;
}

.hero-blur-2{
    width:400px;
    height:400px;
    background:#4F7CFF;
    bottom:-150px;
    left:-100px;
    opacity:.2;
}