:root{
    --bg:#08111F;
    --text:#F8F9FA;
    --muted:#9AA7C5;
    --gold:#E9C46A;
    --green:#2A9D8F;
    --card:rgba(255,255,255,.06);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html,
body{
    overflow-x:hidden;
}

body{
    font-family:Manrope,sans-serif;
    background:var(--bg);
    color:var(--text);
}

/* =========================
   BACKGROUND
========================= */

.bg{
    position:fixed;
    border-radius:50%;
    filter:blur(140px);
    opacity:.18;
    z-index:-1;
}

.one{
    width:420px;
    height:420px;
    background:var(--green);
    left:-120px;
    top:-120px;
}

.two{
    width:460px;
    height:460px;
    background:var(--gold);
    right:-180px;
    bottom:-180px;
}

/* =========================
   HEADER
========================= */

header{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px 0 10px;
}

.logo img{
    width:260px;
    height:auto;
    display:block;
}

/* =========================
   HERO
========================= */

.hero{
    width:min(1400px,92%);
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
}

.left{
    max-width:620px;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:var(--card);
    border-radius:999px;
    margin-bottom:28px;
}

.badge span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#2ecc71;
}

h1{
    font-size:clamp(4rem,8vw,6rem);
    line-height:.9;
    letter-spacing:-3px;
    font-weight:800;
    margin-bottom:22px;
}

.eyebrow{
    color:var(--gold);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:18px;
}

p{
    color:var(--muted);
    font-size:22px;
    line-height:1.7;
}

.left p:last-of-type{
    margin-bottom:40px;
}

.buttons{
    display:flex;
    margin-bottom:36px;
}

.primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    background:var(--gold);
    color:#08111F;
    padding:18px 30px;
    border-radius:18px;
    font-weight:700;
    transition:.3s;
}

.primary i{
    font-size:1.2rem;
}.primary:hover{
    transform:translateY(-3px);
}

.socials{
    display:flex;
    gap:18px;
margin-bottom:40px;
}

.social{
    width:56px;
    height:56px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:18px;
    text-decoration:none;
    color:white;
    font-size:22px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    transition:.3s;
}

.social:hover{
    transform:translateY(-6px);
    color:var(--gold);
    border-color:rgba(233,196,106,.35);
}

/* =========================
   RIGHT
========================= */

.right{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    position:relative;
}

.right::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:var(--green);
    border-radius:50%;
    filter:blur(130px);
    opacity:.2;
}

.right img{
    width:760px;
    max-width:100%;
    position:relative;
    z-index:2;
    display:block;
    filter:drop-shadow(0 50px 80px rgba(0,0,0,.45));
}

/* =========================
   MOBILE
========================= */

@media (max-width:900px){

    header{
        padding:25px 0;
    }

    .logo img{
        width:260px;
    }

    .hero{
    grid-template-columns:1fr;
    text-align:center;
    gap:20px;
    width:100%;
    padding:0;
}

    .right{
    order:-1;
    display:flex;
    justify-content:center;
    align-items:center;
    height:auto;
    position:relative;
    overflow:hidden;
}

.right::before{
    width:300px;
    height:300px;
    filter:blur(100px);
}

    .right img{
    width:100%;
    max-width:420px;
    position:relative;
    z-index:2;
    display:block;
    filter:drop-shadow(0 50px 80px rgba(0,0,0,.45));
    transition:opacity .25s linear;
    will-change:opacity;
}

    .left{
    max-width:620px;
    z-index:2;
    transition:transform .08s linear;
will-change: transform;
}

    .buttons,
    .socials{
        justify-content:center;
margin-bottom:40px;
    }

    h1{
    font-size:68px;
    line-height:.9;
}

    p{
    font-size:21px;
    line-height:1.6;
    margin-left:auto;
    margin-right:auto;
}
}