:root {
    --bp-navy-950: #04101f;
    --bp-navy-900: #07182c;
    --bp-navy-850: #0a2038;
    --bp-navy-800: #0d2945;
    --bp-blue-600: #0878f9;
    --bp-blue-500: #1598ff;
    --bp-cyan-500: #19c4df;
    --bp-green-500: #18c98b;
    --bp-green-400: #2ae2a3;
    --bp-white: #ffffff;
    --bp-surface: #f7fafc;
    --bp-surface-2: #edf4f8;
    --bp-ink: #10233b;
    --bp-muted: #60748b;
    --bp-border: #dbe6ef;
    --bp-shadow-sm: 0 8px 28px rgba(2, 18, 38, .08);
    --bp-shadow-md: 0 22px 60px rgba(2, 18, 38, .15);
    --bp-gradient:
        linear-gradient(
            135deg,
            var(--bp-blue-600) 0%,
            var(--bp-cyan-500) 52%,
            var(--bp-green-500) 100%
        );
}

* {
    box-sizing: border-box;
}

/* ============================================================
   SITE PÚBLICO BOLEPIX
   ============================================================ */

body.bp-fintech-public {
    margin: 0;
    background: var(--bp-navy-950);
    color: var(--bp-white);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.bp-fintech-public .landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: #f8fbff;
    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(8, 120, 249, .26),
            transparent 30%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(24, 201, 139, .13),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #061427 0%,
            #082440 52%,
            #073c59 100%
        );
}

body.bp-fintech-public .landing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .9;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        );
    background-size: 64px 64px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .75),
            transparent 78%
        );
}

body.bp-fintech-public .landing-top {
    position: sticky !important;
    top: 0;
    z-index: 1000;
    width: 100%;
    min-height: 92px;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px;
    padding: 16px clamp(24px, 4vw, 68px) !important;
    border-bottom: 1px solid rgba(167, 205, 237, .15);
    background: rgba(4, 16, 31, .88) !important;
    box-shadow: 0 12px 38px rgba(0, 0, 0, .16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

body.bp-fintech-public .landing-brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px;
    min-width: max-content;
    border: 0 !important;
    outline: 0;
    background: transparent !important;
    cursor: pointer;
}

body.bp-fintech-public .landing-brand-img {
    width: auto !important;
    max-width: 250px !important;
    height: 54px !important;
    max-height: 54px !important;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .20));
}

body.bp-fintech-public .m3d-bolepix-word-v14 {
    display: inline-flex;
    align-items: center;
    font-size: clamp(28px, 2.5vw, 42px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: -1.8px;
    line-height: 1;
}

body.bp-fintech-public .m3d-bolepix-word-v14 b {
    color: #e8f6ff;
}

body.bp-fintech-public .m3d-bolepix-word-v14 strong {
    color: transparent;
    background: var(--bp-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

body.bp-fintech-public .landing-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: wrap;
    gap: 9px !important;
    margin-left: auto;
}

body.bp-fintech-public .landing-menu > button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px !important;
    border: 1px solid rgba(183, 212, 237, .23) !important;
    border-radius: 13px !important;
    color: #eaf5ff !important;
    background: rgba(255, 255, 255, .07) !important;
    box-shadow: none !important;
    font-family: inherit;
    font-size: 15px !important;
    font-weight: 750 !important;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

body.bp-fintech-public .landing-menu > button:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 226, 163, .62) !important;
    background: rgba(21, 152, 255, .15) !important;
    box-shadow: 0 10px 25px rgba(1, 12, 26, .23) !important;
}

body.bp-fintech-public .landing-menu > button.active {
    border-color: rgba(42, 226, 163, .74) !important;
    color: #ffffff !important;
    background:
        linear-gradient(
            135deg,
            rgba(8, 120, 249, .24),
            rgba(24, 201, 139, .17)
        ) !important;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .06),
        0 12px 30px rgba(1, 14, 31, .28) !important;
}

body.bp-fintech-public .landing-menu > button.primary {
    border-color: transparent !important;
    color: #ffffff !important;
    background: var(--bp-gradient) !important;
    box-shadow: 0 13px 32px rgba(8, 120, 249, .27) !important;
}

body.bp-fintech-public .landing-menu > button.primary:hover {
    box-shadow: 0 17px 38px rgba(8, 120, 249, .38) !important;
}

