.project-hero{
    min-height:100vh;

    background:
    radial-gradient(
    circle at top right,
    rgba(255,102,0,.18),
    transparent 30%
    ),
    #050816;

    display:flex;
    flex-wrap:wrap;

    align-items:center;
    justify-content:space-between;

    gap:80px;

    padding:80px;

    overflow:hidden;
    position:relative;
}

/* =========================================
LEFT
========================================= */

.project-hero-left{
    width:calc(45% - 40px);

    position:relative;
    z-index:2;

    margin-top:5rem;
}

.project-label{
    display:inline-flex;
    align-items:center;

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,102,0,.12);

    border:1px solid rgba(255,102,0,.25);

    color:#ff7b00;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:26px;
}

.project-hero h1{
    font-size:72px;
    line-height:1;

    color:white;

    margin-bottom:24px;

    font-weight:800;
}

.project-description{
    font-size:24px;
    line-height:1.5;

    color:white;

    margin-bottom:22px;

    max-width:650px;

    font-weight:600;
}

.project-text{
    color:rgba(255,255,255,.65);

    line-height:1.8;

    max-width:650px;

    margin-bottom:40px;

    font-size:16px;
}

/* =========================================
BUTTONS
========================================= */

.project-buttons{
    display:flex;
    flex-wrap:wrap;

    gap:18px;

    margin-bottom:34px;
}

.project-btn{
    height:56px;

    padding:0 26px;

    border-radius:18px;

    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;

    font-weight:600;

    transition:.25s;
}

.project-btn.primary{
    background:#ff6b00;
    color:white;
}

.project-btn.primary:hover{
    transform:translateY(-2px);
}

.project-btn.secondary{
    border:1px solid rgba(255,255,255,.1);

    color:white;

    background:rgba(255,255,255,.03);
}

/* =========================================
TAGS
========================================= */

.project-tags{
    display:flex;
    flex-wrap:wrap;

    gap:12px;
}

.project-tags span{
    display:flex;
    align-items:center;

    padding:10px 16px;

    border-radius:14px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    color:white;

    font-size:13px;

    font-weight:500;
}

/* =========================================
RIGHT
========================================= */

.project-hero-right{
    width:calc(55% - 40px);

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

.project-mockup-glow{
    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:radial-gradient(
    circle,
    rgba(255,102,0,.25),
    transparent 70%
    );

    filter:blur(40px);
}

.project-mockup{
    width:100%;

    max-width:900px;

    position:relative;
    z-index:2;

    border-radius:24px;

    transform:
    perspective(1400px)
    rotateY(-8deg)
    rotateX(4deg);

    filter:
    drop-shadow(
    0 40px 80px
    rgba(0,0,0,.45)
    );
}

/* =========================================
STATS FULL WIDTH
========================================= */

.project-stats-wrapper{
    width:100%;

    margin-top:10px;
}

.project-stats{
    width:100%;

    display:flex;
    flex-wrap:wrap;

    gap:14px;
}

.project-stat{
    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 18px;

    border-radius:18px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(10px);
}

.project-stat::after{
    display:none !important;
}

.project-stat-icon{
    width:38px;
    height:38px;

    border-radius:12px;

    background:rgba(255,102,0,.12);

    border:1px solid rgba(255,102,0,.2);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ff7b00;

    flex-shrink:0;
}

.project-stat strong{
    color:white;

    font-size:14px;
    line-height:1.2;

    font-weight:600;
}

.project-stat span{
    display:none;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .project-hero{

        flex-direction:column;

        padding:60px 30px;

        gap:50px;
    }

    .project-hero-left,
    .project-hero-right{
        width:100%;
    }

    .project-hero h1{
        font-size:52px;
    }

}

@media(max-width:768px){

    .project-hero{
        padding:120px 20px 60px;
    }

    .project-hero-left{
        margin-top:0;
    }

    .project-hero h1{
        font-size:42px;
    }

    .project-description{
        font-size:18px;
    }

    .project-buttons{
        flex-direction:column;
    }

    .project-btn{
        width:100%;
        justify-content:center;
    }

    .project-tags{
        gap:10px;
    }

    .project-tags span{
        font-size:12px;
    }

    .project-stats{
        gap:12px;
    }

    .project-stat{
        width:100%;
    }

    .project-mockup{
        transform:none;
    }

}