.as-promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 780px;
    margin: 24px auto 0;
    padding: 12px 16px;
    border: 1px solid rgba(251, 191, 36, 0.42);
    border-radius: 8px;
    background: #151b25;
    color: #e5e7eb;
    font-size: 0.92rem;
    line-height: 1.5;
}
.as-promo-banner__badge,
.as-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 4px 8px;
    border-radius: 4px;
    background: #fbbf24;
    color: #111827;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0;
}
.as-price-display {
    min-height: 88px;
    margin: 14px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}
.as-price-current {
    font-size: 2.2rem;
    font-weight: 750;
}
.as-price-offer-wrap {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: center;
    gap: 3px 9px;
}
.as-price-regular {
    grid-column: 1;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 600;
    text-decoration-color: #f87171;
    text-decoration-thickness: 2px;
}
.as-price-offer {
    grid-column: 1 / -1;
    grid-row: 2;
    color: #fbbf24;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}
.as-price-badge {
    grid-column: 2;
    grid-row: 1;
}
.as-inline-offer {
    white-space: nowrap;
}
.as-inline-offer del {
    color: #9ca3af;
    text-decoration-color: #f87171;
    text-decoration-thickness: 2px;
}
.as-inline-offer strong {
    color: #fbbf24;
}
.as-promo-modal {
    position: fixed;
    inset: 0;
    z-index: 12000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(3, 7, 18, 0.78);
    opacity: 0;
    transition: opacity 180ms ease;
}
.as-promo-modal[hidden] {
    display: none;
}
.as-promo-modal.is-visible {
    opacity: 1;
}
.as-promo-modal__dialog {
    position: relative;
    width: min(500px, 100%);
    max-height: min(720px, calc(100vh - 40px));
    overflow-y: auto;
    padding: 34px 32px 28px;
    border: 1px solid rgba(34, 211, 238, 0.32);
    border-radius: 8px;
    background: #101722;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    color: #e5e7eb;
    text-align: center;
    transform: translateY(12px);
    transition: transform 180ms ease;
}
.as-promo-modal.is-visible .as-promo-modal__dialog {
    transform: translateY(0);
}
.as-promo-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 1.15rem;
}
.as-promo-modal__close:hover,
.as-promo-modal__close:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    outline: 2px solid #22d3ee;
    outline-offset: 2px;
}
.as-promo-modal__eyebrow {
    color: #67e8f9;
    font-size: 0.78rem;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: 0;
}
.as-promo-modal__value {
    margin: 12px 0 6px;
    color: #fbbf24;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 850;
    line-height: 1;
}
.as-promo-modal h2 {
    margin: 0;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.25;
    letter-spacing: 0;
}
.as-promo-modal__dialog > p:not(.as-promo-modal__terms) {
    margin: 14px auto 20px;
    color: #cbd5e1;
    line-height: 1.65;
}
.as-promo-modal__cta {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 6px;
    background: #22d3ee;
    color: #082f49;
    font-weight: 800;
    text-decoration: none;
}
.as-promo-modal__cta:hover,
.as-promo-modal__cta:focus-visible {
    background: #67e8f9;
    color: #082f49;
    outline: 2px solid #fff;
    outline-offset: 3px;
}
.as-promo-modal__terms {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.55;
}
body.as-promo-open {
    overflow: hidden;
}
@media (max-width: 560px) {
    .as-promo-banner {
        align-items: flex-start;
        text-align: left;
    }
    .as-promo-modal {
        align-items: end;
        padding: 10px;
    }
    .as-promo-modal__dialog {
        max-height: calc(100vh - 20px);
        padding: 30px 20px 22px;
    }
    .as-promo-modal__value {
        font-size: 2.8rem;
    }
    .as-price-offer {
        font-size: 1.9rem;
    }
}
@media (prefers-reduced-motion: reduce) {
    .as-promo-modal,
    .as-promo-modal__dialog {
        transition: none;
    }
}
