/* ── Design tokens ── */
:root {
    --bmc-blue: #1d5bf0;
    --bmc-blue-dk: #1546d6;
    --bmc-teal: #16bdd6;
    --bmc-dark: #0b0b12;
    --bmc-dark-bg: #0b1020;
    --bmc-dark-card: #11182e;
    --bmc-muted: #5a6172;
    --bmc-muted2: #7a8290;
    --bmc-muted3: #9aa1ae;
    --bmc-border: #eceef2;
    --bmc-border2: #e6e8ee;
    --bmc-surface: #fafbfd;
    --bmc-surface2: #f1f3f7;
    --bmc-surface3: #eaf1ff;
    --ff-h: "Plus Jakarta Sans", system-ui, sans-serif;
    --ff-m: "JetBrains Mono", monospace;
}

/* ── Shared layout ── */
.bmc-container {
    max-width: 1100px;
    margin: 0 auto;
}
.bmc-container-lg {
    max-width: 1200px;
    margin: 0 auto;
}
.bmc-container-xl {
    max-width: 1140px;
    margin: 0 auto;
}
.bmc-container-md {
    max-width: 760px;
    margin: 0 auto;
}
.bmc-container-sm {
    max-width: 880px;
    margin: 0 auto;
}
.bmc-section {
    padding: 90px 32px;
    scroll-margin-top: 80px;
}
.bmc-section-sm {
    padding: 84px 32px;
}
.bmc-pos-rel {
    position: relative;
}

/* ── Typography ── */
.bmc-eyebrow {
    font-family: var(--ff-m);
    font-size: 12.5px;
    letter-spacing: 0.1em;
    color: var(--bmc-blue);
    margin-bottom: 14px;
}
.bmc-eyebrow-teal {
    color: var(--bmc-teal);
}
.bmc-h1 {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.04;
    letter-spacing: -0.02em;
    color: var(--bmc-dark);
}
.bmc-h1-lg {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.025em;
}
.bmc-h1-md {
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.06;
}
.bmc-h1-white,
.bmc-h2-white {
    color: #fff;
}
.bmc-h2 {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    /* color: var(--bmc-dark); */
}
.bmc-h2-sm {
    font-size: 38px;
    line-height: 1.12;
}
.bmc-h2-cta {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #fff;
}
.bmc-body {
    font-size: 18px;
    line-height: 1.6;
    color: var(--bmc-muted);
}
.bmc-body-dark {
    color: #9aa6c2;
}
.bmc-body-white {
    color: rgba(255, 255, 255, 0.92);
}
.bmc-grad-text {
    background: linear-gradient(100deg, var(--bmc-blue), var(--bmc-teal));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bmc-teal-text {
    color: var(--bmc-teal);
}
.bmc-hint {
    font-size: 13.5px;
    color: #8a91a0;
    margin-top: 30px;
}

/* ── Section heading blocks ── */
.bmc-sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.bmc-sec-sub {
    margin-top: 16px;
}
.bmc-sec-sub-sm {
    margin-top: 16px;
    font-size: 17.5px;
}

/* ── Buttons ── */
.bmc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s ease;
}
.bmc-btn:hover {
    opacity: 0.88;
}