body.bp-fintech-public .landing-section {
    position: relative;
    z-index: 2;
    width: min(1320px, calc(100% - 48px));
    margin-inline: auto;
    padding-inline: 0;
}

body.bp-fintech-public .landing-section:first-of-type {
    padding-top: clamp(56px, 7vw, 104px);
    padding-bottom: clamp(58px, 8vw, 116px);
}

body.bp-fintech-public .landing h1,
body.bp-fintech-public .landing .route-title {
    max-width: 920px;
    margin-top: 18px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(43px, 5.5vw, 78px);
    font-weight: 860;
    letter-spacing: -3.4px;
    line-height: 1.02;
    text-wrap: balance;
}

body.bp-fintech-public .landing p {
    color: #c6d9e9;
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.62;
}

body.bp-fintech-public .landing .api-eyebrow,
body.bp-fintech-public .landing [class*="eyebrow"],
body.bp-fintech-public .landing [class*="badge"]:not(.plan-badge) {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid rgba(53, 215, 175, .34);
    border-radius: 999px;
    color: #aef8db;
    background: rgba(24, 201, 139, .09);
    font-size: 14px;
    font-weight: 760;
    letter-spacing: .2px;
}

body.bp-fintech-public .landing-actions {
    display: flex !important;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px !important;
    margin-top: 34px;
}

body.bp-fintech-public .landing button.primary,
body.bp-fintech-public .landing a.primary,
body.bp-fintech-public .landing .btn.primary {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px !important;
    border: 0 !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    background: var(--bp-gradient) !important;
    box-shadow: 0 16px 38px rgba(8, 120, 249, .28) !important;
    font-size: 17px !important;
    font-weight: 820 !important;
    text-decoration: none;
    transition:
        transform .18s ease,
        box-shadow .18s ease;
}

body.bp-fintech-public .landing button.primary:hover,
body.bp-fintech-public .landing a.primary:hover,
body.bp-fintech-public .landing .btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 21px 44px rgba(8, 120, 249, .38) !important;
}

body.bp-fintech-public .landing button.secondary,
body.bp-fintech-public .landing a.secondary {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 25px !important;
    border: 1px solid rgba(210, 231, 248, .26) !important;
    border-radius: 14px !important;
    color: #f5fbff !important;
    background: rgba(255, 255, 255, .08) !important;
    box-shadow: none !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    text-decoration: none;
    backdrop-filter: blur(12px);
}

body.bp-fintech-public .landing .card,
body.bp-fintech-public .landing article,
body.bp-fintech-public .landing [class*="mockup"],
body.bp-fintech-public .landing [class*="preview"] {
    border-color: rgba(170, 205, 232, .16);
}

body.bp-fintech-public .landing article {
    border-radius: 20px;
}

body.bp-fintech-public .landing-plan,
body.bp-fintech-public .api-public-card,
body.bp-fintech-public .landing .card:not(.auth-card) {
    border: 1px solid rgba(190, 218, 239, .17) !important;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .095),
            rgba(255, 255, 255, .045)
        ) !important;
    box-shadow: 0 22px 48px rgba(0, 8, 22, .17) !important;
    backdrop-filter: blur(16px);
}

body.bp-fintech-public .landing-plan:hover,
body.bp-fintech-public .api-public-card:hover {
    transform: translateY(-4px);
    border-color: rgba(42, 226, 163, .35) !important;
}

body.bp-fintech-public .landing-footer {
    position: relative;
    z-index: 2;
    padding: 38px clamp(24px, 4vw, 68px) !important;
    border-top: 1px solid rgba(179, 211, 236, .13);
    color: #91abc1;
    background: rgba(2, 11, 22, .38);
}

body.bp-fintech-public .landing-footer a {
    color: #6ce7bd;
}

body.bp-fintech-public input,
body.bp-fintech-public select,
body.bp-fintech-public textarea {
    border: 1px solid rgba(183, 210, 231, .22) !important;
    border-radius: 12px !important;
}

/* ============================================================
   PÁGINA OPEN FINANCE
   ============================================================ */

body.bp-open-finance {
    margin: 0;
    min-height: 100vh;
    color: var(--bp-ink);
    background: #f4f8fb;
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

.bp-of-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 90px;
    border-bottom: 1px solid rgba(179, 211, 236, .15);
    background: rgba(4, 16, 31, .96);
    box-shadow: 0 12px 34px rgba(0, 14, 32, .15);
    backdrop-filter: blur(18px);
}

