@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@500;600;700;800&family=Playfair+Display:wght@600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

.bc-landing-page,
.bc-landing-page * {
    box-sizing: border-box;
}

.bc-landing-page {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--lp-text);
    background: var(--lp-bg);
    font-family: Inter, system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

.bc-landing-page main,
.bc-lp-header,
.bc-lp-section,
.bc-lp-section-inner,
.bc-lp-copy,
.bc-lp-items,
.bc-lp-footer {
    min-width: 0;
    max-width: 100%;
}

.bc-lp-header {
    position: sticky;
    z-index: 30;
    top: 0;
    display: grid;
    min-height: 76px;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 12px max(24px, calc((100vw - 1180px) / 2));
    border-bottom: 1px solid color-mix(in srgb, var(--lp-text) 10%, transparent);
    background: color-mix(in srgb, var(--lp-bg) 91%, transparent);
    backdrop-filter: blur(18px);
}

.bc-lp-header a {
    color: inherit;
    text-decoration: none;
}

.bc-lp-brand {
    min-width: 0;
    overflow-wrap: anywhere;
    font-family: var(--lp-heading);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.bc-lp-header nav {
    display: flex;
    align-items: center;
    gap: 27px;
}

.bc-lp-header nav a {
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 650;
}

.bc-lp-header-actions {
    position: relative;
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 9px;
}

.bc-lp-language {
    position: relative;
}

.bc-lp-language summary {
    display: flex;
    min-width: 56px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid color-mix(in srgb, var(--lp-text) 14%, transparent);
    border-radius: 11px;
    color: var(--lp-text);
    background: var(--lp-surface);
    font-size: 12px;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.bc-lp-language summary::-webkit-details-marker {
    display: none;
}

.bc-lp-language summary i {
    font-style: normal;
}

.bc-lp-language > div {
    position: absolute;
    z-index: 80;
    top: calc(100% + 8px);
    right: 0;
    display: grid;
    width: 190px;
    max-height: 320px;
    overflow-y: auto;
    padding: 7px;
    border: 1px solid color-mix(in srgb, var(--lp-text) 12%, transparent);
    border-radius: 13px;
    background: var(--lp-bg);
    box-shadow: 0 20px 55px color-mix(in srgb, var(--lp-text) 20%, transparent);
}

.bc-lp-language > div a {
    display: grid;
    grid-template-columns: 31px 1fr;
    gap: 8px;
    align-items: center;
    padding: 9px;
    border-radius: 9px;
    color: var(--lp-text);
    font-size: 13px;
    font-weight: 700;
}

.bc-lp-language > div a:hover,
.bc-lp-language > div a.active {
    color: var(--lp-accent);
    background: var(--lp-surface);
}

.bc-lp-language > div a span {
    color: var(--lp-muted);
    font-size: 10px;
    font-weight: 900;
}

.bc-landing-page[dir="rtl"] .bc-lp-language > div {
    right: auto;
    left: 0;
}

.bc-lp-header-actions > .bc-lp-button {
    justify-self: end;
}

.bc-lp-section {
    overflow: hidden;
    padding: clamp(72px, 8vw, 124px) max(24px, calc((100vw - 1180px) / 2));
}

.bc-lp-section:nth-child(even) {
    background: var(--lp-surface);
}

.bc-lp-section-inner {
    display: grid;
    align-items: center;
    gap: clamp(38px, 6vw, 90px);
}

.bc-lp-section.type-hero {
    min-height: min(780px, calc(100vh - 76px));
    display: grid;
    background:
        radial-gradient(circle at 78% 35%, color-mix(in srgb, var(--lp-accent) 19%, transparent), transparent 34%),
        var(--lp-bg);
}

.type-hero .bc-lp-section-inner,
.type-split .bc-lp-section-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
}

.bc-lp-copy {
    min-width: 0;
    max-width: 780px;
}

.bc-lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: var(--lp-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.bc-lp-eyebrow::before {
    width: 9px;
    height: 9px;
    border: 3px solid color-mix(in srgb, var(--lp-accent) 28%, transparent);
    border-radius: 50%;
    background: var(--lp-accent);
    content: "";
}

.bc-lp-copy h1,
.bc-lp-copy h2 {
    max-width: 100%;
    overflow-wrap: anywhere;
    margin: 0;
    color: var(--lp-text);
    font-family: var(--lp-heading), Manrope, sans-serif;
    line-height: 1.04;
    letter-spacing: -.052em;
}

.bc-lp-copy h1 {
    font-size: clamp(48px, 6.3vw, 88px);
}

.bc-lp-copy h2 {
    font-size: clamp(36px, 4.2vw, 61px);
}

.bc-lp-copy > p {
    max-width: 720px;
    margin: 24px 0 0;
    color: var(--lp-muted);
    font-size: clamp(17px, 1.6vw, 21px);
    line-height: 1.75;
}

.bc-lp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.bc-lp-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 23px;
    border: 1px solid var(--lp-accent);
    border-radius: calc(var(--lp-radius) * .55);
    color: #fff !important;
    background: var(--lp-accent);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--lp-accent) 25%, transparent);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
}

