/* ==========================================================================
   VORTEX DIGITAL ART - STILLFRONT-STYLE CALIBRATION & MAINTENANCE SCREEN
   ========================================================================== */

#vortex-maintenance-root,
.vortex-m-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #070709 !important;
    z-index: 999999999 !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2.5rem 1.5rem !important;
    color: #FFFFFF !important;
    font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.vortex-m-container {
    max-width: 680px;
    width: 100%;
    text-align: center;
    margin: auto;
    animation: vortexMFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes vortexMFadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 1. Brand Logo */
.vortex-m-header {
    margin-bottom: 2rem;
}

.vortex-m-logo {
    height: 46px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.4));
    transition: transform 0.2s ease;
}

.vortex-m-logo:hover {
    transform: scale(1.03);
}

/* 2. Status Badge */
.vortex-m-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.vortex-m-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00E5FF;
    box-shadow: 0 0 10px #00E5FF;
    animation: vortexMPulse 2s infinite;
}

@keyframes vortexMPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

/* 3. Headlines */
.vortex-m-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4.8vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.vortex-m-title-gradient {
    background: linear-gradient(135deg, #FFFFFF 30%, rgba(255, 255, 255, 0.55) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vortex-m-desc {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.vortex-m-desc strong {
    color: #FFFFFF;
}

/* 4. Live Studio Specs Grid */
.vortex-m-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 2.25rem;
}

.vortex-m-spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.9rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vortex-m-spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
}

.vortex-m-spec-val {
    font-size: 0.88rem;
    font-weight: 700;
    color: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 5. Notification Subscription Pill */
.vortex-m-notify-box {
    margin-bottom: 2.5rem;
}

.vortex-m-notify-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.vortex-m-form {
    display: flex;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 4px 6px 4px 18px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vortex-m-form:focus-within {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);
}

.vortex-m-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
    color: #FFFFFF;
    padding: 0.6rem 0.5rem;
}

.vortex-m-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.vortex-m-btn {
    background: #FFFFFF;
    color: #070709;
    font-family: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    border: none;
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.vortex-m-btn:hover {
    background: #e6e6e6;
    transform: scale(1.02);
}

.vortex-m-feedback {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    min-height: 20px;
}

/* 6. Footer */
.vortex-m-footer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.8;
}

.vortex-m-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.vortex-m-contact a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 650px) {
    .vortex-m-specs {
        grid-template-columns: 1fr;
    }
    .vortex-m-form {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 0.75rem;
    }
    .vortex-m-input {
        width: 100%;
        background: #111116;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 999px;
        padding: 0.75rem 1.25rem;
    }
    .vortex-m-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }
}
