/* =========================================================
   About Intro
   ========================================================= */

.about-intro {

    position: relative;

    padding: 100px 0;

    background:
        linear-gradient(
            120deg,
            #09090f 0%,
            #0c0c14 55%,
            #11080d 100%
        );

    overflow: hidden;

}


.about-intro-container {

    width: min(
        1200px,
        calc(100% - 80px)
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        460px;

    align-items: center;

    gap: 90px;

}


/* =========================================================
   Content
   ========================================================= */

.about-intro-content {

    max-width: 680px;

}


.about-intro-content .section-eyebrow {

    display: block;

    margin-bottom: 18px;

    color: #ef1111;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.about-intro-content h2 {

    margin: 0 0 28px;

    color: #ffffff;

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 1.05;

    font-weight: 700;

    letter-spacing: -1.5px;

}


.about-intro-content h2 span {

    color: #ef1111;

}


.about-intro-content p {

    max-width: 650px;

    margin: 0 0 18px;

    color: rgba(255,255,255,.58);

    font-size: 15px;

    line-height: 1.9;

}


/* =========================================================
   Visual
   ========================================================= */

.about-intro-visual {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.about-intro-card {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 400px;

    min-height: 300px;

    box-sizing: border-box;

    padding: 42px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: flex-start;

    background:
        linear-gradient(
            145deg,
            rgba(239,17,17,.12),
            rgba(8,8,15,.82)
        );

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 18px;

    box-shadow:
        0 30px 70px rgba(0,0,0,.45);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

}


.about-intro-card-label {

    margin-bottom: 22px;

    color: #ef1111;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;

}


.about-intro-card strong {

    display: block;

    color: #ffffff;

    font-size: 32px;

    line-height: 1.05;

    font-weight: 700;

}


.about-intro-card strong + strong {

    color: #ef1111;

}


.about-intro-line {

    width: 55px;

    height: 2px;

    margin: 25px 0 20px;

    background: #ef1111;

}


.about-intro-card-description {

    max-width: 220px;

    color: rgba(255,255,255,.48);

    font-size: 13px;

    line-height: 1.7;

}


/* =========================================================
   Glow
   ========================================================= */

.about-intro-glow {

    position: absolute;

    width: 320px;

    height: 320px;

    border-radius: 50%;

    background:
        rgba(239,17,17,.10);

    filter: blur(80px);

    pointer-events: none;

}


/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 900px) {

    .about-intro-container {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-intro-content {

        max-width: 100%;

    }


    .about-intro-visual {

        min-height: 340px;

    }

}


@media (max-width: 600px) {

    .about-intro {

        padding: 70px 0;

    }


    .about-intro-container {

        width: calc(100% - 40px);

        gap: 45px;

    }


    .about-intro-content h2 {

        font-size: 42px;

    }


    .about-intro-content p {

        font-size: 14px;

        line-height: 1.8;

    }


    .about-intro-card {

        min-height: 270px;

        padding: 32px;

    }


    .about-intro-card strong {

        font-size: 27px;

    }

}