.bc-lp-button.compact {
    min-height: 42px;
    padding: 0 17px;
    font-size: 13px;
}

.bc-lp-button.secondary {
    color: var(--lp-text) !important;
    background: transparent;
    box-shadow: none;
}

.bc-lp-button i {
    font-style: normal;
}

.bc-lp-visual {
    position: relative;
    min-height: clamp(390px, 42vw, 570px);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--lp-text) 11%, transparent);
    border-radius: var(--lp-radius);
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--lp-accent) 90%, #fff), color-mix(in srgb, var(--lp-text) 91%, var(--lp-accent)));
    box-shadow: 0 35px 80px color-mix(in srgb, var(--lp-text) 18%, transparent);
}

.bc-lp-visual.has-image {
    background: color-mix(in srgb, var(--lp-surface) 88%, var(--lp-text));
}

.bc-lp-visual.has-image::before,
.bc-lp-visual.has-image::after {
    display: none;
}

.bc-lp-visual.has-image > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(390px, 42vw, 570px);
    object-fit: cover;
    object-position: center;
}

.bc-lp-visual::before,
.bc-lp-visual::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 50%;
    content: "";
}

.bc-lp-visual::before {
    width: 470px;
    height: 470px;
    top: -100px;
    right: -130px;
}

.bc-lp-visual::after {
    width: 280px;
    height: 280px;
    right: 40px;
    bottom: -80px;
}

.bc-lp-visual > span {
    position: absolute;
    left: 11%;
    right: 11%;
    height: 16%;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: calc(var(--lp-radius) * .45);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(7px);
}

.bc-lp-visual > span:nth-child(1) { top: 15%; right: 38%; }
.bc-lp-visual > span:nth-child(2) { top: 36%; left: 26%; }
.bc-lp-visual > span:nth-child(3) { top: 57%; right: 25%; }
.bc-lp-visual > i {
    position: absolute;
    width: 95px;
    height: 95px;
    top: 23%;
    right: 13%;
    border-radius: 30px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 20px 50px rgba(0,0,0,.14);
}
.bc-lp-visual > small {
    position: absolute;
    left: 11%;
    bottom: 9%;
    color: #fff;
    font-family: var(--lp-heading);
    font-size: 20px;
    font-weight: 800;
}

.bc-lp-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.type-hero .bc-lp-items,
.type-split .bc-lp-items {
    width: 100%;
    grid-column: 1 / -1;
}

.bc-lp-items article {
    min-width: 0;
    min-height: 190px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid color-mix(in srgb, var(--lp-text) 10%, transparent);
    border-radius: calc(var(--lp-radius) * .75);
    background: color-mix(in srgb, var(--lp-bg) 92%, transparent);
    box-shadow: 0 18px 45px color-mix(in srgb, var(--lp-text) 6%, transparent);
}

.bc-lp-items article > span {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--lp-accent);
    background: color-mix(in srgb, var(--lp-accent) 12%, transparent);
    font-size: 20px;
    font-weight: 800;
}

.bc-lp-items strong {
    display: block;
    margin-top: 19px;
    color: var(--lp-accent);
    font-family: var(--lp-heading);
    font-size: 34px;
}

.bc-lp-items h3 {
    margin: 17px 0 8px;
    color: var(--lp-text);
    font-family: var(--lp-heading);
    font-size: 20px;
    letter-spacing: -.025em;
    overflow-wrap: break-word;
}

.bc-lp-items p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 15px;
    overflow-wrap: break-word;
}