.bmc-btn-primary {
    background: var(--bmc-blue);
    color: #fff;
    border-radius: 999px;
    padding: 15px 30px;
    font-size: 15.5px;
    box-shadow: 0 10px 26px rgba(29, 91, 240, 0.32);
}
.bmc-btn-primary-r {
    background: var(--bmc-blue);
    color: #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(29, 91, 240, 0.3);
}
.bmc-btn-primary-pill {
    background: var(--bmc-blue);
    color: #fff;
    border-radius: 999px;
    padding: 14px 28px;
    font-size: 15px;
    box-shadow: 0 10px 24px rgba(29, 91, 240, 0.28);
}
.bmc-btn-outline {
    background: #fff;
    color: var(--bmc-blue);
    border: 1.5px solid #c9d6f5;
    border-radius: 999px;
    padding: 15px 30px;
    font-size: 15.5px;
}
.bmc-btn-outline-r {
    background: #fff;
    color: var(--bmc-dark);
    border: 1.5px solid #dde0e7;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 15px;
}
.bmc-btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 15px 30px;
    font-size: 15.5px;
}
.bmc-btn-ghost-r {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 14px 26px;
    font-size: 15px;
}
.bmc-btn-white {
    background: #fff;
    color: var(--bmc-blue-dk);
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}
.bmc-btn-ghost-cta {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 16px 32px;
    font-size: 16px;
}
.bmc-btn-dark-solid {
    background: #fff;
    color: var(--bmc-dark-bg);
    border-radius: 10px;
    padding: 14px 26px;
    font-size: 15px;
}
.bmc-btn-login {
    padding: 9px 18px;
    border: 1px solid #dde0e7;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--bmc-dark);
}
.bmc-btn-header {
    padding: 10px 20px;
    border-radius: 999px;
    background: var(--bmc-blue);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(29, 91, 240, 0.3);
}
.bmc-btn-full {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 14.5px;
}
.bmc-btn-full-blue {
    background: var(--bmc-blue);
    color: #fff;
}
.bmc-btn-full-dark {
    background: #fff;
    color: var(--bmc-dark-bg);
}
.bmc-btn-full-outline {
    background: #fff;
    color: var(--bmc-blue);
    border: 1.5px solid #c9d6f5;
}
.bmc-btn-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 34px;
    flex-wrap: wrap;
}
.bmc-btn-row-left {
    justify-content: flex-start;
    margin-top: 30px;
}

/* ── Header ── */
.bmc-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #edeef2;
}
.bmc-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 74px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.bmc-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.bmc-logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--bmc-blue), var(--bmc-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(29, 91, 240, 0.28);
}
.bmc-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.bmc-logo-brand {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--bmc-dark);
}
.bmc-logo-sub {
    font-family: var(--ff-m);
    font-size: 9.5px;
    letter-spacing: 0.22em;
    color: var(--bmc-blue);
    margin-top: 3px;
}
.bmc-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}
.bmc-nav-link {
    font-size: 14.5px;
    font-weight: 500;
    color: #3a3f4b;
}
.bmc-nav-link:hover {
    color: var(--bmc-blue);
}
.bmc-header-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

/* ── Badges ── */
.bmc-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 15px;
    border-radius: 999px;
    background: var(--bmc-surface3);
    border: 1px solid #d2e0ff;
    font-size: 13px;
    font-weight: 600;
    color: var(--bmc-blue);
    margin-bottom: 26px;
}
.bmc-badge-white {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    backdrop-filter: blur(4px);
}
.bmc-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--bmc-blue);
    box-shadow: 0 0 0 3px rgba(29, 91, 240, 0.18);
    flex-shrink: 0;
}
.bmc-badge-soon {
    font-family: var(--ff-m);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: #9aa1ae;
    background: #eef0f4;
    padding: 3px 8px;
    border-radius: 6px;
}

/* ── Hero A – Flow ── */
.bmc-hero-a {
    position: relative;
    background:
        radial-gradient(
            900px 460px at 50% -8%,
            #eaf1ff 0%,
            rgba(234, 241, 255, 0) 70%
        ),
        #fff;
    padding: 78px 32px 60px;
    overflow: hidden;
}
.bmc-hero-a-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#0b0b1208 1px, transparent 1px),
        linear-gradient(90deg, #0b0b1208 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(
        680px 380px at 50% 12%,
        #000,
        transparent 80%
    );
    mask-image: radial-gradient(680px 380px at 50% 12%, #000, transparent 80%);
}
.bmc-hero-a-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.bmc-pipeline-card {
    position: relative;
    max-width: 980px;
    margin: 54px auto 0;
    background: #fff;
    border: 1px solid #eaecf1;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 24px 60px -28px rgba(11, 11, 18, 0.22);
}
.bmc-pipeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.bmc-pipeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    flex: 1;
    min-width: 120px;
}
.bmc-pipe-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #f4f7ff;
    border: 1px solid #e2e9fb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.bmc-pipe-icon-grad {
    background: linear-gradient(135deg, var(--bmc-blue), var(--bmc-teal));
    border: none;
    box-shadow: 0 8px 20px rgba(29, 91, 240, 0.3);
}
.bmc-pipe-label {
    font-weight: 700;
    font-size: 14px;
    color: var(--bmc-dark);
}
.bmc-pipe-sub {
    font-size: 12px;
    color: #8a91a0;
}
.bmc-dash-line {
    animation: bmDash 1s linear infinite;
}

