/* =========================================================
   MegVolt Tech
   About Page — Company
   v0.2
   ========================================================= */


/* ---------------------------------------------------------
   PAGE
   --------------------------------------------------------- */

.about-page {
    background: #111111;
    color: #FFFFFF;
}


/* ---------------------------------------------------------
   SHARED LABEL
   --------------------------------------------------------- */

.about-eyebrow,
.about-section-label {
    display: inline-block;
    color: #D71920;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.4;
    text-transform: uppercase;
}


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

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 6.5rem;
    background:
        radial-gradient(
            circle at 82% 38%,
            rgba(215, 25, 32, 0.18) 0%,
            rgba(215, 25, 32, 0.08) 22%,
            rgba(215, 25, 32, 0) 52%
        ),
        linear-gradient(
            110deg,
            #0B0B0B 0%,
            #111111 58%,
            #1A0D0F 100%
        );
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(215, 25, 32, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(215, 25, 32, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero__content {
    max-width: 900px;
}

.about-eyebrow {
    margin-bottom: 1.25rem;
}

.about-hero__title {
    margin: 0;
    max-width: 900px;
    color: #FFFFFF;
    font-size: clamp(2.8rem, 5.3vw, 5.25rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
}

.about-hero__intro {
    max-width: 760px;
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.05rem;
    line-height: 1.8;
}


/* =========================================================
   COMPANY BACKGROUND
   ========================================================= */

.about-company {
    padding: 6.5rem 0;
    background: #111111;
}

.about-company__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.5fr);
    gap: 5rem;
    align-items: start;
}

.about-company__heading {
    position: sticky;
    top: 110px;
}

.about-company__heading .about-section-label {
    margin-bottom: 1rem;
}

.about-company__heading h2 {
    margin: 0;
    max-width: 420px;
    color: #FFFFFF;
    font-size: clamp(2rem, 3vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.about-company__content {
    max-width: 820px;
}

.about-company__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.9;
}

.about-company__content p + p {
    margin-top: 1.5rem;
}

.about-company__content p:first-child {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    line-height: 1.85;
}


/* =========================================================
   MISSION + VISION
   ========================================================= */

.about-direction {
    padding: 0 0 7rem;
    background: #111111;
}

.about-direction__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.about-direction__card {
    position: relative;
    min-height: 380px;
    overflow: hidden;
    padding: 3rem;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025) 0%,
            rgba(255, 255, 255, 0.01) 100%
        ),
        #151515;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid #D71920;
    border-radius: 6px;
}

.about-direction__card::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(215, 25, 32, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.about-direction__card::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 260px;
    height: 260px;
    background: radial-gradient(
        circle,
        rgba(215, 25, 32, 0.12) 0%,
        rgba(215, 25, 32, 0) 68%
    );
    pointer-events: none;
}

.about-direction__number {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 3.5rem;
    color: rgba(255, 255, 255, 0.09);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.06em;
    line-height: 1;
}

.about-direction__card .about-section-label {
    position: relative;
    z-index: 1;
    margin-bottom: 0.9rem;
}

.about-direction__card h2 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(1.9rem, 2.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.about-direction__card p {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin: 1.35rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   DESKTOP HOVER
   --------------------------------------------------------- */

@media (hover: hover) {

    .about-direction__card {
        transition:
            border-color 0.25s ease,
            background-color 0.25s ease;
    }

    .about-direction__card:hover {
        border-color: rgba(215, 25, 32, 0.45);
        border-bottom-color: #D71920;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .about-hero {
        padding: 6rem 0 5.5rem;
    }

    .about-company {
        padding: 5.5rem 0;
    }

    .about-company__grid {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
        gap: 3.5rem;
    }

    .about-direction__card {
        min-height: 360px;
        padding: 2.5rem;
    }

}


/* =========================================================
   MOBILE / SMALL TABLET
   ========================================================= */

@media (max-width: 768px) {

    .about-hero {
        padding: 4.75rem 0 4.5rem;
    }

    .about-hero__title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        line-height: 1;
    }

    .about-hero__intro {
        margin-top: 1.4rem;
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-company {
        padding: 4.5rem 0;
    }

    .about-company__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-company__heading {
        position: static;
    }

    .about-company__heading h2 {
        max-width: none;
    }

    .about-company__content {
        max-width: none;
    }

    .about-direction {
        padding-bottom: 5rem;
    }

    .about-direction__grid {
        grid-template-columns: 1fr;
    }

    .about-direction__card {
        min-height: 0;
        padding: 2.25rem;
    }

    .about-direction__number {
        margin-bottom: 2.75rem;
        font-size: 4rem;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .about-hero {
        padding: 4rem 0;
    }

    .about-hero__title br {
        display: none;
    }

    .about-company {
        padding: 4rem 0;
    }

    .about-company__content p,
    .about-direction__card p {
        font-size: 0.95rem;
    }

    .about-company__content p:first-child {
        font-size: 1.02rem;
    }

    .about-direction {
        padding-bottom: 4rem;
    }

    .about-direction__card {
        padding: 2rem 1.5rem;
    }

    .about-direction__number {
        margin-bottom: 2.25rem;
        font-size: 3.5rem;
    }

}
