/* Coming Soon Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 100%);
    z-index: -1;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 2rem 4rem;
    animation: fadeInUp 1.5s ease-out;
    margin-top: auto;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo {
    width: 80px;
    height: auto;
    opacity: 0.95;
    filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.company-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.company-name {
    font-size: 2.5rem;
    font-weight: 400;
    font-variation-settings: 'wght' 400;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    margin: 0;
}

.title {
    font-size: 1.8rem;
    font-weight: 300;
    font-variation-settings: 'wght' 300;
    letter-spacing: 0.02em;
    line-height: 1.3;
    color: #ffffff;
    opacity: 0.9;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin: 0;
}

.progress-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 1px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    position: absolute;
    top: 0;
    left: 0;
    animation: progressFlow 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}







@keyframes progressFlow {
    0% {
        width: 0%;
        left: 0%;
    }
    50% {
        width: 100%;
        left: 0%;
    }
    100% {
        width: 0%;
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .company-section {
        gap: 1rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .logo {
        width: 60px;
    }
    
    .progress-container {
        max-width: 600px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .company-section {
        gap: 0.8rem;
    }
    
    .company-name {
        font-size: 1.8rem;
    }
    
    .title {
        font-size: 1.3rem;
    }
    
    .logo {
        width: 50px;
    }
    
    .progress-container {
        max-width: 400px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .title {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
}
