.hero {
    position: relative;
    width: 100%;
    min-height: 70svh;
    height: 100%;
    overflow: hidden;
    color: var(--c-tWhite);
}

.hero_content {
    padding-bottom: 4rem;
}

.hero__video,
.hero__fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__video {
    object-fit: cover;
}

.hero__fallback {
    position: relative;
    background: linear-gradient(135deg, #1a1525 0%, #2B2140 30%, #3d2a5c 60%, #2d1f3d 100%);
    background-size: cover;
    background-position: center;
}

.hero__fallback-curtain {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 18%;
    max-width: 12rem;
    background: linear-gradient(90deg, rgba(90, 30, 40, 0.85) 0%, rgba(60, 20, 30, 0.6) 100%);
    animation: hero-curtain 3s ease-in-out infinite alternate;
}

.hero__fallback-curtain--l {
    left: 0;
    box-shadow: 4px 0 2rem rgba(0, 0, 0, 0.3);
}

.hero__fallback-curtain--r {
    right: 0;
    background: linear-gradient(270deg, rgba(90, 30, 40, 0.85) 0%, rgba(60, 20, 30, 0.6) 100%);
    box-shadow: -4px 0 2rem rgba(0, 0, 0, 0.3);
}

@keyframes hero-curtain {
    from { opacity: 0.9; }
    to { opacity: 1; }
}

.hero__fallback-sun {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: radial-gradient(
        circle at 50% 50%,
        rgba(232, 168, 58, 0.35) 0%,
        rgba(232, 168, 58, 0.12) 30%,
        rgba(232, 168, 58, 0.04) 50%,
        transparent 70%
    );
    animation: hero-sun-glow 6s ease-in-out infinite alternate;
}

@keyframes hero-sun-glow {
    from { transform: translateX(-50%) scale(0.95); opacity: 0.8; }
    to { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

.hero__overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 65%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.80),
        rgba(0,0,0,0.40),
        rgba(0,0,0,0)
    );
}

.hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero__content {
    max-width: 56.25rem;
    min-width: 0;
    position: relative;
}

.hero__title {
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: clamp(1.5rem, 4vw + 1rem, 4rem);
    line-height: 1.1;
    text-wrap: balance;
    filter: drop-shadow(0 0.5rem 1.5rem rgba(0,0,0,0.55));
}

.hero__text {
    font-size: clamp(0.9375rem, 1.5vw + 0.75rem, 1.125rem);
    line-height: 1.7;
    color: rgba(255,255,255,0.90);
    text-wrap: pretty;
    filter: drop-shadow(0 0.5rem 1.5rem rgba(0,0,0,0.55));
    margin: 1rem 0 0 0;
}

.hero__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero__content {
    display: flex;
    align-items: center;
}
.hero__content svg {
    height: 10rem;
    width: 20rem;
    position: absolute;
    left: -10rem;
}
.hero__actions .btn {
    min-height: var(--touch-target, 2.75rem);
}
@media(max-width: 768px) {
    .hero {
        display: flex;
        align-items: flex-end;
        height: 100svh;
    }
    .hero__content {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero__content svg {
        height: 5rem;
        width: 5rem;
    }
}