.about-hero {
    min-height: 70vh;

    display: grid;
    place-items: center;

    padding: 120px 24px 80px;

    text-align: center;

    background:
        radial-gradient(
            ellipse at 50% 30%,
            rgba(87, 190, 210, 0.22) 0%,
            rgba(46, 128, 153, 0.12) 34%,
            transparent 68%
        ),
        linear-gradient(
            180deg,
            rgba(17, 59, 77, 0.38) 0%,
            rgba(9, 36, 49, 0.14) 60%,
            transparent 100%
        );
}

.about-hero h1 {
    margin: 16px 0 20px;

    font-size: clamp(56px, 9vw, 112px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.about-intro {
    max-width: 720px;
    margin: 0 auto;

    color: var(--secondary-text-color);

    font-size: 19px;
    line-height: 1.75;
}

.about-section {
    padding: 100px 0;

    border-top: 1px solid var(--border-color);
}

.about-section .container {
    max-width: 860px;
}

.about-section h2 {
    margin-bottom: 32px;

    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.about-section p {
    color: var(--secondary-text-color);

    font-size: 18px;
    line-height: 1.9;
}

.about-section p + p {
    margin-top: 24px;
}

.about-section strong {
    color: var(--text-color);

    font-weight: 600;
}

.about-section:nth-of-type(even) {
    background:
        linear-gradient(
            180deg,
            rgba(4, 20, 29, 0.10),
            rgba(4, 20, 29, 0.22)
        );
}

@media (max-width: 768px) {

    .about-hero {
        min-height: 62vh;
        padding: 110px 20px 70px;
    }

    .about-intro,
    .about-section p {
        font-size: 16px;
    }

    .about-section {
        padding: 76px 0 90px;
    }

    .about-section h2 {
        margin-bottom: 24px;
    }

}