/* Alpha homepage full-width image banner */
.banner,
.hero-slider {
    position: relative;
    width: 100%;
    margin: 0 0 44px;
    padding: 0;
    overflow: hidden;
    background: transparent;
}

.hs-frame {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 500ms ease;
}

.hs-slide--active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.banner img,
.hs-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.hero-premium-cta {
    position: absolute;
    left: clamp(120px, 31vw, 610px);
    top: 60%;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.hero-premium-cta:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-50%) scale(1.05);
}

.hero-premium-cta__arrow {
    font-size: 17px;
    line-height: 1;
    transform: translateY(-1px);
}

.hs-dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transform: translateX(-50%);
}

.hs-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.hs-dot--active {
    background: #e30613;
    transform: scale(1.35);
}

@media (max-width: 1440px) {
    .hs-frame {
        height: 480px;
    }
}

@media (max-width: 1200px) {
    .hs-frame {
        height: 440px;
    }
}

@media (max-width: 900px) {
    .hs-frame {
        height: 320px;
    }
}

@media (min-width: 901px) and (max-width: 1536px) and (max-height: 950px) {
    .hs-frame {
        aspect-ratio: 4064 / 1056;
        height: auto;
        min-height: 0;
        max-height: 400px;
        background: #070707;
    }

    .banner img,
    .hs-media {
        object-fit: contain;
        object-position: center center;
        background: #070707;
    }
}

@media (max-width: 640px) {
    .banner,
    .hero-slider {
        margin-bottom: 34px;
        overflow: visible;
    }

    .hs-frame,
    .banner img,
    .hs-media {
        height: 180px;
    }

    .hs-dots {
        bottom: 12px;
    }

    .hero-premium-cta {
        position: static;
        width: calc(100% - 32px);
        justify-content: center;
        margin: 14px auto 0;
        min-height: 52px;
        padding: 15px 24px;
        border-color: rgba(15, 23, 42, 0.14);
        background: rgba(15, 23, 42, 0.86);
        color: #ffffff;
        box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
        transform: none;
    }

    .hero-premium-cta:hover {
        border-color: rgba(15, 23, 42, 0.22);
        background: rgba(15, 23, 42, 0.92);
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hs-slide,
    .hs-dot {
        transition: none !important;
    }
}
