.cb-hero {
    position: relative;
    isolation: isolate;
    text-align: center;
    padding: 4.5rem 0 3rem;
    max-width: 880px;
    margin: 0 auto;
}

.cb-hero::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -120px;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: calc(100% + 240px);
    background: radial-gradient(ellipse 50% 42% at 50% 38%, rgba(238, 69, 36, .11) 0%, rgba(252, 168, 68, .045) 48%, transparent 72%);
    pointer-events: none;
    z-index: -1;
}

.cb-hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: .35rem .9rem;
    border-radius: 999px;
    border: 1px solid var(--ad-border-hairline, rgba(255, 255, 255, .08));
    background: var(--ad-surface-2, #141416);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .06em;
    text-transform: uppercase;
}
@property --cb-hero-sweep {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
.cb-hero-badge::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(from var(--cb-hero-sweep, 0deg), transparent 0%, rgba(252, 168, 68, .9) 10%, rgba(238, 69, 36, .5) 16%, transparent 26%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: cb-hero-sweep-rotate 4s linear infinite;
    pointer-events: none;
}
@keyframes cb-hero-sweep-rotate {
    to { --cb-hero-sweep: 360deg; }
}

.cb-hero-headline {
    margin: 1.5rem 0 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.cb-hero-sub {
    margin: 1.25rem auto 0;
    max-width: 600px;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ad-text-secondary, #9c9c9d);
}

.cb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.cb-hero-actions .btn + .btn {
    margin-left: 0;
}

.cb-hero-command {
    margin-top: 2.25rem;
    color: #fff;
}

.cb-hero-media {
    position: relative;
    margin-top: 3.5rem;
    border-radius: 16px;
    border: 1px solid transparent;
    background:
        linear-gradient(var(--ad-surface-1, #0f0f10), var(--ad-surface-1, #0f0f10)) padding-box,
        var(--ad-border-glare, linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .04))) border-box;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 2rem 4rem -1.5rem rgba(0, 0, 0, .6),
        0 0 48px -16px rgba(238, 69, 36, .25);
    padding: .5rem;
}
.cb-hero-media-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 11px;
}

@media (prefers-reduced-motion: reduce) {
    .cb-hero-badge::before {
        animation: none;
    }
}

@media (max-width: 767.98px) {
    .cb-hero {
        padding-top: 2.5rem;
    }
    .cb-hero-headline {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }
}