.type-stats .bc-lp-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.type-stats .bc-lp-items article {
    min-height: 150px;
    text-align: center;
}

.type-stats .bc-lp-items article > span {
    display: none;
}

.type-testimonials .bc-lp-items article p {
    color: var(--lp-text);
    font-size: 17px;
    line-height: 1.7;
}

.type-faq .bc-lp-items {
    grid-template-columns: 1fr 1fr;
}

.type-faq .bc-lp-items article {
    min-height: 130px;
}

.type-cta {
    text-align: center;
    background: var(--lp-text) !important;
}

.type-cta .bc-lp-copy {
    margin: auto;
}

.type-cta .bc-lp-copy h2,
.type-cta .bc-lp-copy > p {
    color: #fff;
}

.type-cta .bc-lp-actions {
    justify-content: center;
}

.bc-lp-contact-form {
    display: grid;
    max-width: 760px;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 40px;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid color-mix(in srgb, var(--lp-text) 10%, transparent);
    border-radius: var(--lp-radius);
    background: var(--lp-bg);
}

.bc-lp-contact-form label {
    display: grid;
    gap: 8px;
    color: var(--lp-text);
    font-size: 14px;
    font-weight: 700;
}

.bc-lp-contact-form label:nth-of-type(3) {
    grid-column: 1 / -1;
}

.bc-lp-contact-form input,
.bc-lp-contact-form textarea {
    width: 100%;
    border: 1px solid color-mix(in srgb, var(--lp-text) 15%, transparent);
    border-radius: 12px;
    padding: 13px 14px;
    color: var(--lp-text);
    background: var(--lp-bg);
    font: inherit;
}

.bc-lp-honeypot {
    position: absolute !important;
    left: -9999px !important;
}

.bc-lp-contact-form button {
    border: 0;
}

.bc-lp-contact-dock {
    position: fixed;
    z-index: 48;
    bottom: max(26px, env(safe-area-inset-bottom));
    display: grid;
    gap: 11px;
}

.bc-lp-contact-dock.position-right { right: 24px; }
.bc-lp-contact-dock.position-left { left: 24px; }

.bc-lp-contact-dock a {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border: 2px solid var(--channel-color);
    border-radius: 50%;
    color: #fff;
    background: var(--channel-color);
    box-shadow: 0 15px 34px color-mix(in srgb, var(--channel-color) 32%, transparent);
    transition: transform .2s ease, box-shadow .2s ease;
}

.bc-lp-contact-dock.style-outline a {
    color: var(--channel-color);
    background: var(--lp-bg);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--lp-text) 13%, transparent);
}

.bc-lp-contact-dock a:hover {
    transform: translateY(-3px) scale(1.035);
    box-shadow: 0 19px 40px color-mix(in srgb, var(--channel-color) 39%, transparent);
}

.bc-lp-contact-dock svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.bc-landing-page.is-editor-preview {
    position: relative;
}

.is-editor-preview .bc-lp-contact-dock {
    position: absolute;
    top: 150px;
    bottom: auto;
}

.is-editor-preview .bc-lp-contact-dock.position-right { right: 17px; }
.is-editor-preview .bc-lp-contact-dock.position-left { left: 17px; }
.is-editor-preview .bc-lp-contact-dock a { width: 45px; height: 45px; }
.is-editor-preview .bc-lp-contact-dock svg { width: 20px; height: 20px; }

.bc-lp-footer {
    display: flex;
    min-height: 90px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px max(24px, calc((100vw - 1180px) / 2));
    color: var(--lp-muted);
    background: var(--lp-surface);
    font-size: 13px;
}

.bc-lp-footer a {
    color: var(--lp-accent);
    font-weight: 700;
    text-decoration: none;
}

.bc-lp-footer button {
    border: 0;
    color: var(--lp-muted);
    background: transparent;
    cursor: pointer;
}

.bc-landing-page.is-editor-preview {
    min-height: 0;
    transform-origin: top center;
}

.is-editor-preview .bc-lp-header {
    position: relative;
    min-height: 58px;
    padding: 10px 25px;
}

.is-editor-preview .bc-lp-section {
    padding: 55px 35px;
}

.is-editor-preview .bc-lp-section.type-hero {
    min-height: 540px;
}

.is-editor-preview .bc-lp-items article {
    padding: 22px;
}