.bp-of-container {
    width: min(1320px, calc(100% - 48px));
    margin-inline: auto;
}

.bp-of-header-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.bp-of-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
    text-decoration: none;
}

.bp-of-brand-icon {
    width: 54px;
    height: 54px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 9px;
    border: 2px solid #21d88f;
    border-radius: 14px;
    background:
        linear-gradient(
            145deg,
            rgba(8, 120, 249, .20),
            rgba(24, 201, 139, .13)
        );
    box-shadow: 0 12px 30px rgba(0, 0, 0, .20);
    transform: rotate(-3deg);
}

.bp-of-brand-icon span {
    border-radius: 2px;
    background:
        linear-gradient(
            135deg,
            #2ae2a3,
            #13bdf3
        );
}

.bp-of-brand-name {
    font-size: 31px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: -1.5px;
}

.bp-of-brand-name b {
    color: #e8f6ff;
}

.bp-of-brand-name strong {
    color: transparent;
    background: var(--bp-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.bp-of-nav {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bp-of-nav a {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 19px;
    border: 1px solid rgba(183, 212, 237, .22);
    border-radius: 13px;
    color: #eaf5ff;
    background: rgba(255, 255, 255, .07);
    font-size: 15px;
    font-weight: 760;
    text-decoration: none;
    white-space: nowrap;
    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease;
}

.bp-of-nav a:hover {
    transform: translateY(-2px);
    border-color: rgba(42, 226, 163, .60);
    background: rgba(21, 152, 255, .14);
}

.bp-of-nav a.active {
    border-color: rgba(42, 226, 163, .60);
    background:
        linear-gradient(
            135deg,
            rgba(8, 120, 249, .24),
            rgba(24, 201, 139, .17)
        );
}

.bp-of-nav a.primary {
    border-color: transparent;
    color: #ffffff;
    background: var(--bp-gradient);
    box-shadow: 0 13px 30px rgba(8, 120, 249, .26);
}

.bp-of-main {
    overflow: hidden;
}

.bp-of-hero {
    position: relative;
    padding: 76px 0 96px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 82% 18%,
            rgba(8, 120, 249, .32),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 84%,
            rgba(24, 201, 139, .18),
            transparent 32%
        ),
        linear-gradient(
            145deg,
            #061427 0%,
            #082541 52%,
            #073d59 100%
        );
}

.bp-of-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .55;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .022) 1px,
            transparent 1px
        );
    background-size: 66px 66px;
}

.bp-of-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
    align-items: center;
    gap: 66px;
}

.bp-of-kicker {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 15px;
    border: 1px solid rgba(42, 226, 163, .36);
    border-radius: 999px;
    color: #b5f8df;
    background: rgba(24, 201, 139, .09);
    font-size: 14px;
    font-weight: 780;
}

.bp-of-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ae2a3;
    box-shadow: 0 0 0 6px rgba(42, 226, 163, .11);
}

.bp-of-title {
    max-width: 850px;
    margin: 22px 0 22px;
    color: #ffffff;
    font-size: clamp(45px, 5.5vw, 76px);
    font-weight: 870;
    letter-spacing: -3.4px;
    line-height: 1.02;
    text-wrap: balance;
}

.bp-of-title span {
    color: transparent;
    background: var(--bp-gradient);
    background-clip: text;
    -webkit-background-clip: text;
}

.bp-of-lead {
    max-width: 790px;
    margin: 0;
    color: #c8dbea;
    font-size: 20px;
    line-height: 1.62;
}

.bp-of-security-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(201, 227, 247, .18);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .12),
            rgba(255, 255, 255, .05)
        );
    box-shadow: 0 30px 74px rgba(0, 5, 18, .32);
    backdrop-filter: blur(18px);
}

.bp-of-security-card::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -80px;
    top: -105px;
    border-radius: 50%;
    background: rgba(24, 201, 139, .18);
    filter: blur(3px);
}

.bp-of-security-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.bp-of-security-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(42, 226, 163, .32);
    border-radius: 17px;
    color: #8ff2cf;
    background: rgba(24, 201, 139, .10);
    font-size: 28px;
}

.bp-of-secure-label {
    color: #8ff2cf;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.bp-of-security-card h2 {
    position: relative;
    margin: 26px 0 9px;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.2;
}

