.launch-newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.55);
}

.launch-newsletter-popup.is-visible {
    display: flex;
}

.launch-newsletter-popup__close {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10001;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.launch-newsletter-popup__close svg{width:36px;height:36px;}
.launch-newsletter-popup.is-visible .launch-newsletter-popup__close {
    opacity: 1;
    pointer-events: auto;
}

.launch-newsletter-popup__dialog {
    position: relative;
    width: 100%;
    max-width: 630px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 48px 40px 40px;
    text-align: center;
    background: #F3F0EB;
    border: 6px solid #0820F2;
    box-sizing: border-box;
}

.launch-newsletter-popup__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.launch-newsletter-popup__logo svg {
    width: 100px;
    height: 100px;
}

.launch-newsletter-popup__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.15;
    font-weight: 300;
    color: #000;
}

.launch-newsletter-popup__description {
    margin: 0 0 32px;
    font-size: clamp(15px, 2.2vw, 20px);
    line-height: 1.5;
    color: #000;
}

.launch-newsletter-popup__field {
    margin-bottom: 20px;
}

.launch-newsletter-popup__input {
    width: 100%;
    padding: 8px 0 10px;
    border: none;
    border-bottom: 2px solid #0820F2;
    background: transparent;
    color: #000;
    font-size: 20px;
    outline: none;
    box-sizing: border-box;
}

.launch-newsletter-popup__input::placeholder {
    color: #0820F2;
    opacity: 0.85;
}

.launch-newsletter-popup__submit {
    width: 100%;
    padding: 16px 24px;
    border: none;
    background: #0820F2;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.launch-newsletter-popup__submit:hover:not(:disabled) {
    opacity: 0.9;
}

.launch-newsletter-popup__submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.launch-newsletter-popup__message {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.4;
    min-height: 20px;
}

.launch-newsletter-popup__message .success-msg {
    color: #0820F2;
}

.launch-newsletter-popup__message .error-msg {
    color: #c00;
}
html.popup-visible{overflow:hidden !important;}
html.popup-visible .header{display:none !important;}
@media screen and (max-width: 575px) {
    .launch-newsletter-popup {
        padding: 16px;
        align-items: flex-start;
        padding-top: 56px;
    }

    .launch-newsletter-popup__close {
        top: 16px;
        right: 16px;
    }

    .launch-newsletter-popup__dialog {
        padding: 36px 15px 28px;
        border-width: 5px;
    }

    .launch-newsletter-popup__logo svg {
        width: 84px;
        height: 84px;
    }
}