/* ── Hero B – Console ── */
.bmc-hero-b {
    position: relative;
    background: #fff;
    padding: 70px 32px 64px;
    overflow: hidden;
}
.bmc-hero-b-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(#0b0b120a 1px, transparent 1px),
        linear-gradient(90deg, #0b0b120a 1px, transparent 1px);
    background-size: 40px 40px;
    -webkit-mask-image: linear-gradient(#000, transparent 92%);
    mask-image: linear-gradient(#000, transparent 92%);
}
.bmc-hero-b-inner {
    position: relative;
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.bmc-mono-comment {
    font-family: var(--ff-m);
    font-size: 12.5px;
    letter-spacing: 0.12em;
    color: var(--bmc-blue);
    margin-bottom: 20px;
}
.bmc-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 26px;
}
.bmc-check-item {
    font-family: var(--ff-m);
    font-size: 13px;
    color: #3a3f4b;
}
.bmc-terminal {
    background: var(--bmc-dark-bg);
    border: 1px solid #1c2440;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 30px 70px -34px rgba(11, 16, 32, 0.7);
}
.bmc-term-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 22px;
}
.bmc-term-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}
.bmc-term-title {
    font-family: var(--ff-m);
    font-size: 11px;
    color: #5b6480;
    margin-left: 8px;
}
.bmc-term-rows {
    display: flex;
    flex-direction: column;
}
.bmc-term-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 15px;
    background: var(--bmc-dark-card);
    border: 1px solid #1f284a;
    border-radius: 11px;
}
.bmc-term-row-fin {
    background: linear-gradient(
        100deg,
        rgba(29, 91, 240, 0.2),
        rgba(22, 189, 214, 0.16)
    );
    border-color: #2c6be0;
}
.bmc-term-name {
    font-family: var(--ff-m);
    font-size: 13px;
    color: #e6eaf5;
    font-weight: 500;
}
.bmc-term-sub {
    font-family: var(--ff-m);
    font-size: 11px;
    color: #5b6480;
}
.bmc-term-badge {
    margin-left: auto;
    font-family: var(--ff-m);
    font-size: 11px;
}
.bmc-term-ok {
    color: #27c93f;
}
.bmc-term-routing {
    color: var(--bmc-teal);
}
.bmc-term-local {
    color: #5b6480;
}
.bmc-term-connector {
    height: 22px;
    width: 2px;
    background: #27406e;
    margin-left: 30px;
    position: relative;
}
.bmc-term-pulse {
    position: absolute;
    left: -3px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--bmc-teal);
    animation: bmPulse 1.6s ease-in-out infinite;
}

/* ── Hero C – Spotlight ── */
.bmc-hero-c {
    position: relative;
    background: #fff;
    padding: 0 0 64px;
}
.bmc-hero-c-band {
    position: relative;
    background: linear-gradient(
        135deg,
        #1546d6 0%,
        var(--bmc-blue) 45%,
        var(--bmc-teal) 100%
    );
    padding: 84px 32px 78px;
    overflow: hidden;
}
.bmc-hero-c-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
}
.bmc-hero-c-glow {
    position: absolute;
    top: -90px;
    right: -60px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    filter: blur(20px);
}
.bmc-hero-c-inner {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.bmc-stats-wrap {
    max-width: 980px;
    margin: -38px auto 0;
    padding: 0 32px;
    position: relative;
}
.bmc-stats-bar {
    background: #fff;
    border: 1px solid #eaecf1;
    border-radius: 18px;
    box-shadow: 0 24px 60px -30px rgba(11, 11, 18, 0.28);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.bmc-stat-cell {
    padding: 26px 22px;
    text-align: center;
    border-right: 1px solid #f0f1f5;
}
.bmc-stat-cell:last-child {
    border-right: none;
}
.bmc-stat-num {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 34px;
}
.bmc-stat-label {
    font-size: 13px;
    color: var(--bmc-muted);
    margin-top: 4px;
}

/* ── Problem ── */
.bmc-problem {
    background: var(--bmc-surface);
    border-top: 1px solid #eef0f4;
    padding: 84px 32px;
}
.bmc-prob-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.bmc-pcard {
    background: #fff;
    border: 1px solid var(--bmc-border);
    border-radius: 14px;
    padding: 22px;
}
.bmc-pcard-icon {
    font-size: 22px;
    margin-bottom: 12px;
}
.bmc-pcard-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--bmc-dark);
}
.bmc-pcard-desc {
    font-size: 13.5px;
    color: var(--bmc-muted2);
    margin-top: 5px;
    line-height: 1.5;
}
.bmc-pcard-cta {
    background: linear-gradient(135deg, var(--bmc-blue), var(--bmc-teal));
    border-radius: 14px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bmc-pcard-cta-t {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
}
.bmc-pcard-cta-d {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    line-height: 1.5;
}

/* ── Platform/tabs ── */
.bmc-tab-wrap {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}
.bmc-tab-group {
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    background: var(--bmc-surface2);
    border-radius: 12px;
}
.bmc-tab-btn {
    border: none;
    cursor: pointer;
    font-size: 14.5px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 9px;
    transition: all 0.2s;
}
.bmc-tab-btn-billing {
    font-size: 14px;
    padding: 9px 20px;
}
.bmc-tab-active {
    background: #fff;
    color: var(--bmc-dark);
    box-shadow: 0 1px 3px rgba(11, 11, 18, 0.12);
}
.bmc-tab-inactive {
    background: transparent;
    color: #6b7280;
}
.bmc-feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}
.bmc-fcard {
    background: #fff;
    border: 1px solid var(--bmc-border);
    border-radius: 16px;
    padding: 26px;
}
.bmc-fcard-soon {
    background: var(--bmc-surface);
    border: 1px dashed #d6dae2;
}
.bmc-fcard-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--bmc-surface3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}
.bmc-fcard-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}
.bmc-fcard-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--bmc-dark);
}
.bmc-fcard-desc {
    font-size: 14px;
    color: var(--bmc-muted2);
    margin-top: 6px;
    line-height: 1.55;
}

