/*==================================================
    ABOUT MG TECH
==================================================*/
#aboutMGTech{
    position:relative;
    padding:180px 0 220px;
    overflow:hidden;
    background:
        radial-gradient(
            circle at top,
            rgba(80,170,255,.08),
            transparent 60%
        );

}

#aboutMGTech .sectionTitle {
    font-family: "Audiowide";
    font-size: clamp(2.1rem, 5vw, 4.4rem);
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

#aboutMGTech .sectionIntro {
    max-width: 900px;
    margin: 0 auto 90px;
    margin-top: 45px;
    font-family: "Kode Mono";
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-glow-color);
    background-color: rgba(0, 0, 0, .30);
    padding: 8px 5%;
    background: rgba(10,25,35,.45);
    backdrop-filter:blur(12px);
    border: 1px solid rgba(120,220,255,.35);
    border-radius: 22px;
    box-shadow:
        0 18px 45px rgba(0,0,0,.35),
        0 0 20px rgba(120,220,255,.18);
}


/* subtle background glow */
#aboutMGTech::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(120,220,255,.05),
            transparent 70%
        );
    pointer-events:none;
}

/*==================================================
    CONTENT
==================================================*/
.aboutMGContent{
    position:relative;
    z-index:2;
    width:min(1200px,92%);
    margin:auto;
}

/*==================================================
    INTRO
==================================================*/
.aboutMGContent .sectionIntro{
    max-width:850px;
    margin:35px auto 80px;
    text-align:center;
    line-height:1.9;
    font-size:1.15rem;
    color:var(--text-secondary);
}

/*==================================================
    GRID
==================================================*/
.aboutMGGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

/*==================================================
    CARDS
==================================================*/
.aboutMGCard{
    font-family: "Kode Mono";
    font-size: 1.15rem;
    line-height: 1.9;
    padding:40px;
    border-radius:22px;
    background:rgba(10,25,35,.45);
    backdrop-filter:blur(12px);
    border:1px solid rgba(120,220,255,.08);
    box-shadow:
        0 12px 35px rgba(0,0,0,.25),
        inset 0 0 0 1px rgba(255,255,255,.02);
    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.aboutMGCard:hover{
    border-color:rgba(120,220,255,.22);
    box-shadow:
        0 20px 50px rgba(0,0,0,.35),
        0 0 30px rgba(120,220,255,.08);
}

/*==================================================
    HEADINGS
==================================================*/
.aboutMGCard h3{
    font-family:"Audiowide";
    color:#BFEFFF;
    margin-bottom:25px;
    font-size:1.4rem;
    letter-spacing:.04em;
}

/*==================================================
    PARAGRAPHS
==================================================*/
.aboutMGCard p{
    line-height:1.95;
    margin-bottom:22px;
    color:var(--text-secondary);
}

/*==================================================
    STRONG
==================================================*/
.aboutMGCard strong{
    color:white;
    font-weight:600;
}

/*==================================================
    BLOCKQUOTE
==================================================*/
.aboutMGCard blockquote{
    margin-top:35px;
    padding-left:25px;
    border-left:4px solid rgba(120,220,255,.45);
    color:#CFF6FF;
    font-family:"Audiowide";
    font-size:1.05rem;
    line-height:1.9;
    font-style:normal;
}


/*==================================================
    PORTFOLIO LINK
==================================================*/
.aboutPortfolioLink{
    font-family: "Kode Mono";
    font-size: 1.15rem;
    line-height: 1.9;
    margin-top:90px;
    text-align:center;
    padding:55px;
    border-radius:28px;
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.02)
        );
    backdrop-filter:blur(12px);
    border:1px solid rgba(120,220,255,.12);
}


.aboutPortfolioLink p{
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.9;
    color:var(--text-secondary);
}


/*==================================================
    BUTTON
==================================================*/
.aboutPortfolioLink .primaryButton{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    min-width:280px;
    min-height:58px;
    padding:14px 28px;
    text-align:center;
    line-height:1.4;
    white-space:normal;
}

.aboutPortfolioLink a{
    font-family: "Audiowide";
}

/*==================================================
    MOBILE
==================================================*/
@media (max-width:768px){

    #aboutMGTech{
        padding:120px 0 140px;
    }

    .aboutMGGrid{
        gap:25px;
    }

    .aboutMGCard{
        padding:30px;
    }

    .aboutMGCard h3{
        font-size:1.25rem;
    }

    .aboutMGCard p{
        font-size:1rem;
        line-height:1.85;
    }

    .aboutPortfolioLink{
        margin-top:60px;
        padding:35px 25px;
    }

}