.billing-cutoff-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.billing-cutoff-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(2px);
}

.billing-cutoff-modal__panel {
    position: relative;
    width: min(100%, 580px);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.28);
    overflow: hidden;
}

.dark .billing-cutoff-modal__panel {
    background: rgb(17 24 39);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.billing-cutoff-modal__header,
.billing-cutoff-modal__body,
.billing-cutoff-modal__footer {
    position: relative;
    padding-left: 28px;
    padding-right: 28px;
}

.billing-cutoff-modal__header {
    padding-top: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.dark .billing-cutoff-modal__header {
    border-bottom-color: rgba(55, 65, 81, 0.9);
}

.billing-cutoff-modal__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 9999px;
    background: rgb(254 242 242);
    color: rgb(185 28 28);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dark .billing-cutoff-modal__eyebrow {
    background: rgba(127, 29, 29, 0.25);
    color: rgb(252 165 165);
}

.billing-cutoff-modal__title {
    margin: 16px 0 0;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    color: rgb(15 23 42);
}

.dark .billing-cutoff-modal__title {
    color: rgb(243 244 246);
}

.billing-cutoff-modal__body {
    padding-top: 22px;
    padding-bottom: 10px;
}

.billing-cutoff-modal__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgb(71 85 105);
}

.dark .billing-cutoff-modal__text {
    color: rgb(209 213 219);
}

.billing-cutoff-modal__footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 14px;
    padding-bottom: 28px;
}

.billing-cutoff-modal__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 12px;
    background: #6fd10a;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(111, 209, 10, 0.25);
}

.billing-cutoff-modal__cta:hover {
    background: #60b909;
    color: #ffffff;
}

body.billing-cutoff-modal-open {
    overflow: hidden;
}