/* ── Sandbox ── */
.bmc-sandbox {
    background: var(--bmc-dark-bg);
    padding: 88px 32px;
    scroll-margin-top: 80px;
    position: relative;
    overflow: hidden;
}
.bmc-sandbox-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(
        700px 400px at 80% 0%,
        #000,
        transparent 75%
    );
    mask-image: radial-gradient(700px 400px at 80% 0%, #000, transparent 75%);
}
.bmc-sandbox-inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.bmc-sb-list {
    background: var(--bmc-dark-card);
    border: 1px solid #1f284a;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bmc-sb-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.bmc-sb-list-lbl {
    font-family: var(--ff-m);
    font-size: 13.5px;
    color: #e6eaf5;
}
.bmc-sb-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.bmc-sb-stat {
    background: linear-gradient(
        135deg,
        rgba(29, 91, 240, 0.18),
        rgba(22, 189, 214, 0.12)
    );
    border: 1px solid #2c6be0;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}
.bmc-sb-stat-num {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 24px;
    color: #fff;
}
.bmc-sb-stat-lbl {
    font-size: 11.5px;
    color: #9aa6c2;
    margin-top: 3px;
}

/* ── Pricing ── */
.bmc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    align-items: start;
}
.bmc-plan {
    background: #fff;
    border: 1px solid var(--bmc-border2);
    border-radius: 20px;
    padding: 30px;
}
.bmc-plan-feat {
    background: var(--bmc-dark-bg);
    border: none;
    box-shadow: 0 30px 70px -34px rgba(11, 16, 32, 0.6);
    position: relative;
}
.bmc-plan-badge {
    position: absolute;
    top: -12px;
    left: 30px;
    font-family: var(--ff-m);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: var(--bmc-dark-bg);
    background: linear-gradient(100deg, var(--bmc-teal), var(--bmc-blue));
    padding: 5px 12px;
    border-radius: 7px;
    font-weight: 500;
}
.bmc-plan-name {
    font-family: var(--ff-h);
    font-weight: 700;
    font-size: 20px;
    color: var(--bmc-dark);
}
.bmc-plan-name-w {
    color: #fff;
}
.bmc-plan-desc {
    font-size: 13.5px;
    margin-top: 6px;
    line-height: 1.5;
    color: var(--bmc-muted2);
}
.bmc-plan-desc-d {
    color: #9aa6c2;
}
.bmc-plan-price-row {
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.bmc-plan-price {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 34px;
    color: var(--bmc-dark);
}
.bmc-plan-price-w {
    color: #fff;
}
.bmc-plan-per {
    font-size: 13px;
    color: var(--bmc-muted2);
}
.bmc-plan-per-d {
    color: #9aa6c2;
}
.bmc-plan-setup {
    font-size: 12.5px;
    color: var(--bmc-muted2);
    margin-top: 6px;
}
.bmc-plan-setup-d {
    color: #9aa6c2;
}
.bmc-plan-feats {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    border-top: 1px solid #eef0f4;
    padding-top: 20px;
}
.bmc-plan-feats-d {
    border-top-color: #1f284a;
}
.bmc-feat-row {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    color: #3a3f4b;
}
.bmc-feat-row-d {
    color: #c7cfe2;
}
.bmc-feat-tick {
    color: var(--bmc-blue);
}
.bmc-feat-tick-t {
    color: var(--bmc-teal);
}
.bmc-plan-note {
    font-size: 12px;
    color: #9aa1ae;
    margin-top: 16px;
}
.bmc-plan-note-d {
    color: #6b7490;
}
.bmc-billing-note {
    text-align: center;
    font-size: 13px;
    color: var(--bmc-muted3);
    margin-top: 12px;
}

/* ── Early adopters ── */
.bmc-early {
    background: var(--bmc-surface);
    border-top: 1px solid #eef0f4;
    padding: 84px 32px;
}
.bmc-early-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}
.bmc-benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.bmc-bcard {
    background: #fff;
    border: 1px solid var(--bmc-border);
    border-radius: 14px;
    padding: 22px;
}
.bmc-bcard-wide {
    grid-column: span 2;
}
.bmc-bcard-icon {
    font-size: 20px;
    margin-bottom: 10px;
}
.bmc-bcard-title {
    font-weight: 700;
    font-size: 15px;
    color: var(--bmc-dark);
}

