/* Styles for Coming Soon Launch Page */
.coming-soon-wrap {
    padding: 40px 0;
}

.coming-soon-wrap .sub-title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4f46e5;
    margin-bottom: 16px;
}

.coming-soon-wrap .title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.coming-soon-wrap .desc {
    font-size: 16px;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto 45px;
    line-height: 1.6;
}

/* Countdown Grid */
.countdown-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 50px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 20px;
    width: 120px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(241, 245, 249, 0.8);
}

.countdown-item .number {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.countdown-item .label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

.countdown-separator {
    font-size: 32px;
    font-weight: 800;
    color: #cbd5e1;
    margin-top: -25px;
}

/* Subscription Form */
.coming-soon-form {
    max-width: 560px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    background: #ffffff;
    border-radius: 100px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.subscribe-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 24px;
    font-size: 15px;
    color: #0f172a;
}

.subscribe-form input::placeholder {
    color: #94a3b8;
}

.subscribe-form button {
    border-radius: 100px !important;
    padding: 14px 28px;
    font-size: 14px;
}

/* Responsive Rules */
@media (max-width: 767px) {
    .coming-soon-wrap .title {
        font-size: 32px;
    }
    
    .coming-soon-wrap .desc {
        font-size: 14px;
        margin-bottom: 35px;
    }
    
    .countdown-wrap {
        gap: 10px;
    }
    
    .countdown-item {
        width: 80px;
        padding: 16px 10px;
        border-radius: 12px;
    }
    
    .countdown-item .number {
        font-size: 26px;
    }
    
    .countdown-item .label {
        font-size: 9px;
        margin-top: 4px;
    }
    
    .countdown-separator {
        font-size: 20px;
        margin-top: -15px;
    }
    
    .subscribe-form {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }
    
    .subscribe-form input {
        background: #ffffff;
        border-radius: 50px;
        border: 1px solid #e2e8f0;
        width: 100%;
        padding: 16px 20px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }
    
    .subscribe-form button {
        width: 100%;
        justify-content: center;
    }
}
