
:root{
    --primary:#16A34A;
    --primary-light:#22C55E;
    --secondary:#38BDF8;
    --blue:#2563EB;
    --dark:#08111F;
    --dark-2:#132238;
    --dark-3:#1E293B;
    --text:#F8FAFC;
    --muted:#94A3B8;
    --border:rgba(255,255,255,.08);
    --glass:rgba(255,255,255,.05);
    --shadow:0 25px 60px rgba(0,0,0,.35);
    --radius:18px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--dark);
    color:var(--text);
    overflow-x:hidden;
    line-height:1.6;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at 15% 20%,rgba(22,163,74,.10),transparent 30%),
    radial-gradient(circle at 85% 30%,rgba(56,189,248,.08),transparent 25%),
    radial-gradient(circle at 50% 90%,rgba(37,99,235,.10),transparent 35%);
    z-index:-2;
}

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

img{
    max-width:100%;
}

#hero{
    min-height:100vh;
    position:relative;
    background:
    linear-gradient(180deg,#08111f 0%,#132238 100%);
}

.navbar{
    width:min(1400px,92%);
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:30px 0;
}

.logo{
    font-size:32px;
    font-weight:800;
    letter-spacing:1px;
}

.logo strong{
    color:#fff;
}

.logo span{
    color:var(--primary);
}

.menu{
    display:flex;
    gap:35px;
    list-style:none;
}

.menu a{
    color:#dbeafe;
    transition:.3s;
    font-weight:500;
}

.menu a:hover{
    color:var(--primary-light);
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 28px;
    border-radius:12px;
    font-weight:700;
    transition:.35s;
}

.btn-primary{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    color:#fff;
    box-shadow:0 15px 35px rgba(22,163,74,.25);
}

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

.btn-secondary{
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
}

.hero-container{
    width:min(1400px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    align-items:center;
    gap:70px;
    min-height:calc(100vh - 100px);
}

.badge{
    display:inline-block;
    border:1px solid rgba(34,197,94,.4);
    color:#9df7c0;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
    background:rgba(34,197,94,.08);
}

.hero-left h1{
    font-size:72px;
    line-height:1.05;
    margin-bottom:25px;
    max-width:760px;
}

.hero-left h1 span{
    background:linear-gradient(90deg,var(--primary),var(--secondary));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-left p{
    color:var(--muted);
    font-size:20px;
    max-width:650px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
}

.glass-card{
    background:var(--glass);
    border:1px solid var(--border);
    border-radius:var(--radius);
    backdrop-filter:blur(18px);
    padding:35px;
    box-shadow:var(--shadow);
}

.glass-card h3{
    margin-bottom:25px;
    font-size:24px;
}

.metric{
    padding:18px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.metric:last-child{
    border-bottom:none;
}

.metric small{
    display:block;
    color:var(--muted);
}

.metric strong{
    font-size:32px;
}

section{
    width:min(1400px,92%);
    margin:auto;
    padding:120px 0;
}

section h2{
    font-size:54px;
    margin-bottom:20px;
}

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

.card,
.feature{
    background:var(--glass);
    border:1px solid var(--border);
    border-radius:var(--radius);
    padding:30px;
    transition:.35s;
}

.card:hover,
.feature:hover{
    transform:translateY(-8px);
    border-color:rgba(34,197,94,.35);
}

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

@media(max-width:1100px){
    .hero-container{
        grid-template-columns:1fr;
        text-align:center;
        padding-bottom:80px;
    }

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

    .hero-left h1{
        font-size:52px;
        margin:auto auto 25px;
    }

    .hero-left p{
        margin:auto;
    }

    .glass-card{
        max-width:550px;
        margin:auto;
    }
}

@media(max-width:768px){

    .menu{
        display:none;
    }

    .navbar{
        justify-content:space-between;
    }

    .hero-left h1{
        font-size:42px;
    }

    section h2{
        font-size:38px;
    }
}
