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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left,#0c5f22 0%,#02150a 35%,#021008 100%);
    color:#fff;
    line-height:1.5;
}

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

.wrap{
    width:min(1100px,92%);
    margin:auto;
}

.topbar{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

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

.brand{
    display:flex;
    align-items:center;
    gap:12px;
}

.brand__logo{
    width:48px;
    height:auto;
}

.brand__name{
    font-size:30px;
    font-weight:800;
}

.brand__tag{
    font-size:14px;
    opacity:.8;
}

.btn{
    background:#9cff4d;
    color:#000;
    font-weight:700;
    padding:12px 24px;
    border-radius:14px;
    transition:.25s;
}

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

.btn--ghost{
    background:transparent;
    color:#fff;
    border:1px solid rgba(255,255,255,.18);
}

.hero{
    padding:70px 0;
}

.hero__inner{
    display:grid;
    grid-template-columns:1.2fr .9fr;
    gap:40px;
    align-items:start;
}

.hero h1{
    font-size:72px;
    font-weight:900;
    line-height:1;
    margin-bottom:18px;
}

.lead{
    font-size:26px;
    opacity:.9;
    margin-bottom:16px;
}

.cta{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.panel{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);
    border-radius:24px;
    padding:20px;
    backdrop-filter:blur(8px);
}

.panel__head{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:18px;
}

.panel__title{
    font-weight:800;
    font-size:22px;
}

.panel__sub{
    opacity:.75;
}

.badge{
    border:1px solid rgba(255,120,120,.4);
    color:#ffd3d3;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
}

.tiles{
    display:grid;
    gap:14px;
}

.tile{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    border-radius:18px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    transition:.25s;
}

.tile:hover{
    background:rgba(255,255,255,.07);
    transform:translateY(-2px);
}

.tile__icon{
    font-size:26px;
}

.tile__t{
    font-weight:700;
    font-size:20px;
}

.tile__s{
    opacity:.7;
    font-size:14px;
}

.section{
    padding:70px 0;
}

.section--alt{
    border-top:1px solid rgba(255,255,255,.08);
}

.section__head{
    margin-bottom:24px;
}

.section__head h2{
    font-size:42px;
    margin-bottom:8px;
}

.section__head p{
    opacity:.75;
}

.contact{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.contact__box{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:24px;
}

.contact__label{
    opacity:.7;
    margin-bottom:8px;
}

.contact__value{
    display:block;
    font-size:28px;
    font-weight:800;
    margin-bottom:8px;
}

.contact__small{
    opacity:.7;
}

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

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

.footer__right{
    display:flex;
    gap:20px;
}

@media(max-width:900px){

    .hero__inner{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:48px;
    }

    .lead{
        font-size:20px;
    }

    .contact{
        grid-template-columns:1fr;
    }

    .footer__inner{
        flex-direction:column;
    }
}