
/* ============================================
   EARLY ACCESS MODAL
   ============================================ */
.ea-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ea-modal.visible {
    display: flex;
}

.ea-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.ea-modal-content {
    position: relative;
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.ea-modal.visible .ea-modal-content {
    transform: translateY(0);
    opacity: 1;
}

.ea-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-400);
    cursor: pointer;
    z-index: 2;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.2s;
}

.ea-close-btn:hover {
    color: var(--primary-blue);
}

.ea-header {
    background: #1e3a5f;
    padding: 2rem 2rem 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.ea-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.ea-title-group {
    flex: 1;
}

.ea-badge {
    background: var(--accent-orange);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.ea-header h3 {
    color: white;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
}

.ea-body {
    padding: 2rem;
}

.ea-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ea-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.ea-form input,
.ea-form select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.2s;
}

.ea-form input:focus,
.ea-form select:focus {
    background: white;
    border-color: var(--accent-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

.ea-form .btn {
    margin-top: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem;
}

.ea-privacy {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 1rem;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    .ea-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    .ea-body {
        padding: 1.5rem;
    }
}