.coming-soon {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    position: relative;
}

.coming-soon-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(159, 122, 234, 0.15), transparent);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.coming-soon-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b3b9ff, #9f7aea, #5dade2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.coming-soon-desc {
    font-size: 1.1rem;
    color: #a0a8c0;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.coming-soon-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.plugin-card {
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid #2d3540;
    border-radius: 20px;
    padding: 1.8rem 1.5rem;
    width: 260px;
    text-align: left;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.plugin-card:hover {
    transform: translateY(-6px);
    border-color: #9f7aea;
    box-shadow: 0 8px 32px rgba(159, 122, 234, 0.15);
}

.plugin-card-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.plugin-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #e1e8f0;
    margin-bottom: 0.5rem;
}

.plugin-card p {
    font-size: 0.85rem;
    color: #8a94a8;
    line-height: 1.55;
    margin: 0;
}

.how-it-works {
    margin: 2rem 0 3rem;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 700px;
}

.how-it-works-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #c0c8e0;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.how-steps {
    display: flex;
    gap: 0;
    justify-content: center;
}

.how-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    padding: 0 1rem;
    position: relative;
}

.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.1rem;
    right: -10%;
    width: 20%;
    height: 1px;
    background: linear-gradient(90deg, rgba(159, 122, 234, 0.5), transparent);
}

.how-step-num {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(159, 122, 234, 0.2);
    border: 1px solid rgba(159, 122, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #9f7aea;
    font-family: monospace;
}

.how-step p {
    font-size: 0.82rem;
    color: #8a94a8;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.coming-soon-note {
    color: #5a6270;
    font-size: 0.85rem;
    margin: 1rem 0;
    max-width: 520px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.email-signup {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    position: relative;
    z-index: 1;
}

.email-input {
    padding: 0.8rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #2d3540;
    border-radius: 40px;
    color: white;
    width: 250px;
    outline: none;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.email-input::placeholder {
    color: #5a6270;
}

.email-input:focus {
    border-color: #9f7aea;
}

@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 1.8rem;
    }
    .plugin-card {
        width: 100%;
        max-width: 300px;
    }
    .how-steps {
        flex-direction: column;
        gap: 1rem;
    }
    .how-step:not(:last-child)::after {
        display: none;
    }
    .email-signup {
        flex-direction: column;
        align-items: center;
    }
    .email-input {
        width: 100%;
        max-width: 280px;
    }
}
