
.offer-popup {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
}

.offer-popup.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.offer-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.32);
    backdrop-filter: blur(4px);
}

.offer-popup__dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(15, 15, 15, 0.08);
    box-shadow: 0 24px 48px rgba(15, 15, 15, 0.12);
    width: min(560px, 92vw);
    max-height: 90vh;
    padding: clamp(1.8rem, 4vw, 2.4rem);
    overflow: hidden;
    color: var(--ink);
}

.offer-popup__close {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(15, 15, 15, 0.08);
    background: rgba(246, 246, 245, 0.9);
    color: var(--ink);
    font-size: 1.35rem;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.offer-popup__close:hover {
    background: #0f0f0f;
    color: #ffffff;
    border-color: #0f0f0f;
}


.offer-popup__illustration {
    display: none;
}

.offer-popup__svg {
    width: 100%;
    height: 100%;
}

.offer-popup__svg-orbit circle,
.offer-popup__svg-icon path,
.offer-popup__svg-icon circle {
    animation: none;
}

.offer-popup__content {
    position: relative;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    z-index: 1;
}

.offer-popup__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    font-size: 0.76rem;
    color: var(--ink-muted);
}

.offer-popup__title {
    font-size: clamp(1.85rem, 4vw, 2.4rem);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

.offer-popup__description {
    color: var(--ink-subtle);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

.offer-popup__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.7rem;
}

.offer-popup__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    border-radius: 14px;
    background: rgba(15, 15, 15, 0.04);
    border: 1px solid rgba(15, 15, 15, 0.05);
    color: var(--ink);
    font-size: 0.92rem;
}

.offer-popup__list li::before {
    content: "";
    flex: 0 0 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, #0f0f0f, rgba(15, 15, 15, 0.6));
}

.offer-popup__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.1rem;
}

.offer-popup__cta {
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    background: #0f0f0f;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.offer-popup__secondary {
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    border: 1px solid rgba(15, 15, 15, 0.16);
    background: transparent;
    color: var(--ink);
    font-weight: 500;
    cursor: pointer;
}

.offer-popup[aria-hidden="true"] {
    display: none;
}

@media (max-width: 768px) {
    .offer-popup__dialog {
        padding: 2rem 1.75rem;
        border-radius: 18px;
        align-items: flex-start;
    }

    .offer-popup__illustration {
        position: relative;
        top: auto;
        right: auto;
        width: 240px;
        height: 200px;
        align-self: center;
        margin-bottom: 1rem;
        opacity: 0.4;
    }

    .offer-popup__content {
        max-width: 100%;
    }

    .offer-popup__title {
        font-size: 1.85rem;
    }

    .offer-popup__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .offer-popup__cta,
    .offer-popup__secondary {
        width: 100%;
        text-align: center;
    }
}

