:root{
    --primary:#6D5DFE;
    --secondary:#00D4FF;
    --bg:#0A0D14;
    --card:#111827;
    --text:#FFFFFF;
    --muted:#94A3B8;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.line{
    border-bottom:1px solid rgba(255,255,255,.05);
    padding-bottom: 5px;
}

section{
    padding:100px 0;
}

h1,h2,h3,h4,h5,h6{
    line-height:1.2;
}

p{
    color:var(--muted);
}

.btn{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    border-radius:50px;
    color:white;
    font-weight:600;
    transition:0.3s ease;
}

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

.btn-small{
    display:inline-block;
    padding:7px 14px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    border-radius:25px;
    color:white;
    font-weight:300;
    transition:0.3s ease;
}

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

.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(15px);
    background:rgba(10,13,20,.75);
    border-bottom:1px solid rgba(255,255,255,.05);
}

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

.logo{
    font-size:1.6rem;
    font-weight:800;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.footer{
    text-align:center;
    padding:40px;
    border-top:1px solid rgba(255,255,255,.08);
    color:var(--muted);
}

.footer{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:100px;
    padding-top:60px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.footer-brand{
    max-width:400px;
}

.footer-brand p{
    margin-top:15px;
}

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

.footer-links h4{
    margin-bottom:15px;
}

.footer-links a{
    display:block;
    margin-bottom:10px;
    color:var(--muted);
}

.footer-links a:hover{
    color:white;
}

.footer-bottom{
    margin-top:50px;
    padding:25px 0;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.05);
    color:var(--muted);
}

@media(max-width:768px){

    .footer-content{
        flex-direction:column;
    }

    .footer-links{
        gap:40px;
    }

}

.card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:30px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
}

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

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    margin-bottom:10px;
}

@media(max-width:768px){

    .container{
        width:95%;
    }

    section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:2rem;
    }

}