/* BOND BIGODI - EM BREVE V1.1.0 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bb-bg: #050505;
    --bb-black: #020202;
    --bb-panel: rgba(6, 6, 6, .78);
    --bb-white: #f4f4f2;
    --bb-muted: rgba(244, 244, 242, .72);
    --bb-blue: #086bd8;
    --bb-blue-soft: #1180ff;
    --bb-red: #ef151c;
    --bb-line: rgba(255, 255, 255, .15);
    --bb-max: 780px;
}

html {
    min-height: 100%;
    background: var(--bb-black);
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    background: var(--bb-black);
    color: var(--bb-white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

.bb-page {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 28%, rgba(25, 25, 25, .76) 0 16%, rgba(7, 7, 7, .72) 42%, rgba(0, 0, 0, .98) 80%),
        linear-gradient(180deg, #111 0%, #030303 62%, #000 100%);
}

.bb-page::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -6;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, .015) 0 1px,
            transparent 1px 10px
        );
    pointer-events: none;
}

.bb-noise {
    position: absolute;
    inset: 0;
    z-index: 20;
    opacity: .08;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 22%, #fff 0 .55px, transparent .8px),
        radial-gradient(circle at 82% 36%, #fff 0 .45px, transparent .7px);
    background-size: 7px 7px, 11px 11px;
    mix-blend-mode: overlay;
}

.bb-main {
    position: relative;
    z-index: 5;
    display: grid;
    place-items: center;
    min-height: 100svh;
    padding: clamp(26px, 4vw, 58px) 22px;
}

.bb-hero {
    width: min(100%, var(--bb-max));
    text-align: center;
    transform: translateY(12px);
    opacity: 0;
    animation: bbReveal .9s cubic-bezier(.2, .8, .2, 1) .08s forwards;
}

.bb-brand-wrap {
    position: relative;
    width: min(48vw, 390px);
    min-width: 270px;
    margin: 0 auto clamp(10px, 1.3vw, 18px);
}

.bb-rive-stage {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 613 / 582;
}

.bb-rive-stage canvas,
.bb-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bb-rive-stage canvas {
    z-index: 2;
    opacity: 0;
    transition: opacity .35s ease;
}

.bb-rive-stage.is-rive-active canvas {
    opacity: 1;
}

.bb-rive-stage.is-rive-active .bb-logo {
    opacity: 0;
}

.bb-logo {
    z-index: 3;
    object-fit: contain;
    filter:
        drop-shadow(0 18px 22px rgba(0, 0, 0, .48))
        drop-shadow(0 0 1px rgba(255, 255, 255, .18));
    transform: translateZ(0);
    animation: bbLogoFloat 5.2s ease-in-out infinite;
    transition: opacity .35s ease;
}

.bb-brand-glow {
    position: absolute;
    inset: 10% 6% 5%;
    z-index: -1;
    border-radius: 50%;
    opacity: .65;
    filter: blur(50px);
    background:
        radial-gradient(circle at 37% 47%, rgba(0, 102, 219, .38), transparent 47%),
        radial-gradient(circle at 70% 63%, rgba(239, 21, 28, .26), transparent 44%);
    animation: bbGlow 4.8s ease-in-out infinite;
}

.bb-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2.2vw, 24px);
    margin-top: -4px;
}

.bb-title-row h1 {
    margin: 0;
    color: #f2f2ef;
    font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", sans-serif;
    font-size: clamp(64px, 8.1vw, 112px);
    font-stretch: condensed;
    font-weight: 900;
    letter-spacing: .018em;
    line-height: .9;
    text-transform: uppercase;
    text-shadow:
        0 2px 0 rgba(255, 255, 255, .15),
        0 8px 20px rgba(0, 0, 0, .75);
}

.bb-title-row h1::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-top: 12px;
    opacity: .24;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.bb-speed {
    display: flex;
    gap: 5px;
    flex: 0 0 auto;
    transform: skewX(-28deg);
}

.bb-speed i {
    display: block;
    width: clamp(12px, 1.7vw, 20px);
    height: clamp(10px, 1.1vw, 14px);
}

.bb-speed--blue i {
    background: var(--bb-blue);
    box-shadow: 0 0 16px rgba(8, 107, 216, .22);
}

.bb-speed--red i {
    background: var(--bb-red);
    box-shadow: 0 0 16px rgba(239, 21, 28, .2);
}

.bb-subtitle {
    margin: 17px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 400;
    letter-spacing: -.01em;
}

.bb-slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: min(100%, 650px);
    margin: 12px auto 0;
    padding: 10px 0;
    color: var(--bb-blue-soft);
    border-top: 1px solid rgba(17, 128, 255, .22);
    border-bottom: 1px solid rgba(17, 128, 255, .18);
}

.bb-slogan p {
    margin: 0;
    font-size: clamp(15px, 1.7vw, 19px);
    font-weight: 520;
}

.bb-slogan > span {
    font-size: 12px;
    filter: drop-shadow(0 0 8px rgba(17, 128, 255, .5));
}

.bb-progress-block {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    width: min(100%, 650px);
    margin: 17px auto 0;
}

.bb-progress-track {
    position: relative;
    height: 24px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, .78);
    border-radius: 999px;
    background: rgba(0, 0, 0, .72);
    box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .8),
        0 8px 24px rgba(0, 0, 0, .24);
}

.bb-progress-fill {
    position: absolute;
    inset: 3px auto 3px 3px;
    width: 0;
    border-radius: 999px;
    background:
        repeating-linear-gradient(
            -55deg,
            #0873ed 0 8px,
            #0873ed 8px 11px,
            #034ca9 11px 14px
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .23),
        0 0 22px rgba(8, 115, 237, .34);
    transition: width 1.85s cubic-bezier(.2, .8, .25, 1);
}

.bb-progress-shine {
    position: absolute;
    top: 1px;
    bottom: 1px;
    left: -30%;
    width: 28%;
    opacity: .48;
    transform: skewX(-25deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.46), transparent);
    animation: bbShine 2.9s linear infinite;
}

.bb-progress-number {
    min-width: 46px;
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    font-variant-numeric: tabular-nums;
    text-align: left;
}

.bb-info-panel {
    display: grid;
    grid-template-columns: 1fr 1px 1.16fr;
    align-items: center;
    gap: clamp(17px, 2vw, 24px);
    width: min(100%, 720px);
    margin: 18px auto 0;
    padding: 14px clamp(17px, 3vw, 30px);
    border: 1px solid rgba(255, 255, 255, .2);
    background:
        linear-gradient(180deg, rgba(17, 17, 17, .82), rgba(3, 3, 3, .84));
    box-shadow:
        0 20px 45px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .035);
    backdrop-filter: blur(12px);
}

.bb-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-width: 0;
    text-decoration: none;
}

.bb-info-icon {
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 2px solid;
    border-radius: 50%;
}

.bb-info-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.85;
}

.bb-info-icon--blue {
    color: #0a7bff;
    border-color: #0a7bff;
}

.bb-info-icon--red {
    color: var(--bb-red);
    border-color: var(--bb-red);
}

.bb-info-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.bb-info-copy small {
    color: rgba(255, 255, 255, .78);
    font-size: clamp(12px, 1.5vw, 15px);
    white-space: nowrap;
}

.bb-info-copy strong {
    color: #0a7bff;
    font-size: clamp(18px, 2vw, 23px);
    font-weight: 760;
    line-height: 1.05;
    white-space: nowrap;
}

.bb-divider {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, .22);
}

.bb-phone {
    border-radius: 8px;
    outline: none;
    transition: transform .2s ease, background .2s ease;
}

.bb-phone:hover {
    transform: translateY(-1px);
}

.bb-phone:focus-visible {
    box-shadow: 0 0 0 3px rgba(8, 107, 216, .36);
}

.bb-phone-number {
    color: #fff;
    font-family: "Arial Black", Impact, sans-serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
}

.bb-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .24);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.bb-status-dot > span:first-child {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #777;
}

.bb-status-dot.is-online > span:first-child {
    background: #0a7bff;
    box-shadow: 0 0 8px rgba(10, 123, 255, .55);
}

.bb-scene {
    position: absolute;
    z-index: -2;
    top: 50%;
    width: min(31vw, 470px);
    pointer-events: none;
    opacity: .35;
    filter: grayscale(1) contrast(1.05);
}

.bb-scene img {
    display: block;
    width: 100%;
    height: auto;
}

.bb-scene--left {
    left: clamp(-120px, -4vw, -40px);
    transform: translateY(-42%);
}

.bb-scene--right {
    right: clamp(-120px, -4vw, -38px);
    transform: translateY(-47%);
}

.bb-light {
    position: absolute;
    z-index: -3;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(85px);
    opacity: .12;
    pointer-events: none;
}

.bb-light--one {
    top: 12%;
    left: 4%;
    background: var(--bb-blue);
}

.bb-light--two {
    right: 1%;
    bottom: 5%;
    background: var(--bb-red);
}

.bb-corner {
    position: absolute;
    z-index: 7;
    width: 310px;
    height: 310px;
    pointer-events: none;
    opacity: .95;
}

.bb-corner::before,
.bb-corner::after {
    content: "";
    position: absolute;
    inset: 0;
}

.bb-corner--top {
    top: -72px;
    left: -82px;
    transform: rotate(-2deg);
    background:
        linear-gradient(135deg,
            #0873ed 0 17px,
            #020202 17px 29px,
            #f3f3f3 29px 46px,
            #020202 46px 58px,
            #e81920 58px 75px,
            transparent 75px);
}

.bb-corner--bottom {
    right: -82px;
    bottom: -72px;
    transform: rotate(180deg);
    background:
        linear-gradient(135deg,
            #0873ed 0 17px,
            #020202 17px 29px,
            #f3f3f3 29px 46px,
            #020202 46px 58px,
            #e81920 58px 75px,
            transparent 75px);
}

@keyframes bbReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bbLogoFloat {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(.001deg); }
    50% { transform: translate3d(0, -7px, 0) rotate(.001deg); }
}

@keyframes bbGlow {
    0%, 100% { opacity: .48; transform: scale(.95); }
    50% { opacity: .72; transform: scale(1.03); }
}

@keyframes bbShine {
    from { transform: translateX(-120%) skewX(-25deg); }
    to { transform: translateX(620%) skewX(-25deg); }
}

@media (max-width: 1100px) {
    .bb-scene {
        width: 40vw;
        opacity: .18;
    }

    .bb-scene--left {
        left: -18vw;
    }

    .bb-scene--right {
        right: -18vw;
    }
}

@media (max-width: 760px) {
    .bb-main {
        padding: 25px 17px 30px;
    }

    .bb-brand-wrap {
        width: min(78vw, 330px);
        min-width: 0;
    }

    .bb-title-row {
        gap: 8px;
    }

    .bb-title-row h1 {
        font-size: clamp(55px, 16vw, 84px);
    }

    .bb-speed i {
        width: 9px;
        height: 9px;
    }

    .bb-subtitle {
        max-width: 540px;
        margin-inline: auto;
    }

    .bb-slogan {
        gap: 9px;
    }

    .bb-progress-block {
        margin-top: 15px;
    }

    .bb-info-panel {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 14px 16px;
    }

    .bb-divider {
        width: 100%;
        height: 1px;
    }

    .bb-info-item {
        width: 100%;
        justify-content: flex-start;
    }

    .bb-phone {
        justify-content: center;
    }

    .bb-scene {
        display: none;
    }

    .bb-corner {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 430px) {
    .bb-brand-wrap {
        width: min(82vw, 292px);
    }

    .bb-title-row h1 {
        font-size: clamp(48px, 16vw, 67px);
    }

    .bb-speed {
        display: none;
    }

    .bb-subtitle {
        font-size: 16px;
        line-height: 1.45;
    }

    .bb-slogan p {
        font-size: 14px;
        line-height: 1.35;
    }

    .bb-progress-track {
        height: 21px;
    }

    .bb-info-icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .bb-phone-number {
        font-size: 28px;
    }
}

@media (max-height: 760px) and (min-width: 761px) {
    .bb-main {
        padding-block: 22px;
    }

    .bb-brand-wrap {
        width: min(31vw, 290px);
    }

    .bb-title-row h1 {
        font-size: clamp(58px, 7vw, 85px);
    }

    .bb-subtitle {
        margin-top: 12px;
    }

    .bb-slogan {
        padding-block: 7px;
    }

    .bb-progress-block,
    .bb-info-panel {
        margin-top: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}
