/* Coming Soon Page Styles */

.coming-soon-body {
    overflow-x: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.03) 0%, var(--primary-bg) 70%);
}

/* Header Minimal */
.header-minimal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: var(--blur-glass);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
}

.back-link:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Scanner Lines */
.scanner-line-vertical {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--neon-purple), transparent);
    animation: scannerMoveVertical 4s linear infinite;
    box-shadow: 0 0 10px var(--neon-purple);
    animation-delay: 1.5s;
}

@keyframes scannerMoveVertical {
    0% { left: -2px; opacity: 0; }
    50% { opacity: 1; }
    100% { left: 100vw; opacity: 0; }
}

/* Main Container */
.coming-soon-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.coming-soon-container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
}

/* Brain Launch Animation */
.brain-launch-container {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    animation: brainLaunchFloat 8s ease-in-out infinite;
}

@keyframes brainLaunchFloat {
    0%, 100% { transform: translateX(-50%) translateY(0) rotateZ(0deg); }
    50% { transform: translateX(-50%) translateY(-30px) rotateZ(10deg); }
}

.brain-core-launch {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 75px auto;
    transform-style: preserve-3d;
}

.brain-hemisphere.left-launch,
.brain-hemisphere.right-launch {
    position: absolute;
    width: 75px;
    height: 150px;
    border-radius: 37px;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.3), 
        rgba(138, 43, 226, 0.3)
    );
    border: 2px solid var(--neon-cyan);
    box-shadow: 
        0 0 30px var(--neon-cyan),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
}

.brain-hemisphere.left-launch {
    left: 0;
    transform: rotateY(-20deg);
    animation: leftHemisphereLaunch 4s ease-in-out infinite;
}

.brain-hemisphere.right-launch {
    right: 0;
    transform: rotateY(20deg);
    animation: rightHemisphereLaunch 4s ease-in-out infinite;
}

@keyframes leftHemisphereLaunch {
    0%, 100% { 
        border-color: var(--neon-cyan);
        box-shadow: 0 0 30px var(--neon-cyan);
    }
    50% { 
        border-color: var(--neon-purple);
        box-shadow: 0 0 30px var(--neon-purple);
    }
}

@keyframes rightHemisphereLaunch {
    0%, 100% { 
        border-color: var(--neon-purple);
        box-shadow: 0 0 30px var(--neon-purple);
    }
    50% { 
        border-color: var(--neon-pink);
        box-shadow: 0 0 30px var(--neon-pink);
    }
}

.neural-paths-launch {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: 
        radial-gradient(circle at 30% 40%, var(--neon-cyan) 1px, transparent 1px),
        radial-gradient(circle at 70% 60%, var(--neon-purple) 1px, transparent 1px);
    background-size: 15px 15px, 20px 20px;
    animation: neuralActivityLaunch 2s ease-in-out infinite;
}

@keyframes neuralActivityLaunch {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.brain-connections-launch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    box-shadow: 
        0 0 20px var(--neon-green),
        0 0 40px var(--neon-green);
    animation: connectionPulseLaunch 1.5s ease-in-out infinite;
}

@keyframes connectionPulseLaunch {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(2.5); }
}

.orbital-rings-launch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-launch {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: ringRotateLaunch 12s linear infinite;
}

.ring-1-launch {
    width: 200px;
    height: 200px;
    border-color: rgba(0, 255, 255, 0.5);
    top: -100px;
    left: -100px;
}

.ring-2-launch {
    width: 250px;
    height: 250px;
    border-color: rgba(138, 43, 226, 0.4);
    top: -125px;
    left: -125px;
    animation-direction: reverse;
    animation-duration: 15s;
}

.ring-3-launch {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 0, 255, 0.3);
    top: -150px;
    left: -150px;
    animation-duration: 18s;
}

@keyframes ringRotateLaunch {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.energy-pulses {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gradient-neural);
    animation: pulseFly 6s linear infinite;
}