.bp-of-security-card p {
    position: relative;
    margin: 0;
    color: #b9cee0;
    font-size: 15px;
    line-height: 1.6;
}

.bp-of-bank-lines {
    position: relative;
    display: grid;
    gap: 11px;
    margin-top: 24px;
}

.bp-of-bank-line {
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    padding: 11px 13px;
    border: 1px solid rgba(204, 230, 248, .13);
    border-radius: 13px;
    background: rgba(255, 255, 255, .055);
}

.bp-of-bank-line span:first-child {
    color: #d7e7f4;
    font-size: 14px;
    font-weight: 700;
}

.bp-of-bank-line strong {
    color: #8ff2cf;
    font-size: 13px;
}

.bp-of-stats-wrap {
    position: relative;
    z-index: 4;
    margin-top: -38px;
}

.bp-of-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--bp-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--bp-shadow-md);
}

.bp-of-stat {
    min-height: 142px;
    padding: 26px 29px;
    border-right: 1px solid var(--bp-border);
}

.bp-of-stat:last-child {
    border-right: 0;
}

.bp-of-stat-number {
    display: block;
    margin-bottom: 7px;
    color: #075ca8;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.bp-of-stat-title {
    display: block;
    color: var(--bp-ink);
    font-size: 17px;
    font-weight: 820;
}

.bp-of-stat-text {
    display: block;
    margin-top: 6px;
    color: var(--bp-muted);
    font-size: 14px;
    line-height: 1.45;
}

.bp-of-content {
    padding: 60px 0 76px;
}

.bp-of-panel {
    padding: 31px;
    border: 1px solid var(--bp-border);
    border-radius: 23px;
    background: #ffffff;
    box-shadow: var(--bp-shadow-sm);
}

.bp-of-panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 22px;
}

.bp-of-panel-title {
    margin: 0 0 6px;
    color: var(--bp-ink);
    font-size: 29px;
    letter-spacing: -.8px;
}

.bp-of-panel-subtitle {
    margin: 0;
    color: var(--bp-muted);
    font-size: 15px;
}

.bp-search-wrap {
    position: relative;
    width: min(440px, 100%);
}

.bp-search-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c8197;
    font-size: 20px;
    pointer-events: none;
}

