section[id] {
    scroll-margin-top: calc(var(--header-height) + 18px);
}

.section-heading {
    position: relative;
    z-index: 2;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 56px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #6e48f5;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-eyebrow > span {
    width: 28px;
    height: 1px;
    background: currentColor;
}

.section-heading h2,
.about-panel h2 {
    font-size: clamp(43px, 4.7vw, 72px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.055em;
}

.section-heading--split > p {
    max-width: 570px;
    color: #686b76;
    font-size: 16px;
    line-height: 1.7;
}

.section-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
    color: #777a85;
    font-size: 13px;
}

.section-caption > span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6e48f5;
    box-shadow: 0 0 14px rgba(110, 72, 245, 0.65);
}

@media (max-width: 960px) {
    .section-heading--split {
        grid-template-columns: 1fr;
        gap: 26px;
        margin-bottom: 44px;
    }

    .section-heading--split > p {
        max-width: 720px;
    }
}

@media (max-width: 620px) {
    .section-heading h2,
    .about-panel h2 {
        font-size: 38px;
    }

    .section-heading--split > p {
        font-size: 14px;
    }
}

html.section-reveal-enabled [data-section-reveal] {
    opacity: 0;
    transform: translate3d(48px, 0, 0);
}

html.section-reveal-enabled [data-section-reveal].is-section-reveal-running {
    animation: section-slide-in-from-right 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: var(--section-reveal-delay, 0ms);
    will-change: transform, opacity;
}

html.section-reveal-enabled [data-section-reveal].is-section-reveal-complete {
    opacity: 1;
    transform: none;
    animation: none;
    will-change: auto;
}

@keyframes section-slide-in-from-right {
    0% {
        opacity: 0;
        transform: translate3d(48px, 0, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 620px) {
    html.section-reveal-enabled [data-section-reveal] {
        transform: translate3d(28px, 0, 0);
    }

    @keyframes section-slide-in-from-right {
        0% {
            opacity: 0;
            transform: translate3d(28px, 0, 0);
        }

        100% {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
}
