/* ===================================
        PAGE
=================================== */

.page-shell{

    width:min(1250px,92%);

    margin:auto;

}

/* ===================================
        HERO
=================================== */

.projects-hero{

    text-align:center;

    padding:90px 0 70px;

}

.hero-pill{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(124,58,237,.15);

    border:1px solid rgba(124,58,237,.30);

    color:#c4b5fd;

    margin-bottom:25px;

}

.projects-hero h1{

    font-size:64px;

    color:white;

    line-height:1.1;

    margin:0;

}

.gradient-text{

    display:block;

    background:linear-gradient(
    90deg,
    #3b82f6,
    #06b6d4,
    #7c3aed);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.projects-hero p{

    max-width:760px;

    margin:30px auto;

    color:#94a3b8;

    line-height:1.8;

    font-size:18px;

}

/* ===================================
        GRID
=================================== */

.project-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

    margin-bottom:80px;

}

/* ===================================
        CARD
=================================== */

.card{

    position:relative;

    padding:35px;

    text-align:center;

    border-radius:25px;

    overflow:hidden;

    transition:.4s;

}

.card::before{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    background:rgba(124,58,237,.20);

    border-radius:50%;

    filter:blur(70px);

    top:-70px;

    right:-70px;

}

.card:hover{

    transform:translateY(-12px);

}

/* ===================================
        ICON
=================================== */

.icon{

    width:90px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:linear-gradient(
    135deg,
    #3b82f6,
    #7c3aed);

    color:white;

    font-size:34px;

}

/* ===================================
        TEXT
=================================== */

.card h2{

    color:white;

    margin-bottom:18px;

    font-size:28px;

}

.card p{

    color:#94a3b8;

    line-height:1.8;

    margin-bottom:28px;

}

/* ===================================
        FOOTER
=================================== */

.site-footer{

    text-align:center;

    padding:35px;

    color:#94a3b8;

    border-top:1px solid rgba(255,255,255,.08);

}

/* ===================================
        RESPONSIVE
=================================== */

@media(max-width:768px){

.projects-hero h1{

font-size:42px;

}

.project-container{

grid-template-columns:1fr;

}

}