* {
    box-sizing: border-box
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0
}

body {
    font-family: Arial, sans-serif;
    background: #07111f;
    color: #fff
}

.banner {
    position: relative;
    isolation: isolate;
    width: 100%;
    height: 100%;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #25475d;
    background: linear-gradient(115deg, #07111f, #102e45 55%, #304b5d)
}

.banner:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -100%;
    background: conic-gradient(from 0deg, transparent 0 38%, rgba(39, 197, 212, .22) 46%, transparent 54% 100%);
    animation: spin 7s linear infinite
}

.banner:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -35%;
    width: 24%;
    transform: skewX(-20deg);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    animation: shine 3.4s ease-in-out infinite
}

.inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 14px 28px
}

.copy {
    display: flex;
    align-items: center;
    gap: 14px
}

.badge {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    background: rgba(39, 197, 212, .12);
    color: #27c5d4;
    font-size: 16px;
    font-weight: 800;
    animation: pulse 1.9s ease-in-out infinite
}

strong {
    display: block;
    font-size: clamp(16px, 2.1vw, 24px)
}

small {
    display: block;
    margin-top: 4px;
    color: #95aabd;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.cta {
    flex: 0 0 auto;
    padding: 11px 15px;
    border-radius: 6px;
    background: #f2a33b;
    color: #07111f;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800
}

.vertical {
    min-height: 250px
}

.vertical .inner,
.vertical .copy {
    flex-direction: column;
    text-align: center
}

.vertical .inner {
    gap: 17px;
    padding: 24px 20px
}

.vertical strong {
    font-size: 25px;
    line-height: 1.15
}

.vertical .badge {
    width: 54px;
    height: 54px;
    font-size: 20px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes shine {

    0%,
    35% {
        left: -35%
    }

    70%,
    100% {
        left: 125%
    }
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 0 9px rgba(39, 197, 212, 0)
    }
}

@media(max-width:520px) {

    .inner,
    .copy {
        flex-direction: column;
        text-align: center
    }

    .inner {
        gap: 10px;
        padding: 13px
    }

    .banner {
        min-height: 160px
    }

    strong {
        font-size: 20px;
        line-height: 1.18
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation: none !important
    }
}