.bb-hero {
    position: relative;
    padding-top: 6rem;
    padding-bottom: 120px;
    overflow: hidden;
    background-color: #131313;
    color: #e4e2e1;
    font-family: 'Inter', sans-serif;
}
.bb-hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
.bb-hero__content {
    position: relative;
    z-index: 10;
}
.bb-hero__badge {
    font-family: 'Geist', sans-serif;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #c3f5ff;
    border: 1px solid rgba(195, 245, 255, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    display: inline-block;
}
.bb-hero__title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    font-weight: 800;
    margin-bottom: 1.5rem;
}
.bb-hero__title .text-gradient {
    background: linear-gradient(to right, #c3f5ff, #00e5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bb-hero__desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #bac9cc;
    margin-bottom: 2.5rem;
    max-width: 32rem;
}
.bb-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.bb-hero__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bb-hero__btn--primary {
    background-color: #00e5ff;
    color: #00626e;
}
.bb-hero__btn--primary:hover {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}
.bb-hero__btn--primary .material-symbols-outlined {
    font-size: 1rem;
}
.bb-hero__btn--secondary {
    border: 1px solid #c3f5ff;
    color: #c3f5ff;
    background: transparent;
}
.bb-hero__btn--secondary:hover {
    background-color: rgba(195, 245, 255, 0.1);
}
.bb-hero__media {
    position: relative;
}
.bb-hero__glow {
    position: absolute;
    inset: -1rem;
    background: rgba(0, 229, 255, 0.2);
    filter: blur(64px);
    border-radius: 9999px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.bb-hero__media:hover .bb-hero__glow {
    opacity: 0.7;
}
.bb-hero__figure {
    position: relative;
    background: rgba(38, 38, 38, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: 0;
}
.bb-hero__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.bb-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(19, 19, 19, 0.8), transparent);
}
@media (min-width: 768px) {
    .bb-hero__container {
        grid-template-columns: repeat(2, 1fr);
        padding-left: 64px;
        padding-right: 64px;
    }
    .bb-hero__title {
        font-size: 72px;
        line-height: 80px;
    }
    .bb-hero__figure {
        aspect-ratio: 1 / 1;
    }
}
