.home-hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 42px) 0 42px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #050505;
}

.home-hero__media,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}

.home-hero__media {
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    overflow: hidden;
}

.home-hero__video,
.home-hero__bg {
    position: absolute;
    inset: 0;
}

.home-hero__video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.16);
    filter: saturate(0.9) contrast(1.02) brightness(0.72);
    animation: heroVideoFloat 16s ease-in-out infinite alternate;
}

.home-hero__bg {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 35%, rgba(182, 212, 51, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(0,0,0,0.24), rgba(0,0,0,0.58)),
        url('../../images/placeholders/hero-bg.jpg') center center / cover no-repeat;
    opacity: 0.14;
}

.home-hero__overlay {
    background:
        linear-gradient(180deg, rgba(5,5,5,0.18) 0%, rgba(5,5,5,0.36) 34%, rgba(5,5,5,0.90) 100%);
}

.home-hero .container {
    position: relative;
    z-index: 2;
}

.home-hero__content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.home-hero__content h1 {
    margin-top: 18px;
    max-width: 760px;
    margin-inline: auto;
}

.home-hero__content h1 span {
    color: var(--color-accent);
}

.home-hero__content p {
    max-width: 640px;
    margin: 18px auto 0;
    color: var(--color-text-soft);
    font-size: 1rem;
}

.home-hero__actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@keyframes heroVideoFloat {
    0% {
        transform: scale(1.16);
    }
    100% {
        transform: scale(1.22);
    }
}

@media (min-width: 768px) {
    .home-hero__actions {
        flex-direction: row;
        justify-content: center;
    }
}