/* Hero Layout: Fullscreen Video / Image */
.aum-hfv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.aum-hfv-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.aum-hfv-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.aum-hfv-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container-width, 1600px);
    margin: auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aum-hfv-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 760px;
    text-align: center;
    align-items: inherit;
}

.aum-hfv-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
}

.aum-hfv-title {
    margin: 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
}

.aum-hfv-desc {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    max-width: 56ch;
}

.aum-hfv-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
    justify-content: inherit;
}

.aum-hfv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.aum-hfv-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    width: 1em;
    height: 1em;
    font-size: 1em;
}
.aum-hfv-btn-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}
.aum-hfv-btn.is-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.aum-hfv-btn.is-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
}
.aum-hfv-btn:hover { transform: translateY(-2px); }
.aum-hfv-btn.is-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* Scroll cue */
.aum-hfv-scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.aum-hfv-mouse {
    display: block;
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    position: relative;
}
.aum-hfv-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    background: #fff;
    border-radius: 2px;
    animation: aum-hfv-scroll 1.6s ease infinite;
}
@keyframes aum-hfv-scroll {
    0%   { opacity: 0; transform: translateY(0); }
    30%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

@media (max-width: 767px) {
    .aum-hfv-inner { padding: 60px 20px; }
}