.pulse-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.pulse-2 {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.pulse-3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes pulseFly {
    0% { transform: translate(0, 0) scale(0.5); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translate(100px, -100px) scale(0); opacity: 0; }
}

/* Content */
.coming-soon-content {
    position: relative;
    z-index: 10;
    padding-top: 150px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(0, 255, 255, 0.4);
    border-radius: 25px;
    font-family: var(--font-primary);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.status-icon {
    font-size: 1.2rem;
    animation: statusIconPulse 2s ease-in-out infinite;
}

@keyframes statusIconPulse {
    0%, 100% { transform: scale(1); filter: hue-rotate(0deg); }
    50% { transform: scale(1.2); filter: hue-rotate(180deg); }
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hologram);
    animation: badgeGlowMove 3s ease-in-out infinite;
}

@keyframes badgeGlowMove {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.coming-soon-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line-cs {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: titleRevealCS 1s ease forwards;
}

.title-line-cs:nth-child(1) { 
    animation-delay: 0.2s;
    background: var(--gradient-neural);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.title-line-cs:nth-child(2) { 
    animation-delay: 0.4s;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-neon);
}
.title-line-cs:nth-child(3) { 
    animation-delay: 0.6s;
    color: var(--neon-purple);
    font-size: 5rem;
}

@keyframes titleRevealCS {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-cs {
    color: var(--neon-cyan);
    font-weight: 600;
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Countdown Timer */
.countdown-container {
    margin-bottom: 4rem;
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.countdown-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-cyan);
    text-shadow: 0 0 20px var(--neon-cyan);
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    min-width: 80px;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.countdown-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--neon-purple);
    animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Waitlist Form */
.waitlist-container {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-neural);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.waitlist-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-cs {
    position: relative;
}

.neural-input-cs {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.neural-input-cs::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.neural-input-cs:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.input-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.neural-input-cs:focus + .input-glow {
    opacity: 1;
}

.waitlist-button {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--gradient-neural);
    border: none;
    border-radius: 15px;
    color: white;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-fast);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
}

.button-energy {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-hologram);
    animation: buttonEnergyFlow 4s ease-in-out infinite;
}

@keyframes buttonEnergyFlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

/* Features Preview */
.preview-features {
    margin-bottom: 4rem;
}

.preview-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.features-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.preview-item {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-fast);
}

.preview-item:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.2);
}

.preview-icon {
    position: relative;
    margin-bottom: 1rem;
}

.preview-icon i {
    font-size: 2rem;
    color: var(--neon-cyan);
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    animation: iconPulseExpand 3s ease-in-out infinite;
}

@keyframes iconPulseExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

/* Development Progress */
.development-progress {
    max-width: 500px;
    margin: 0 auto;
}

.progress-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--neon-cyan);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.progress-bar {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    height: 50px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-neural);
    border-radius: 23px;
    position: relative;
    animation: progressFillAnimation 3s ease-out forwards;
    width: 0%;
}

@keyframes progressFillAnimation {
    to { width: 87%; }
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-weight: 700;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-code {
    position: absolute;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: rgba(0, 255, 255, 0.6);
    text-shadow: 0 0 10px var(--neon-cyan);
    animation: floatingCodeMove 10s linear infinite;
}

.floating-code:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-code:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2.5s;
}

.floating-code:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 5s;
}

.floating-code:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 7.5s;
}

@keyframes floatingCodeMove {
    0% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { 
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Footer Minimal */
.footer-minimal {
    background: rgba(10, 10, 15, 0.9);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    padding: 2rem;
    margin-top: 4rem;
}

.footer-content-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    transition: var(--transition-fast);
    padding: 0.5rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.social-links a:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .title-line-cs:nth-child(3) {
        font-size: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
        min-width: 60px;
        padding: 0.8rem;
    }
    
    .features-preview-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .footer-content-minimal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .brain-launch-container {
        width: 200px;
        height: 200px;
        top: -150px;
    }
    
    .coming-soon-content {
        padding-top: 100px;
    }
}
