.about-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #080808;
}

.about-hero__video,
.about-hero__overlay,
.about-hero__mist {
    position: absolute;
    inset: 0;
}

.about-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(0.72) brightness(0.58) contrast(0.96);
}

.about-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.44) 0%, rgba(0,0,0,0.36) 22%, rgba(0,0,0,0.44) 56%, rgba(0,0,0,0.72) 100%),
        linear-gradient(90deg, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.06) 20%, rgba(0,0,0,0.06) 80%, rgba(0,0,0,0.24) 100%);
}

.about-hero__mist {
    z-index: 1;
    background:
        radial-gradient(circle at 50% 8%, rgba(255,255,255,0.24), transparent 24%),
        radial-gradient(circle at 82% 52%, rgba(255,255,255,0.06), transparent 16%);
    filter: blur(10px);
    pointer-events: none;
}

.about-hero__content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 196px 24px 96px;
}

.about-hero__headline {
    text-align: center;
    width: min(1040px, calc(100% - 48px));
    margin: 0 auto;
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition: opacity 0.9s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-hero__headline.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.about-hero__title {
    display: block;
    max-width: 9.5ch;
    margin: 0 auto;
    font-size: clamp(38px, 6vw, 82px);
    line-height: 0.92;
    font-weight: 300;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.98);
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    text-wrap: balance;
}

.about-hero__underline {
    display: none;
}

.about-hero__underline::before {
    display: none;
}

.about-hero__headline.is-visible .about-hero__underline::before {
    transform: none;
}

.about-hero__orb {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.72), 0 0 28px rgba(255,255,255,0.28);
    z-index: 2;
}

.about-hero__orb--left {
    left: 108px;
    top: 50%;
}

.about-hero__orb--right {
    right: 108px;
    top: 50%;
}

@media (max-width: 980px) {
    .about-hero__content {
        padding: 208px 22px 84px;
    }

    .about-hero__headline {
        width: min(760px, calc(100% - 36px));
    }

    .about-hero__title {
        max-width: 10ch;
        font-size: clamp(34px, 6.4vw, 64px);
        line-height: 0.92;
    }

    .about-hero__orb--left {
        left: 38px;
    }

    .about-hero__orb--right {
        right: 38px;
    }
}

@media (max-width: 640px) {
    .about-hero__content {
        min-height: 100svh;
        padding: 174px 18px 64px;
        align-items: center;
    }

    .about-hero__headline {
        width: min(100%, 360px);
    }

    .about-hero__title {
        max-width: 9ch;
        font-size: clamp(28px, 8.6vw, 42px);
        line-height: 0.94;
        letter-spacing: -0.04em;
    }

    .about-hero__orb {
        width: 8px;
        height: 8px;
    }

    .about-hero__orb--left {
        left: 18px;
    }

    .about-hero__orb--right {
        right: 18px;
    }
}