/* ── FAQ ── */
.bmc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.bmc-faq-item {
    background: #fff;
    border: 1px solid var(--bmc-border2);
    border-radius: 14px;
    overflow: hidden;
}
.bmc-faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
}
.bmc-faq-q {
    font-weight: 600;
    font-size: 16px;
    color: var(--bmc-dark);
}
.bmc-faq-icon {
    flex: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bmc-blue);
    font-size: 20px;
    transition: transform 0.2s ease;
}
.bmc-faq-icon-open {
    transform: rotate(45deg);
}
.bmc-faq-body {
    overflow: hidden;
    transition:
        max-height 0.28s ease,
        opacity 0.28s ease,
        padding 0.28s ease;
}
.bmc-faq-body-open {
    max-height: 300px;
    opacity: 1;
    padding: 0 24px 20px;
}
.bmc-faq-body-closed {
    max-height: 0;
    opacity: 0;
    padding: 0 24px;
}
.bmc-faq-a {
    font-size: 15px;
    line-height: 1.6;
    color: #6b7280;
}

/* ── Final CTA ── */
.bmc-cta-section {
    padding: 0 32px 88px;
}
.bmc-cta-card {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        #1546d6 0%,
        var(--bmc-blue) 48%,
        var(--bmc-teal) 100%
    );
    padding: 72px 48px;
    text-align: center;
}
.bmc-cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
}
.bmc-cta-inner {
    position: relative;
}
.bmc-cta-sub {
    max-width: 560px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}
.bmc-cta-hint {
    margin-top: 28px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Footer ── */
.bmc-contact-bar {
    background: #0b2a26;
    padding: 22px 32px;
}
.bmc-contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
}
.bmc-contact-item {
    display: flex;
    align-items: center;
    gap: 13px;
}
.bmc-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.bmc-contact-lbl {
    font-family: var(--ff-m);
    font-size: 10.5px;
    letter-spacing: 0.1em;
    color: #6fbfa8;
}
.bmc-contact-val {
    font-size: 14.5px;
    font-weight: 600;
    color: #eaf3f0;
    margin-top: 3px;
}
.bmc-footer-main {
    background: #0c0d10;
    padding: 64px 32px 0;
}
.bmc-footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}
.bmc-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.bmc-footer-logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--bmc-blue), var(--bmc-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.bmc-footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.bmc-footer-logo-brand {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.04em;
    color: #fff;
}
.bmc-footer-logo-sub {
    font-family: var(--ff-m);
    font-size: 9px;
    letter-spacing: 0.22em;
    color: #5fa8ff;
    margin-top: 3px;
}
.bmc-footer-about {
    font-size: 13.5px;
    line-height: 1.65;
    color: #8a909c;
}
.bmc-footer-about strong {
    color: #c4cad4;
    font-weight: 600;
}
.bmc-footer-doc-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}
.bmc-footer-doc-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid #23252b;
    border-radius: 9px;
    font-size: 12.5px;
    color: #c4cad4;
}
.bmc-footer-doc-btn:hover {
    border-color: #3a3d45;
    color: #fff;
}
.bmc-footer-col-lbl {
    font-family: var(--ff-m);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #6b7280;
    margin-bottom: 18px;
}
.bmc-footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.bmc-footer-link {
    font-size: 13.5px;
    color: #9aa1ae;
}
.bmc-footer-link:hover {
    color: #c4cad4;
}
.bmc-footer-bar {
    max-width: 1100px;
    margin: 56px auto 0;
    border-top: 1px solid #1a1c21;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.bmc-footer-copy {
    font-size: 12.5px;
    color: #6b7280;
}

