.ee-popup-lock {
    overflow: hidden;
}

.ee-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ee-popup.ee-popup-is-active {
    display: block;
}
 
.ee-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 6, .82);
    backdrop-filter: blur(12px);
}

.ee-popup-panel {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(92vw, 680px);
    max-height: min(88vh, 760px);
    overflow: auto;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at top left, rgba(212, 162, 76, .09), #0d1014 34%, #080a0e 100%);
    color: #f5f5f5;
    border: 1px solid rgba(212, 162, 76, .42);
    border-radius: 24px;
    box-shadow: 0 32px 86px rgba(0, 0, 0, .7);
    padding: clamp(26px, 5vw, 42px);
}

.ee-popup-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(circle at 0% 0%, rgba(212, 162, 76, .15), transparent 34%);
}

.ee-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    color: #b0b3c0;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.ee-popup-close:hover,
.ee-popup-close:focus-visible {
    color: #f5f5f5;
    border-color: rgba(212, 162, 76, .52);
    background: rgba(212, 162, 76, .1);
    outline: none;
}

.ee-popup-header,
.ee-popup-body,
.ee-popup-skip {
    position: relative;
    z-index: 1;
}

.ee-popup-kicker,
.ee-popup-eyebrow {
    margin: 0 0 10px;
    color: #d4a24c;
    font-size: 11px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.ee-popup-header h1,
.ee-popup-step h2 {
    margin: 0;
    color: #f5f5f5;
    font-family: "Rajdhani", system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.08;
    text-transform: uppercase;
}

.ee-popup-header h1 {
    font-size: clamp(28px, 4.8vw, 42px);
    max-width: 15ch;
}

.ee-popup-header p:not(.ee-popup-kicker) {
    margin: 13px 0 0;
    color: #b0b3c0;
    font-size: 14px;
    line-height: 1.65;
    max-width: 52ch;
}

.ee-popup-body {
    margin-top: 29px;
}

.ee-popup-step h2 {
    font-size: clamp(21px, 3.3vw, 28px);
    margin-bottom: 20px;
    max-width: 25ch;
}

.ee-popup-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.ee-popup-grid-detail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ee-popup-choice {
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    background: rgba(255, 255, 255, .025);
    color: #f5f5f5;
    font: inherit;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.ee-popup-choice:hover,
.ee-popup-choice:focus-visible {
    transform: translateY(-2px);
    background: rgba(212, 162, 76, .12);
    border-color: rgba(212, 162, 76, .62);
    color: #d4a24c;
    outline: none;
}

.ee-popup-back,
.ee-popup-skip {
    border: 0;
    background: transparent;
    color: #b0b3c0;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

.ee-popup-back {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.ee-popup-back:hover,
.ee-popup-skip:hover {
    color: #d4a24c;
}

.ee-popup-skip {
    margin-top: 26px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.ee-guided-popup-open-button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    border: 1px solid rgba(212, 162, 76, .55);
    background: rgba(212, 162, 76, .1);
    color: #f5f5f5;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .ee-popup-panel {
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: auto;
        max-height: 88vh;
        transform: none;
        border-radius: 22px 22px 0 0;
        padding: 28px 20px 22px;
    }

    .ee-popup-header h1 {
        max-width: 14ch;
    }

    .ee-popup-grid,
    .ee-popup-grid-detail {
        grid-template-columns: 1fr;
    }

    .ee-popup-choice {
        min-height: 48px;
    }
}
