/* ==========================================================================
   THE CURATION VAULT (Coming Soon Architecture)
   ========================================================================== */

.vault-mode {
    background-color: var(--global-bg);
    overflow: hidden; /* Prevents scroll on the coming soon page */
}

.vault-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 5%; /* Nav offset */
    z-index: 1;
}

/* --- 1. Central Vault Typography & Layout --- */
.vault-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vault-badge {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--corp-icon);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.03);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}
.vault-badge i { font-size: 1rem; color: var(--brand-primary); }

.vault-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1;
    color: var(--global-text);
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.vault-desc {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--corp-icon);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 50px;
    font-weight: 300;
}

/* --- 2. The Waitlist Terminal --- */
.waitlist-terminal {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 100px;
    padding: 8px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.waitlist-terminal:focus-within {
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: rgba(0,0,0,0.15);
}

.terminal-input-wrap {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 20px;
    gap: 12px;
}

.terminal-input-wrap i {
    font-size: 1.2rem;
    color: var(--corp-icon);
}

.terminal-input-wrap input {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--global-text);
    width: 100%;
    outline: none;
}
.terminal-input-wrap input::placeholder { color: rgba(0,0,0,0.3); }

.btn-waitlist {
    background: var(--global-text);
    color: #FFF;
    border: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.btn-waitlist:hover {
    background: var(--product-surface);
    color: var(--global-text);
    transform: scale(1.02);
}

/* System Status indicator */
.system-status {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-dot {
    width: 8px; height: 8px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite alternate;
}

@keyframes pulse-dot {
    0% { opacity: 0.3; transform: scale(0.8); box-shadow: 0 0 0 rgba(246, 48, 73, 0); }
    100% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px rgba(246, 48, 73, 0.5); }
}

/* --- 3. Interactive Floating Elements --- */
.parallax-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.float-item {
    position: absolute;
    color: rgba(0,0,0,0.05);
    font-size: 8rem;
    transition: transform 0.1s linear; /* Fast response for mouse move */
}

.f-1 { top: 15%; left: 15%; filter: blur(4px); }
.f-2 { bottom: 20%; right: 10%; filter: blur(2px); font-size: 12rem; }
.f-3 { top: 40%; right: 25%; font-size: 4rem; filter: blur(1px); }

/* Mobile Adjustments */
@media (max-width: 768px) {
    .waitlist-terminal {
        flex-direction: column;
        border-radius: 24px;
        padding: 15px;
    }
    .terminal-input-wrap { padding: 10px; margin-bottom: 10px; width: 100%; }
    .btn-waitlist { width: 100%; justify-content: center; }
    .f-1, .f-2, .f-3 { display: none; } /* Hide large icons on mobile for cleaner look */
}

/* Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}