/* ============================================
   UX MISSIONS - COMING SOON PAGE
   Simple, centered, no scroll
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563EB;
    --accent-yellow: #FBBF24;
    --text-primary: #0F172A;
    --text-secondary: #64748B;
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: linear-gradient(135deg, #EFF6FF 0%, #F8FAFC 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   COMING SOON SECTION
   ============================================ */

.coming-soon {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.content {
    text-align: center;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: white;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.headline {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.subheadline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-weight: 500;
}

.waitlist-message {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   WAITLIST FORM
   ============================================ */

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 24px;
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    font-size: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    background: white;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.2s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.email-input::placeholder {
    color: #94A3B8;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

.microcopy {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid #E2E8F0;
    background: rgba(255, 255, 255, 0.5);
}

.footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.footer-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--primary-blue);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .headline {
        font-size: 1.75rem;
    }

    .subheadline {
        font-size: 1.25rem;
    }

    .waitlist-form {
        flex-direction: column;
        gap: 12px;
    }

    .email-input,
    .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.25rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */

.success-message {
    margin-top: 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
