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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Inter,Arial,sans-serif;
    background:#040b16;
    color:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

header{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    backdrop-filter:blur(12px);
    background:rgba(3,8,18,0.82);
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.container{
    width:min(1280px,92%);
    margin:auto;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:48px;
}

.nav-links{
    display:flex;
    gap:32px;
}

.nav-links a{
    color:#dbe7ff;
    font-size:14px;
    letter-spacing:.5px;
    transition:.3s;
}

.nav-links a:hover{
    color:#35a7ff;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    background:
    radial-gradient(circle at top right, rgba(0,119,255,.25), transparent 25%),
    radial-gradient(circle at bottom left, rgba(0,140,255,.12), transparent 25%),
    linear-gradient(135deg,#040b16,#08172e);
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    right:-200px;
    top:120px;
    width:700px;
    height:700px;
    background:radial-gradient(circle, rgba(38,130,255,.28), transparent 70%);
    filter:blur(20px);
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    align-items:center;
    gap:60px;
}

.hero h1{
    font-size:72px;
    line-height:1.02;
    margin-bottom:28px;
    font-weight:800;
}

.hero h1 span{
    color:#35a7ff;
}

.hero p{
    font-size:20px;
    line-height:1.8;
    color:#adc1da;
    margin-bottom:40px;
    max-width:720px;
}

.btn{
    display:inline-block;
    padding:16px 34px;
    background:linear-gradient(135deg,#1677ff,#38b6ff);
    color:#fff;
    border-radius:14px;
    font-weight:700;
    box-shadow:0 10px 30px rgba(0,119,255,.3);
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}

.hero-card{
    background:rgba(10,22,40,.88);
    border:1px solid rgba(255,255,255,.08);
    border-radius:26px;
    padding:26px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.dashboard{
    background:#091424;
    border-radius:18px;
    overflow:hidden;
}

.dashboard-top{
    display:flex;
    gap:8px;
    padding:14px 16px;
    border-bottom:1px solid rgba(255,255,255,.05);
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#29486d;
}

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    padding:22px;
}

.stat{
    background:#0d1d33;
    border-radius:14px;
    padding:18px;
}

.stat h3{
    color:#7fb7ff;
    font-size:13px;
    margin-bottom:10px;
}

.stat strong{
    font-size:28px;
}

.chart{
    height:180px;
    margin:0 22px 22px;
    border-radius:14px;
    background:
    linear-gradient(180deg, rgba(18,119,255,.2), transparent),
    #0d1d33;
    position:relative;
}

.chart::after{
    content:"";
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:40px 40px;
}

.section{
    padding:120px 0;
}

.section-title{
    font-size:48px;
    margin-bottom:20px;
}

.section-sub{
    color:#9fb3ca;
    max-width:760px;
    line-height:1.8;
    margin-bottom:60px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.card{
    background:linear-gradient(180deg,#0b1830,#09111f);
    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    padding:36px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-6px);
    border-color:rgba(53,167,255,.4);
}

.card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#55b4ff;
}

.card p{
    color:#bdd0e6;
    line-height:1.8;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.about-box{
    background:#091424;
    border-radius:24px;
    padding:40px;
    border:1px solid rgba(255,255,255,.06);
}

.notice{
    margin-top:25px;
    padding:20px;
    border-left:4px solid #35a7ff;
    background:#0d1d33;
    border-radius:12px;
    color:#cfe3ff;
}

.footer{
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,.08);
    background:#020811;
}

.footer-wrap{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer img{
    height:42px;
}

.footer-links{
    display:flex;
    gap:22px;
}

.footer-links a{
    color:#97aac1;
}

.legal{
    padding-top:140px;
    min-height:100vh;
}

.legal-box{
    background:#091424;
    border-radius:26px;
    padding:50px;
    border:1px solid rgba(255,255,255,.06);
}

.legal h1{
    font-size:52px;
    margin-bottom:35px;
}

.legal h2{
    margin-top:35px;
    margin-bottom:14px;
    color:#55b4ff;
}

.legal p{
    color:#d0dceb;
    line-height:1.9;
    margin-bottom:18px;
}

@media(max-width:980px){
.hero-grid,.about,.cards{
grid-template-columns:1fr;
}
.hero h1{
font-size:52px;
}
.nav-links{
display:none;
}
}
