
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    background: #0B1C2D;
}

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

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,224,255,0.15), rgba(122,92,255,0.15), rgba(255,78,78,0.08));
    mix-blend-mode: screen;
    animation: auroraMove 12s ease-in-out infinite alternate;
}

@keyframes auroraMove {
    0% { transform: translateX(-5%) translateY(-5%); }
    100% { transform: translateX(5%) translateY(5%); }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 60px;
}

.hero-left {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 90px);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -2px;
}

.hero-sub {
    margin-top: 20px;
    font-size: 18px;
    opacity: 0.9;
}

.hero-trust span {
    display: inline-block;
    margin-right: 20px;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.85;
}

.hero-search {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .hero {
        height: 85vh;
    }
}