/* ── Direction Switcher ── */
.bmc-switcher {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 9px 7px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border: 1px solid #e2e5ec;
    border-radius: 999px;
    box-shadow: 0 12px 34px -10px rgba(11, 11, 18, 0.3);
}
.bmc-switcher-lbl {
    font-family: var(--ff-m);
    font-size: 10.5px;
    letter-spacing: 0.08em;
    color: #9aa1ae;
}
.bmc-switcher-grp {
    display: flex;
    gap: 3px;
    padding: 3px;
    background: var(--bmc-surface2);
    border-radius: 999px;
}
.bmc-switcher-btn {
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 15px;
    border-radius: 999px;
    transition: all 0.2s;
}

/* ── Modal ── */
.bmc-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(8, 10, 16, 0.55);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: bmFade 0.2s ease;
}
.bmc-modal {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.4);
    animation: bmFade 0.25s ease;
}
.bmc-modal-success {
    text-align: center;
    padding: 14px 0;
}
.bmc-modal-s-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--bmc-blue), var(--bmc-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}
.bmc-modal-s-title {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 24px;
    color: var(--bmc-dark);
}
.bmc-modal-s-body {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.55;
    color: #6b7280;
}
.bmc-modal-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}
.bmc-modal-title {
    font-family: var(--ff-h);
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
    color: var(--bmc-dark);
}
.bmc-modal-sub {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #6b7280;
}
.bmc-modal-close {
    flex: none;
    background: #f1f3f7;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    color: #6b7280;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bmc-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}
.bmc-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #3a3f4b;
    margin-bottom: 6px;
}
.bmc-form-opt {
    color: #9aa1ae;
    font-weight: 400;
}
.bmc-form-input {
    width: 100%;
    font-size: 14.5px;
    padding: 12px 14px;
    border: 1.5px solid #dde0e7;
    border-radius: 10px;
    outline: none;
    color: var(--bmc-dark);
}
.bmc-form-input:focus {
    border-color: var(--bmc-blue);
}
.bmc-form-input-err {
    border-color: #e5484d !important;
}
.bmc-form-err {
    font-size: 12px;
    color: #e5484d;
    margin-top: 5px;
}
.bmc-form-submit {
    width: 100%;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    background: var(--bmc-blue);
    box-shadow: 0 8px 20px rgba(29, 91, 240, 0.28);
    border: none;
    cursor: pointer;
}
.bmc-form-hint {
    font-size: 12px;
    color: #9aa1ae;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bmc-hero-b-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .bmc-terminal {
        display: none;
    }
    .bmc-sandbox-inner,
    .bmc-early-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .bmc-footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .bmc-header-inner {
        grid-template-columns: 1fr auto;
    }
    .bmc-nav {
        display: none;
    }
    .bmc-feat-grid,
    .bmc-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bmc-stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    .bmc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 540px) {
    .bmc-section,
    .bmc-section-sm {
        padding: 60px 20px;
    }
    .bmc-feat-grid,
    .bmc-pricing-grid,
    .bmc-benefit-grid,
    .bmc-sb-stats {
        grid-template-columns: 1fr;
    }
    .bmc-bcard-wide {
        grid-column: span 1;
    }
    .bmc-btn-row {
        flex-direction: column;
        align-items: center;
    }
    .bmc-footer-grid {
        grid-template-columns: 1fr;
    }
    .bmc-stats-bar {
        grid-template-columns: 1fr 1fr;
    }
    .bmc-cta-card {
        padding: 48px 24px;
    }
    .bmc-switcher {
        bottom: 10px;
    }
}
