/**
 * UBMS Dynamic Vision Engine - Core Styles
 */

.ubms-vision-hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.vision-zones-container {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.vision-zone {
    position: absolute;
    box-shadow: 0 0 30px rgba(var(--ubms-primary-rgb), 0.3);
    overflow: hidden;
    background: #000;
}

.vision-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.zone-caption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--ubms-accent);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.vision-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-inner {
    max-width: 600px;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.badge {
    display: inline-block;
    background: var(--ubms-accent);
    color: #000;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 99px;
    font-size: 12px;
    margin-bottom: 20px;
}

.ubms-vision-hero h1 {
    font-size: 52px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.vision-optin-form {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.vision-optin-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    outline: none;
}

.btn-primary-glow {
    background: var(--ubms-accent);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(var(--ubms-accent), 0.4);
    transition: transform 0.3s;
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(var(--ubms-accent), 0.6);
}