.spotlight-banner {
    --spotlight-purple: #7622EE;
    --spotlight-blue: #4D78DD;
    --spotlight-mint: #62F5D2;
    display: none;
    order: 0;
    position: relative;
    z-index: 90;
    margin-top: 89px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 8% -100%, rgba(98,245,210,.36), transparent 34%),
        linear-gradient(102deg, var(--spotlight-purple) 0%, #6546E9 47%, var(--spotlight-blue) 76%, #35AFC8 120%);
    border-bottom: 1px solid rgba(255,255,255,.2);
    box-shadow: 0 16px 44px rgba(42,24,126,.26);
}

.spotlight-banner-active .spotlight-banner { display: block; }

.spotlight-banner__inner {
    width: 100%;
    max-width: var(--mw, 1200px);
    min-height: 72px;
    margin: 0 auto;
    padding: 12px 82px 12px 32px;
    position: relative;
    display: grid;
    grid-template-columns: auto 1px minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 20px;
}

.spotlight-banner__brand {
    display: inline-flex;
    align-items: flex-start;
    color: #fff;
    font-family: var(--ff, system-ui, sans-serif);
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: -.055em;
    white-space: nowrap;
}

.spotlight-banner__brand small {
    margin: 0 4px 0 0;
    font-size: .4rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.spotlight-banner__divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,.3);
}

.spotlight-banner__message {
    min-width: 0;
    margin: 0;
    color: #fff;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.35;
}

.spotlight-banner__offer {
    display: inline-block;
    margin-left: 7px;
    padding: 4px 9px;
    color: var(--spotlight-mint);
    background: rgba(12,14,28,.72);
    border: 1px solid rgba(98,245,210,.42);
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .01em;
    white-space: nowrap;
}

.spotlight-banner__meta {
    color: rgba(255,255,255,.9);
    font-size: .75rem;
    font-weight: 600;
    white-space: nowrap;
}

.spotlight-banner__cta {
    min-height: 44px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #111425;
    background: #fff;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.spotlight-banner__cta:hover {
    background: #F4FFFC;
    box-shadow: 0 8px 24px rgba(12,14,28,.24);
    transform: translateY(-1px);
}

.spotlight-banner__cta:focus-visible,
.spotlight-banner__close:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

.spotlight-banner__close {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease;
}

.spotlight-banner__close:hover {
    background: rgba(12,14,28,.18);
    border-color: rgba(255,255,255,.3);
}

@media (max-width: 1020px) {
    .spotlight-banner__inner {
        grid-template-columns: auto 1px minmax(180px, 1fr) auto;
        gap: 14px;
    }
    .spotlight-banner__meta { display: none; }
}

@media (max-width: 720px) {
    .spotlight-banner__inner {
        min-height: 0;
        padding: 14px 20px 16px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px 14px;
    }
    .spotlight-banner__divider,
    .spotlight-banner__meta { display: none; }
    .spotlight-banner__message { font-size: .82rem; }
    .spotlight-banner__offer {
        display: block;
        width: max-content;
        max-width: 100%;
        margin: 7px 0 0;
        white-space: normal;
    }
    .spotlight-banner__cta { width: 100%; }
    .spotlight-banner__brand { align-self: flex-start; padding-right: 52px; }
    .spotlight-banner__close {
        right: 10px;
        top: 8px;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .spotlight-banner__cta,
    .spotlight-banner__close { transition: none; }
    .spotlight-banner__cta:hover { transform: none; }
}
