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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#1C1C2D;

    color:#fff;

    overflow-x:hidden;

    line-height:1.7;

}

.container{

    width:min(1150px,92%);
    margin:auto;

}

/* ---------------- HEADER ---------------- */

header{

    position:sticky;
    top:0;

    backdrop-filter:blur(18px);

    background:rgba(28,28,45,.82);

    border-bottom:1px solid rgba(255,255,255,.06);

    z-index:999;

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    display:flex;
    align-items:center;
    gap:14px;

    font-size:22px;
    font-weight:800;

}

.logoImage{

    width:48px;
    height:48px;

    border-radius:14px;

    object-fit:cover;

    box-shadow:0 10px 30px rgba(79,140,255,.35);

}

nav{

    display:flex;
    gap:30px;

}

nav a{

    color:#B8C2D8;
    text-decoration:none;

    transition:.25s;

    font-weight:600;

}

nav a:hover{

    color:white;

}


/* ---------------- HERO ---------------- */

.hero{

    padding:120px 0;

    position:relative;

    overflow:hidden;

}

.hero:before{

    content:"";

    width:700px;
    height:700px;

    position:absolute;

    left:-200px;
    top:-200px;

    background:#346CFF;

    opacity:.18;

    filter:blur(140px);

}

.hero:after{

    content:"";

    width:600px;
    height:600px;

    position:absolute;

    right:-150px;
    bottom:-200px;

    background:#5B8CFF;

    opacity:.15;

    filter:blur(140px);

}

.heroContent{

    position:relative;
    z-index:2;

    text-align:center;

}

.hero h1{

    font-size:64px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:28px;

}

.hero p{

    max-width:760px;

    margin:auto;

    color:#B5C0D8;

    font-size:20px;

}

.heroButtons{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:18px;

}

.primaryButton{

    text-decoration:none;

    background:#4F8CFF;

    color:white;

    padding:18px 38px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

    box-shadow:0 15px 40px rgba(79,140,255,.35);

}

.primaryButton:hover{

    transform:translateY(-4px);

}

.secondaryButton{

    text-decoration:none;

    color:white;

    padding:18px 38px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.12);

    background:rgba(255,255,255,.03);

    transition:.3s;

}

.secondaryButton:hover{

    background:rgba(255,255,255,.07);

}


/* ---------------- FEATURES ---------------- */

.features{

    padding:100px 0;

}

.features h2{

    text-align:center;

    font-size:42px;

    margin-bottom:70px;

}

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:28px;

}

.card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:38px;

    transition:.35s;

    backdrop-filter:blur(20px);

}

.card:hover{

    transform:translateY(-8px);

    border-color:#4F8CFF;

    box-shadow:0 20px 50px rgba(79,140,255,.15);

}

.icon{

    width:64px;
    height:64px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;

    margin-bottom:25px;

    background:linear-gradient(135deg,#4F8CFF,#2D6BFF);

}

.card h3{

    margin-bottom:12px;

    font-size:24px;

}

.card p{

    color:#AEB8CF;

}

/* ---------------- ABOUT ---------------- */

.about{

    padding:110px 0;

}

.about h2{

    text-align:center;

    font-size:42px;

    margin-bottom:35px;

}

.about p{

    max-width:850px;

    margin:auto;

    color:#B8C2D8;

    font-size:18px;

    text-align:center;

}


/* ---------------- FOOTER ---------------- */

footer{

    border-top:1px solid rgba(255,255,255,.06);

    margin-top:70px;

    padding:35px 0;

}

footer .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

footer p{

    color:#9FA9C2;

}

.footerLinks{

    display:flex;

    gap:24px;

}

.footerLinks a{

    color:#BFC8DE;

    text-decoration:none;

}

.footerLinks a:hover{

    color:white;

}

/* ---------------- MOBILE ---------------- */

@media(max-width:768px){

.hero{

padding:80px 0;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:17px;

}

.heroButtons{

flex-direction:column;

align-items:center;

}

nav{

display:none;

}

.features h2,
.about h2{

font-size:32px;

}

footer .container{

flex-direction:column;

gap:15px;

}

}