.is-editor-preview .bc-lp-copy h1 {
    font-size: clamp(40px, 5vw, 65px);
}

.is-editor-preview .bc-lp-footer {
    padding: 20px 30px;
}

.landing-editor-preview-frame.is-mobile {
    padding: 18px;
    background: #dfe4ec;
}

.landing-editor-preview-frame.is-mobile .bc-landing-page {
    width: min(390px, 100%);
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(16, 24, 40, .18);
}

.landing-editor-preview-frame.is-mobile .bc-lp-header {
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 9px 16px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-header nav {
    display: none;
}

.landing-editor-preview-frame.is-mobile .bc-lp-header-actions > .bc-lp-button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 12px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-section {
    padding: 65px 18px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-section.type-hero {
    min-height: 0;
    padding-top: 70px;
}

.landing-editor-preview-frame.is-mobile .type-hero .bc-lp-section-inner,
.landing-editor-preview-frame.is-mobile .type-split .bc-lp-section-inner {
    grid-template-columns: 1fr;
}

.landing-editor-preview-frame.is-mobile .bc-lp-copy h1 {
    font-size: 40px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-copy h2 {
    font-size: 32px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-copy > p {
    font-size: 16px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-visual {
    min-height: 310px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-visual.has-image > img {
    min-height: 310px;
}

.landing-editor-preview-frame.is-mobile .bc-lp-items,
.landing-editor-preview-frame.is-mobile .type-stats .bc-lp-items,
.landing-editor-preview-frame.is-mobile .type-faq .bc-lp-items {
    grid-template-columns: 1fr;
}

.landing-editor-preview-frame.is-mobile .bc-lp-contact-form {
    grid-template-columns: 1fr;
}

.landing-editor-preview-frame.is-mobile .bc-lp-contact-form label:nth-of-type(3) {
    grid-column: auto;
}

.landing-editor-preview-frame.is-mobile .bc-lp-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 18px 42px;
}

@media (max-width: 900px) {
    .bc-lp-header {
        grid-template-columns: 1fr auto;
    }
    .bc-lp-header nav {
        display: none;
    }
    .type-hero .bc-lp-section-inner,
    .type-split .bc-lp-section-inner {
        grid-template-columns: 1fr;
    }
    .bc-lp-visual {
        min-height: 390px;
    }
    .bc-lp-items,
    .type-stats .bc-lp-items {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .bc-lp-header {
        min-height: 64px;
        padding: 9px 16px;
    }
    .bc-lp-header-actions > .bc-lp-button {
        min-height: 38px;
        padding: 0 13px;
        font-size: 12px;
    }
    .bc-lp-header-actions {
        gap: 6px;
    }
    .bc-lp-language summary {
        min-width: 48px;
        min-height: 38px;
    }
    .bc-lp-header-actions > .bc-lp-button {
        max-width: 145px;
    }
    .bc-lp-section {
        padding: 65px 18px;
    }
    .bc-lp-section.type-hero {
        min-height: 0;
        padding-top: 80px;
    }
    .bc-lp-copy h1 {
        font-size: 43px;
    }
    .bc-lp-copy h2 {
        font-size: 35px;
    }
    .bc-lp-copy > p {
        font-size: 17px;
    }
    .bc-lp-visual {
        min-height: 320px;
    }
    .bc-lp-visual.has-image > img {
        min-height: 320px;
    }
    .bc-lp-actions,
    .bc-lp-button {
        max-width: 100%;
    }
    .bc-lp-button {
        white-space: normal;
        text-align: center;
    }
    .bc-lp-items,
    .type-stats .bc-lp-items,
    .type-faq .bc-lp-items {
        grid-template-columns: 1fr;
    }
    .bc-lp-contact-form {
        grid-template-columns: 1fr;
    }
    .bc-lp-contact-form label:nth-of-type(3) {
        grid-column: auto;
    }
    .bc-lp-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 18px 95px;
    }
    .bc-lp-contact-dock {
        bottom: max(18px, env(safe-area-inset-bottom));
        gap: 8px;
    }
    .bc-lp-contact-dock.position-right { right: 14px; }
    .bc-lp-contact-dock.position-left { left: 14px; }
    .bc-lp-contact-dock a {
        width: 50px;
        height: 50px;
    }
    .bc-lp-contact-dock svg {
        width: 22px;
        height: 22px;
    }
}
