.aiep-modal-open {
    overflow: hidden;
}

.aiep-requirements-launcher {
    align-items: center;
    background: #f3f7ff;
    border: 1px solid #c8d8ff;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    justify-content: space-between;
    margin: 0 0 22px;
    padding: 14px 16px;
}

.aiep-requirements-button,
.aiep-requirements-done {
    background: #1456d9;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    padding: 10px 14px;
}

.aiep-live-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.aiep-live-checks span {
    background: #fff;
    border: 1px solid #d8deea;
    border-radius: 999px;
    color: #5d6472;
    font-size: 12px;
    padding: 5px 9px;
}

.aiep-live-checks span.is-complete {
    border-color: #91d3a5;
    color: #16733b;
}

.aiep-requirements-modal {
    inset: 0;
    position: fixed;
    z-index: 100000;
}

.aiep-requirements-backdrop {
    background: rgba(10, 18, 34, .66);
    inset: 0;
    position: absolute;
}

.aiep-requirements-dialog {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
    left: 50%;
    max-height: calc(100vh - 40px);
    max-width: 680px;
    overflow: auto;
    padding: 30px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 32px);
}

.aiep-requirements-close {
    background: transparent;
    border: 0;
    color: #4d5564;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    position: absolute;
    right: 16px;
    top: 14px;
}

.aiep-requirements-kicker {
    color: #1456d9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    margin: 0 0 4px;
    text-transform: uppercase;
}

.aiep-requirements-dialog h2 {
    margin: 0 0 8px;
}

.aiep-requirements-list {
    counter-reset: requirements;
    list-style: none;
    margin: 22px 0;
    padding: 0;
}

.aiep-requirements-list li {
    border-top: 1px solid #e7eaf0;
    padding: 14px 0 14px 42px;
    position: relative;
}

.aiep-requirements-list li::before {
    background: #e8efff;
    border-radius: 50%;
    color: #1456d9;
    content: counter(requirements);
    counter-increment: requirements;
    font-weight: 800;
    height: 28px;
    left: 0;
    line-height: 28px;
    position: absolute;
    text-align: center;
    top: 13px;
    width: 28px;
}

.aiep-requirements-list strong,
.aiep-requirements-list span {
    display: block;
}

.aiep-requirements-list span {
    color: #606775;
    margin-top: 3px;
}

.aiep-requirements-note {
    background: #fff8e5;
    border-radius: 8px;
    color: #6c5314;
    padding: 12px 14px;
}

@media (max-width: 600px) {
    .aiep-requirements-dialog {
        padding: 24px 20px;
    }
}