.bp-search {
    width: 100%;
    min-height: 53px;
    padding: 12px 16px 12px 48px;
    border: 1px solid #cfdee9;
    border-radius: 13px;
    outline: 0;
    color: var(--bp-ink);
    background: #f9fbfd;
    font: inherit;
    font-size: 15px;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.bp-search:focus {
    border-color: #1598ff;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(21, 152, 255, .11);
}

.bp-result-count {
    margin: 0 0 13px;
    color: #60758c;
    font-size: 13px;
    font-weight: 760;
}

.bp-table-wrap {
    overflow: hidden;
    border: 1px solid var(--bp-border);
    border-radius: 16px;
}

.bp-table {
    width: 100%;
    border-collapse: collapse;
}

.bp-table th,
.bp-table td {
    height: 66px;
    padding: 14px 22px;
    border-bottom: 1px solid var(--bp-border);
    text-align: left;
}

.bp-table th {
    height: 58px;
    color: #425870;
    background: #eef4f8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.bp-table th:nth-child(2),
.bp-table th:nth-child(3),
.bp-table td:nth-child(2),
.bp-table td:nth-child(3) {
    text-align: center;
}

.bp-table tbody tr {
    transition: background .15s ease;
}

.bp-table tbody tr:hover {
    background: #f5fafc;
}

.bp-table tbody tr:last-child td {
    border-bottom: 0;
}

.bp-bank-name {
    color: #182e46;
    font-size: 15px;
    font-weight: 810;
}

.bp-status {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 6px 11px;
    border: 1px solid rgba(24, 201, 139, .27);
    border-radius: 999px;
    color: #087b55;
    background: rgba(24, 201, 139, .095);
    font-size: 12px;
    font-weight: 830;
    white-space: nowrap;
}

.bp-status-check {
    width: 17px;
    height: 17px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: #18c98b;
    font-size: 11px;
}

.bp-mobile-list {
    display: none;
}

.bp-empty {
    display: none;
    padding: 46px 20px;
    border: 1px dashed #cddce7;
    border-radius: 15px;
    color: var(--bp-muted);
    background: #f8fbfd;
    text-align: center;
}

.bp-of-notice {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    margin-top: 22px;
    padding: 19px 20px;
    border: 1px solid rgba(8, 120, 249, .17);
    border-radius: 15px;
    color: #405a73;
    background: rgba(8, 120, 249, .055);
    font-size: 14px;
    line-height: 1.55;
}

.bp-of-notice-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: #0878f9;
    background: rgba(8, 120, 249, .10);
    font-weight: 900;
}

.bp-of-notice strong {
    color: #075ca8;
}

.bp-source {
    margin: 17px 2px 0;
    color: #74889d;
    font-size: 12px;
}

.bp-source a {
    color: #0878f9;
    font-weight: 800;
}

.bp-of-footer {
    padding: 31px 0 40px;
    border-top: 1px solid #dce7ef;
    color: #6b8094;
    background: #edf4f8;
    font-size: 13px;
}

.bp-of-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.bp-of-footer a {
    color: #0878f9;
    font-weight: 760;
    text-decoration: none;
}

@media (max-width: 1100px) {
    body.bp-fintech-public .landing-top {
        gap: 18px;
        padding-inline: 24px !important;
    }

    body.bp-fintech-public .landing-menu > button {
        padding-inline: 14px !important;
        font-size: 14px !important;
    }

    .bp-of-hero-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .bp-of-security-card {
        max-width: 680px;
    }
}

@media (max-width: 820px) {
    body.bp-fintech-public .landing-top {
        min-height: 76px;
        flex-wrap: wrap;
    }

    body.bp-fintech-public .landing-menu {
        width: 100%;
        display: none !important;
        padding-top: 10px;
    }

    body.bp-fintech-public .landing-top.nav-open .landing-menu {
        display: grid !important;
        grid-template-columns: 1fr;
    }

    body.bp-fintech-public .landing-menu > button {
        width: 100%;
    }

    body.bp-fintech-public .landing-section {
        width: min(100% - 28px, 1320px);
    }

    body.bp-fintech-public .landing h1,
    body.bp-fintech-public .landing .route-title {
        font-size: clamp(39px, 12vw, 59px);
        letter-spacing: -2.2px;
    }

    .bp-of-container {
        width: min(100% - 28px, 1320px);
    }

    .bp-of-header-inner {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0;
    }

    .bp-of-brand {
        align-self: flex-start;
    }

    .bp-of-nav {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .bp-of-nav a {
        padding-inline: 10px;
        font-size: 13px;
    }

    .bp-of-nav a.primary {
        grid-column: span 3;
    }

    .bp-of-hero {
        padding: 55px 0 78px;
    }

    .bp-of-title {
        font-size: clamp(41px, 12vw, 61px);
        letter-spacing: -2.4px;
    }

    .bp-of-lead {
        font-size: 17px;
    }

    .bp-of-stats {
        grid-template-columns: 1fr;
    }

    .bp-of-stat {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--bp-border);
    }

    .bp-of-stat:last-child {
        border-bottom: 0;
    }

    .bp-of-panel {
        padding: 22px 16px;
    }

    .bp-of-panel-head {
        align-items: stretch;
        flex-direction: column;
    }

    .bp-search-wrap {
        width: 100%;
    }

    .bp-table-wrap {
        display: none;
    }

    .bp-mobile-list {
        display: grid;
        gap: 11px;
    }

    .bp-bank-card {
        padding: 17px;
        border: 1px solid var(--bp-border);
        border-radius: 15px;
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(2, 18, 38, .05);
    }

    .bp-bank-card-name {
        margin: 0 0 14px;
        color: var(--bp-ink);
        font-size: 16px;
        font-weight: 830;
    }

    .bp-bank-card-statuses {
        display: grid;
        gap: 8px;
    }

    .bp-bank-card-line {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 13px;
        color: var(--bp-muted);
        font-size: 13px;
        font-weight: 720;
    }

    .bp-of-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 520px) {
    .bp-of-nav {
        grid-template-columns: 1fr 1fr;
    }

    .bp-of-nav a.primary {
        grid-column: span 2;
    }

    .bp-of-brand-icon {
        width: 47px;
        height: 47px;
    }

    .bp-of-brand-name {
        font-size: 27px;
    }

    .bp-of-security-card {
        padding: 21px;
    }
}
