@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

*, ::before, ::after {
    box-sizing: border-box;
}

:root {
    --bt-blue: #134E8E;
    --bt-orange: #D96F32;
    --bt-yellow: #FED600;
    --bt-black: #0C0C0C;
    --bt-soft-black: #2C2C2C;
    --bt-light: #F0F2F5;
    --bt-border: #EDEDED;
    --bt-card: #F8FAFC;
    --bt-white: #FFFFFF;
    --bt-nav-height: 60px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bt-white);
    color: var(--bt-soft-black);
    font-family: "Lato", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

img,
svg {
    display: block;
}

[hidden],
.hidden {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.sr-only:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    z-index: 100;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    overflow: visible;
    border-radius: 0.125rem;
    background: var(--bt-orange);
    padding: 0.625rem 1rem;
    color: var(--bt-white);
    font-size: 0.875rem;
    font-weight: 700;
}

:focus-visible {
    outline: 2px solid var(--bt-orange);
    outline-offset: 3px;
}

.bt-icon {
    width: 1.35rem;
    height: 1.35rem;
}

.bt-mini-icon {
    width: 0.875rem;
    height: 0.875rem;
}

.bt-chevron {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 180ms ease;
}

.bt-site-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    color: var(--bt-black);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, backdrop-filter 180ms ease;
}

.bt-site-header.navbar-glass,
.bt-site-header.is-glass,
.bt-site-header.is-scrolled {
    border-bottom-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    color: var(--bt-black);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.bt-site-header.navbar-transparent {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
}

.bt-site-header.navbar-transparent:not(.navbar-glass) {
    border-bottom-color: transparent;
    background: transparent;
    box-shadow: none;
    color: var(--bt-white);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

body.nav-transparent-enabled .bt-site-header.navbar-scrolled {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.bt-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    width: 100%;
    height: var(--bt-nav-height);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.bt-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
}

.bt-brand img {
    width: auto;
    height: 2.25rem;
    object-fit: contain;
    background: transparent;
}

.bt-brand-logo-stack {
    position: relative;
    display: block;
    width: 10.125rem;
    height: 2.25rem;
}

.bt-brand-logo-stack .bt-brand-logo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 180ms ease;
}

.bt-brand-logo-stack .logo-black {
    display: block;
}

.bt-brand-logo-stack .logo-white {
    display: none;
}

body.nav-transparent-enabled .bt-site-header.navbar-transparent:not(.navbar-glass) .logo-black {
    display: none;
}

body.nav-transparent-enabled .bt-site-header.navbar-transparent:not(.navbar-glass) .logo-white {
    display: block;
}

.bt-nav-main,
.bt-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bt-nav-actions {
    margin-left: auto;
    gap: 0.75rem;
}

.bt-dropdown-wrap {
    position: relative;
}

.bt-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    height: var(--bt-nav-height);
    border: 0;
    background: transparent;
    padding: 0 0.75rem;
    color: var(--bt-black);
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1;
    transition: color 160ms ease;
}

.bt-nav-link:hover,
.bt-nav-link.is-active,
.bt-nav-link[aria-expanded="true"] {
    color: var(--bt-blue);
}

.bt-nav-link.is-active::after,
.bt-nav-link[aria-expanded="true"]::after {
    position: absolute;
    right: 0.75rem;
    bottom: 0;
    left: 0.75rem;
    height: 2px;
    background: var(--bt-orange);
    content: "";
}

.bt-nav-link[aria-expanded="true"] .bt-chevron {
    transform: rotate(180deg);
}

.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-link {
    color: rgba(255, 255, 255, 0.94);
}

.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-link:hover,
.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-link.is-active,
.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-link[aria-expanded="true"] {
    color: var(--bt-white);
}

.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-link.is-active::after,
.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-link[aria-expanded="true"]::after {
    background: rgba(255, 255, 255, 0.78);
}

.bt-nav-search-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid transparent;
    border-radius: 0.125rem;
    background: transparent;
    color: var(--bt-black);
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.bt-nav-search-button:hover {
    border-color: rgba(19, 78, 142, 0.16);
    background: rgba(19, 78, 142, 0.06);
    color: var(--bt-blue);
    transform: translateY(-1px);
}

.bt-nav-search-icon {
    width: 1.15rem;
    height: 1.15rem;
}

.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-search-button {
    color: var(--bt-white);
}

.bt-site-header.navbar-transparent:not(.navbar-glass) .bt-nav-search-button:hover {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
    color: var(--bt-white);
}

.bt-site-header[data-navbar][data-transparent="true"] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
}

.bt-site-header[data-navbar][data-transparent="true"]:not(.navbar-glass) {
    border-bottom-color: transparent !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--bt-white) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
}

.bt-site-header[data-navbar][data-transparent="true"].navbar-scrolled {
    position: fixed;
}

.bt-site-header[data-navbar].navbar-glass {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06) !important;
    color: var(--bt-black) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    backdrop-filter: blur(18px) !important;
}

.bt-site-header[data-navbar][data-transparent="true"]:not(.navbar-glass) .bt-nav-link,
.bt-site-header[data-navbar][data-transparent="true"]:not(.navbar-glass) .bt-nav-search-button,
.bt-site-header[data-navbar][data-transparent="true"]:not(.navbar-glass) .bt-mobile-open {
    color: var(--bt-white) !important;
}

.bt-site-header[data-navbar][data-transparent="true"]:not(.navbar-glass) .logo-white {
    display: block !important;
}

.bt-site-header[data-navbar][data-transparent="true"]:not(.navbar-glass) .logo-black {
    display: none !important;
}

.bt-site-header[data-navbar].navbar-glass .logo-white {
    display: none !important;
}

.bt-site-header[data-navbar].navbar-glass .logo-black {
    display: block !important;
}

.bt-nav-search-button {
    flex: 0 0 2.5rem;
    display: inline-flex !important;
}

.bt-nav-search-button svg {
    display: block;
    width: 1.15rem;
    height: 1.15rem;
    stroke: currentColor;
}

.bt-demo-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    min-height: 2.5rem;
    border-radius: 0.125rem;
    background: var(--bt-blue);
    padding: 0 1.25rem;
    color: var(--bt-white);
    font-size: 0.9375rem;
    font-weight: 700;
    transition: background 160ms ease, transform 160ms ease;
}

.bt-demo-button:hover {
    background: var(--bt-black);
    transform: translateY(-1px);
}

.bt-dropdown-panel {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    z-index: 80;
    width: min(23rem, calc(100vw - 2rem));
    border: 1px solid var(--bt-border);
    border-radius: 0.375rem;
    background: var(--bt-white);
    padding: 0.5rem;
    box-shadow: 0 18px 44px rgba(12, 12, 12, 0.12);
}

.bt-dropdown-panel--right {
    right: 0;
    left: auto;
}

.bt-menu-item {
    display: flex;
    gap: 0.75rem;
    min-width: 0;
    border-radius: 0.25rem;
    padding: 0.68rem;
    transition: background 160ms ease, transform 160ms ease;
}

.bt-menu-item:hover,
.bt-menu-item.is-active {
    background: var(--bt-light);
    transform: translateY(-1px);
}

.bt-menu-item__icon,
.bt-product-card__icon,
.bt-mobile-row__icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--bt-border);
    border-radius: 0.125rem;
    background: var(--bt-white);
    color: var(--bt-blue);
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.bt-menu-item:hover .bt-menu-item__icon,
.bt-product-card:hover .bt-product-card__icon,
.bt-mobile-row:hover .bt-mobile-row__icon {
    border-color: rgba(217, 111, 50, 0.45);
    color: var(--bt-orange);
}

.bt-menu-item__copy,
.bt-product-card__body,
.bt-mobile-row__copy {
    min-width: 0;
}

.bt-menu-item__title,
.bt-product-card__title,
.bt-mobile-row__copy > span {
    display: block;
    color: var(--bt-black);
    font-size: 0.875rem;
    font-weight: 800;
    line-height: 1.25;
}

.bt-menu-item__desc,
.bt-product-card__desc,
.bt-mobile-row__copy small {
    display: block;
    margin-top: 0.18rem;
    color: rgba(44, 44, 44, 0.78);
    font-size: 0.76rem;
    line-height: 1.45;
}

.bt-menu-backdrop {
    position: fixed;
    inset: var(--bt-nav-height) 0 0;
    z-index: 50;
    background: rgba(12, 12, 12, 0.22);
}

.bt-mega {
    position: fixed;
    top: var(--bt-nav-height);
    right: 0;
    left: 0;
    z-index: 65;
    height: calc(100vh - var(--bt-nav-height));
    max-height: calc(100vh - var(--bt-nav-height));
    border-top: 1px solid var(--bt-border);
    background: var(--bt-white);
    box-shadow: 0 26px 70px rgba(12, 12, 12, 0.14);
}

.bt-mega-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bt-mega-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--bt-border);
    padding: 0 1.25rem;
}

.bt-mega-tabs {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.bt-mega-tabs::-webkit-scrollbar {
    display: none;
}

.bt-mega-tab {
    position: relative;
    flex: 0 0 auto;
    border: 0;
    background: transparent;
    padding: 1rem 0;
    color: var(--bt-soft-black);
    font-size: 0.875rem;
    font-weight: 800;
}

.bt-mega-tab.is-active {
    color: var(--bt-blue);
}

.bt-mega-tab.is-active::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--bt-orange);
    content: "";
}

.bt-mega-close,
.bt-mobile-close,
.bt-mobile-open,
.bt-mobile-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bt-border);
    border-radius: 0.125rem;
    background: var(--bt-white);
    color: var(--bt-blue);
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.bt-mega-close,
.bt-mobile-close,
.bt-mobile-open {
    width: 2.25rem;
    height: 2.25rem;
}

.bt-mega-close:hover,
.bt-mobile-close:hover,
.bt-mobile-open:hover,
.bt-mobile-back:hover {
    border-color: rgba(217, 111, 50, 0.45);
    color: var(--bt-orange);
}

.bt-mega-search {
    position: relative;
    width: min(22.5rem, 100%);
    margin-left: auto;
}

.bt-search-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    width: 1.1rem;
    height: 1.1rem;
    color: var(--bt-blue);
    transform: translateY(-50%);
}

.bt-mega-search input {
    width: 100%;
    height: 2.625rem;
    border: 1px solid var(--bt-border);
    border-radius: 0.25rem;
    background: var(--bt-card);
    padding: 0 1rem 0 2.6rem;
    color: var(--bt-black);
    outline: 0;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.bt-mega-search input:focus {
    border-color: rgba(19, 78, 142, 0.45);
    background: var(--bt-white);
    box-shadow: 0 0 0 3px rgba(19, 78, 142, 0.08);
}

.bt-mega-scroll {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 1.15rem 1.25rem 1.4rem;
}

.bt-explorer-panel {
    display: grid;
    grid-template-columns: 17.5rem minmax(0, 1fr);
    gap: 1.25rem;
    width: 100%;
}

.bt-explorer-panel--popular {
    display: block;
}

.bt-explorer-content {
    display: grid;
    gap: 0.95rem;
    min-width: 0;
    align-content: start;
}

.bt-explorer-content--full {
    width: 100%;
}

.bt-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.bt-panel-head p {
    margin: 0;
    color: var(--bt-black);
    font-size: 1.05rem;
    font-weight: 900;
}

.bt-panel-head span {
    display: block;
    margin-top: 0.25rem;
    color: rgba(44, 44, 44, 0.76);
    font-size: 0.86rem;
    line-height: 1.45;
}

.bt-explorer-sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    display: grid;
    gap: 0.28rem;
    border-right: 1px solid var(--bt-border);
    padding-right: 1rem;
}

.bt-category-button {
    display: block;
    width: 100%;
    border: 0;
    border-left: 3px solid transparent;
    border-radius: 0.25rem;
    background: transparent;
    padding: 0.68rem 0.78rem;
    color: var(--bt-black);
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.bt-category-button:hover,
.bt-category-button.is-active {
    border-left-color: var(--bt-orange);
    background: rgba(19, 78, 142, 0.07);
    color: var(--bt-blue);
}

.bt-category-button span {
    display: block;
    font-size: 0.875rem;
    font-weight: 800;
}

.bt-category-button small {
    display: block;
    margin-top: 0.15rem;
    color: rgba(44, 44, 44, 0.72);
    font-size: 0.74rem;
    line-height: 1.35;
}

.bt-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.78rem;
    align-content: start;
}

.bt-product-grid--popular {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bt-product-card {
    min-width: 0;
    border: 1px solid var(--bt-border);
    border-radius: 0.375rem;
    background: var(--bt-card);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.bt-product-card {
    display: flex;
    gap: 0.78rem;
    padding: 0.92rem;
}

.bt-product-card:hover {
    border-color: rgba(19, 78, 142, 0.45);
    background: var(--bt-white);
    box-shadow: 0 12px 28px rgba(12, 12, 12, 0.07);
    transform: translateY(-2px);
}

.bt-product-card:hover .bt-product-card__title {
    color: var(--bt-blue);
}

.bt-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.55rem;
    color: var(--bt-orange);
    font-size: 0.75rem;
    font-weight: 800;
}

.bt-mega-cta {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    min-height: 9.75rem;
    overflow: hidden;
    border: 1px solid rgba(12, 12, 12, 0.1);
    border-radius: 0.375rem;
    padding: 1.35rem 1.45rem;
}

.bt-mega-cta__pattern {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
}

.bt-mega-cta__copy,
.bt-mega-cta__action {
    position: relative;
    z-index: 1;
}

.bt-mega-cta__copy > span {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.bt-mega-cta__copy p {
    margin: 0;
    max-width: 42rem;
    font-size: 1.32rem;
    font-weight: 900;
    line-height: 1.15;
}

.bt-mega-cta__copy small,
.bt-mega-cta__action small {
    display: block;
    font-size: 0.84rem;
    line-height: 1.55;
}

.bt-mega-cta__copy small {
    max-width: 52rem;
    margin-top: 0.42rem;
}

.bt-mega-cta__action {
    display: grid;
    justify-items: end;
    gap: 0.6rem;
    min-width: 14rem;
    text-align: right;
}

.bt-mega-cta__action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    border-radius: 0.125rem;
    padding: 0 1rem;
    font-size: 0.86rem;
    font-weight: 900;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.bt-mega-cta__action a:hover {
    transform: translateY(-1px);
}

.bt-mega-cta--popular {
    background: var(--bt-yellow);
    color: var(--bt-black);
}

.bt-mega-cta--popular .bt-mega-cta__pattern {
    color: rgba(12, 12, 12, 0.1);
}

.bt-mega-cta--popular .bt-mega-cta__copy small,
.bt-mega-cta--popular .bt-mega-cta__action small {
    color: rgba(44, 44, 44, 0.78);
}

.bt-mega-cta--popular .bt-mega-cta__action a {
    background: var(--bt-black);
    color: var(--bt-white);
}

.bt-mega-cta--popular .bt-mega-cta__action a:hover {
    background: var(--bt-blue);
}

.bt-mega-cta--industry {
    background: var(--bt-blue);
    color: var(--bt-white);
}

.bt-mega-cta--industry .bt-mega-cta__pattern {
    color: rgba(255, 255, 255, 0.12);
}

.bt-mega-cta--industry .bt-mega-cta__copy small,
.bt-mega-cta--industry .bt-mega-cta__action small {
    color: rgba(255, 255, 255, 0.78);
}

.bt-mega-cta--industry .bt-mega-cta__action a {
    background: var(--bt-white);
    color: var(--bt-blue);
}

.bt-mega-cta--industry .bt-mega-cta__action a:hover,
.bt-mega-cta--erp .bt-mega-cta__action a:hover {
    background: var(--bt-yellow);
    color: var(--bt-black);
}

.bt-mega-cta--erp {
    border-color: rgba(255, 255, 255, 0.12);
    background: var(--bt-black);
    color: var(--bt-white);
}

.bt-mega-cta--erp .bt-mega-cta__copy small,
.bt-mega-cta--erp .bt-mega-cta__action small {
    color: rgba(237, 237, 237, 0.76);
}

.bt-mega-cta--erp .bt-mega-cta__action a {
    background: var(--bt-orange);
    color: var(--bt-white);
}

.bt-mega-cta--explore {
    background: var(--bt-light);
    color: var(--bt-black);
}

.bt-mega-cta--explore .bt-mega-cta__pattern {
    color: rgba(19, 78, 142, 0.12);
}

.bt-mega-cta--explore .bt-mega-cta__copy small,
.bt-mega-cta--explore .bt-mega-cta__action small {
    color: rgba(44, 44, 44, 0.76);
}

.bt-mega-cta--explore .bt-mega-cta__action a {
    background: var(--bt-blue);
    color: var(--bt-white);
}

.bt-mega-cta--explore .bt-mega-cta__action a:hover {
    background: var(--bt-orange);
}

.bt-no-results {
    margin: 0 1rem 1.5rem;
    color: rgba(44, 44, 44, 0.78);
    font-size: 0.875rem;
}

.bt-mobile-open {
    display: none;
    margin-left: auto;
}

.bt-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(12, 12, 12, 0.48);
}

.bt-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1110;
    display: flex;
    flex-direction: column;
    width: min(100%, 26.25rem);
    height: 100dvh;
    overflow: hidden;
    border-left: 1px solid var(--bt-border);
    background: var(--bt-white);
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 250ms ease;
}

.bt-mobile-drawer.is-open {
    transform: translateX(0);
}

.bt-mobile-header {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    height: var(--bt-nav-height);
    border-bottom: 1px solid var(--bt-border);
    padding: 0 1rem;
}

.bt-mobile-track {
    display: flex;
    flex: 1;
    min-height: 0;
    width: 100%;
    transition: transform 250ms ease;
}

.bt-mobile-panel {
    flex: 0 0 100%;
    min-width: 0;
    overflow-y: auto;
    padding: 1rem;
}

.bt-mobile-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    border-radius: 0.125rem;
    background: var(--bt-black);
    color: var(--bt-white);
    font-size: 0.875rem;
    font-weight: 900;
}

.bt-mobile-menu-list {
    display: grid;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.bt-mobile-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 3.45rem;
    border: 1px solid var(--bt-border);
    border-radius: 0.25rem;
    background: var(--bt-white);
    padding: 0.65rem 0.72rem;
    color: inherit;
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease;
}

button.bt-mobile-row {
    cursor: pointer;
}

.bt-mobile-row:hover,
.bt-mobile-row.is-active {
    border-color: rgba(19, 78, 142, 0.35);
    background: var(--bt-card);
}

.bt-mobile-row__icon {
    width: 1.9rem;
    height: 1.9rem;
}

.bt-mobile-chevron {
    width: 0.82rem;
    height: 0.82rem;
    margin-left: auto;
    color: rgba(44, 44, 44, 0.55);
}

.bt-mobile-contact {
    margin-top: 1rem;
    border: 1px solid var(--bt-border);
    border-radius: 0.25rem;
    background: var(--bt-light);
    padding: 0.85rem;
}

.bt-mobile-contact span,
.bt-mobile-contact a {
    display: block;
}

.bt-mobile-contact span {
    color: rgba(44, 44, 44, 0.7);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.bt-mobile-contact a {
    margin-top: 0.25rem;
    color: var(--bt-blue);
    font-weight: 900;
}

.bt-mobile-panel-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bt-mobile-back {
    gap: 0.35rem;
    height: 2.25rem;
    padding: 0 0.7rem;
    font-size: 0.8rem;
    font-weight: 800;
}

.bt-mobile-panel-head p {
    margin: 0;
    color: var(--bt-black);
    font-size: 1rem;
    font-weight: 900;
}

.bt-mobile-tabs,
.bt-mobile-categories {
    display: flex;
    gap: 0.45rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
}

.bt-mobile-tabs button,
.bt-mobile-categories button {
    flex: 0 0 auto;
    border: 1px solid var(--bt-border);
    border-radius: 0.125rem;
    background: var(--bt-white);
    padding: 0.48rem 0.65rem;
    color: var(--bt-soft-black);
    font-size: 0.78rem;
    font-weight: 850;
}

.bt-mobile-tabs button.is-active,
.bt-mobile-categories button.is-active {
    border-color: rgba(217, 111, 50, 0.5);
    background: rgba(19, 78, 142, 0.07);
    color: var(--bt-blue);
}

.bt-mobile-row--cta {
    background: var(--bt-light);
}

.bt-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    align-items: start;
    justify-items: center;
    overflow-y: auto;
    background: rgba(12, 12, 12, 0.35);
    padding: clamp(1rem, 5vw, 2.5rem);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.bt-search-dialog {
    display: flex;
    flex-direction: column;
    width: min(44rem, 100%);
    max-height: min(42rem, calc(100dvh - 2rem));
    margin-top: min(9vh, 4.5rem);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 0.5rem;
    background: var(--bt-white);
    box-shadow: 0 28px 70px rgba(12, 12, 12, 0.24);
}

.bt-search-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--bt-border);
    padding: 1.1rem 1.25rem 0.95rem;
}

.bt-search-head p {
    margin: 0;
    color: var(--bt-black);
    font-size: 1.05rem;
    font-weight: 900;
    line-height: 1.2;
}

.bt-search-head span {
    display: block;
    margin-top: 0.3rem;
    color: rgba(44, 44, 44, 0.72);
    font-size: 0.88rem;
    line-height: 1.45;
}

.bt-search-close {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--bt-border);
    border-radius: 0.125rem;
    background: var(--bt-white);
    color: var(--bt-blue);
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.bt-search-close:hover {
    border-color: rgba(217, 111, 50, 0.45);
    color: var(--bt-orange);
}

.bt-search-input-wrap {
    position: relative;
    margin: 1rem 1.25rem 0;
}

.bt-search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 1.15rem;
    height: 1.15rem;
    color: var(--bt-blue);
    transform: translateY(-50%);
}

.bt-search-input-wrap input {
    width: 100%;
    height: 3.15rem;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 0.25rem;
    background: var(--bt-card);
    padding: 0 1rem 0 2.85rem;
    color: var(--bt-black);
    font-size: 1rem;
    font-weight: 700;
    outline: 0;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.bt-search-input-wrap input:focus {
    border-color: rgba(19, 78, 142, 0.5);
    background: var(--bt-white);
    box-shadow: 0 0 0 3px rgba(19, 78, 142, 0.09);
}

.bt-search-popular {
    padding: 1rem 1.25rem 1.25rem;
}

.bt-search-popular p {
    margin: 0 0 0.7rem;
    color: rgba(44, 44, 44, 0.68);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
}

.bt-search-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bt-search-chip-list button {
    min-height: 2.15rem;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    background: var(--bt-white);
    padding: 0 0.78rem;
    color: var(--bt-soft-black);
    font-size: 0.86rem;
    font-weight: 850;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.bt-search-chip-list button:hover {
    border-color: rgba(19, 78, 142, 0.28);
    background: rgba(19, 78, 142, 0.06);
    color: var(--bt-blue);
}

.bt-search-results {
    display: grid;
    gap: 0.5rem;
    overflow-y: auto;
    padding: 1rem 1.25rem 1.25rem;
}

.bt-search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-width: 0;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0.375rem;
    background: var(--bt-white);
    padding: 0.82rem 0.9rem;
    color: inherit;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.bt-search-result:hover,
.bt-search-result:focus-visible {
    border-color: rgba(19, 78, 142, 0.3);
    background: #FBFCFD;
    transform: translateY(-1px);
}

.bt-search-result__content {
    display: grid;
    gap: 0.32rem;
    min-width: 0;
}

.bt-search-result__top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.bt-search-result__top strong {
    min-width: 0;
    color: var(--bt-black);
    font-size: 0.98rem;
    font-weight: 900;
    line-height: 1.25;
}

.bt-search-result__badge {
    display: inline-flex;
    align-items: center;
    min-height: 1.35rem;
    border: 1px solid rgba(19, 78, 142, 0.13);
    border-radius: 999px;
    background: rgba(19, 78, 142, 0.06);
    padding: 0 0.5rem;
    color: var(--bt-blue);
    font-size: 0.7rem;
    font-weight: 900;
    line-height: 1;
}

.bt-search-result__desc {
    color: rgba(44, 44, 44, 0.76);
    font-size: 0.88rem;
    line-height: 1.45;
}

.bt-search-result__url {
    color: rgba(44, 44, 44, 0.48);
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.bt-search-result__arrow {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid var(--bt-border);
    border-radius: 999px;
    color: var(--bt-blue);
}

.bt-search-result__arrow svg {
    width: 1rem;
    height: 1rem;
}

.bt-search-empty {
    border-top: 1px solid var(--bt-border);
    padding: 1rem 1.25rem 1.25rem;
}

.bt-search-empty p {
    margin: 0;
    color: rgba(44, 44, 44, 0.78);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bt-search-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    margin-top: 0.9rem;
    border-radius: 0.125rem;
    background: var(--bt-blue);
    padding: 0 1rem;
    color: var(--bt-white);
    font-size: 0.9rem;
    font-weight: 900;
    transition: background 160ms ease;
}

.bt-search-empty a:hover {
    background: var(--bt-black);
}

.bt-footer {
    background: #0C0C0C;
    color: var(--bt-white);
    padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.bt-footer__inner {
    display: grid;
    gap: 2.6rem;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.bt-footer__menu {
    display: grid;
    gap: 1.8rem;
    align-content: start;
}

.bt-footer__quote {
    margin: 0;
    color: var(--bt-white);
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
}

.bt-footer-social {
    padding: 0;
}

.bt-footer-social__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.7rem;
}

.bt-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.45rem;
    height: 2.45rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.06);
    color: var(--bt-white);
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.bt-footer-social a:hover {
    border-color: var(--bt-yellow);
    background: rgba(255, 255, 255, 0.12);
    color: var(--bt-yellow);
}

.bt-footer-links {
    display: grid;
    justify-items: start;
    gap: 0.7rem;
    padding: 0;
}

.bt-footer-links a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.95rem;
    font-weight: 800;
    text-decoration: none;
}

.bt-footer-links a:hover {
    color: var(--bt-yellow);
}

.bt-footer-links a + a::before {
    display: none;
}

.bt-footer-brand {
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 0.8rem;
    background: transparent;
    padding: 0;
    text-align: left;
}

.bt-footer-brand__logo {
    display: inline-flex;
}

.bt-footer-brand img {
    width: auto;
    height: 2.65rem;
    background: transparent;
}

.bt-footer-brand strong {
    color: var(--bt-white);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0;
}

.bt-footer-brand p {
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.8rem;
    font-weight: 700;
}

.bt-footer-brand span {
    max-width: 24rem;
    color: rgba(237, 237, 237, 0.68);
    font-size: 0.84rem;
    line-height: 1.5;
}

.bt-hero {
    position: relative;
    min-height: calc(100vh - var(--bt-nav-height));
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 14%, rgba(254, 214, 0, 0.18), transparent 18rem),
        radial-gradient(circle at 86% 20%, rgba(19, 78, 142, 0.14), transparent 26rem),
        linear-gradient(180deg, var(--bt-light) 0%, var(--bt-white) 58%, rgba(19, 78, 142, 0.08) 100%);
}

.bt-hero-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.bt-hero-pattern svg {
    position: absolute;
    top: 0;
    right: -4%;
    left: -4%;
    width: 108%;
    height: 100%;
}

.bt-hero-pattern path {
    fill: none;
    stroke: rgba(19, 78, 142, 0.13);
    stroke-width: 1.3;
}

.bt-hero-pattern path:nth-child(2) {
    stroke: rgba(217, 111, 50, 0.12);
}

.bt-hero-pattern path:nth-child(3) {
    stroke: rgba(19, 78, 142, 0.09);
}

.bt-hero-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(100vh - var(--bt-nav-height));
    width: 100%;
    max-width: 87.5rem;
    margin: 0 auto;
    gap: 3rem;
    padding: 4.5rem 1.25rem;
}

.bt-hero-main {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.bt-hero-eyebrow {
    margin: 0 0 1.15rem;
    color: var(--bt-orange);
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.bt-hero h1 {
    max-width: 60rem;
    margin: 0;
    color: var(--bt-blue);
    font-size: clamp(3rem, 6vw, 5.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.bt-hero-description {
    display: grid;
    gap: 0.65rem;
    max-width: 57rem;
    margin: 1.45rem auto 0;
    color: rgba(44, 44, 44, 0.88);
    font-size: 1.16rem;
    line-height: 1.7;
}

.bt-hero-description p {
    margin: 0;
}

.bt-hero-actions {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2.1rem;
}

.bt-hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    padding: 0 1.35rem;
    font-size: 0.9375rem;
    font-weight: 800;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.bt-hero-button:hover {
    transform: translateY(-1px);
}

.bt-hero-button--primary {
    background: var(--bt-black);
    color: var(--bt-white);
}

.bt-hero-button--primary:hover {
    background: #1A1A1A;
}

.bt-hero-button--secondary {
    border-color: rgba(19, 78, 142, 0.45);
    background: rgba(255, 255, 255, 0.78);
    color: var(--bt-blue);
}

.bt-hero-button--secondary:hover {
    border-color: var(--bt-orange);
    color: var(--bt-orange);
}

.bt-hero-support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 1.25rem;
    align-items: stretch;
}

.bt-hero-support-card,
.bt-hero-solutions-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(19, 78, 142, 0.12);
    border-radius: 0.625rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 52px rgba(12, 12, 12, 0.08);
    backdrop-filter: blur(10px);
}

.bt-hero-support-card {
    display: grid;
    align-content: center;
    gap: 1.1rem;
    padding: 2rem;
}

.bt-hero-support-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bt-orange), var(--bt-yellow), var(--bt-blue));
    content: "";
}

.bt-hero-support-line {
    max-width: 43rem;
    margin: 0;
    color: var(--bt-black);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.38;
}

.bt-hero-trust-line {
    max-width: 40rem;
    margin: 0;
    color: rgba(44, 44, 44, 0.76);
    font-size: 0.97rem;
    font-weight: 700;
    line-height: 1.6;
}

.bt-hero-solutions-card {
    padding: 1.35rem;
}

.bt-hero-solutions-card h2 {
    margin: 0 0 1rem;
    color: var(--bt-black);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.2;
}

.bt-hero-solutions-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bt-hero-solutions-list a {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 3.25rem;
    border: 1px solid var(--bt-border);
    border-radius: 0.375rem;
    background: rgba(248, 250, 252, 0.82);
    padding: 0.65rem 0.75rem;
    color: var(--bt-black);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.25;
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.bt-hero-solutions-list a:hover {
    border-color: rgba(217, 111, 50, 0.38);
    background: var(--bt-white);
    color: var(--bt-blue);
    transform: translateY(-1px);
}

.bt-solution-icon-wrap {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(19, 78, 142, 0.14);
    border-radius: 0.25rem;
    background: rgba(19, 78, 142, 0.06);
    color: var(--bt-blue);
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.bt-hero-solutions-list a:hover .bt-solution-icon-wrap {
    border-color: rgba(217, 111, 50, 0.36);
    background: rgba(217, 111, 50, 0.08);
    color: var(--bt-orange);
}

.bt-solution-icon {
    width: 1.15rem;
    height: 1.15rem;
}

@media (max-width: 1180px) {
    .bt-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bt-panel-head {
        align-items: start;
    }

    .bt-mega-cta {
        grid-template-columns: 1fr;
    }

    .bt-mega-cta__action {
        justify-items: start;
        min-width: 0;
        text-align: left;
    }

    .bt-hero h1 {
        font-size: 3.65rem;
    }

    .bt-hero-description {
        font-size: 1.08rem;
    }
}

@media (max-width: 1023px) {
    :root {
        --bt-nav-height: 56px;
    }

    .bt-navbar {
        padding: 0 1.25rem;
    }

    .bt-brand img {
        height: 2rem;
    }

    .bt-brand-logo-stack {
        width: 9rem;
        height: 2rem;
    }

    .bt-nav-main,
    .bt-nav-actions,
    .bt-mega,
    .bt-menu-backdrop {
        display: none !important;
    }

    .bt-mobile-open {
        display: inline-flex;
    }

    .bt-site-header.navbar-transparent:not(.navbar-glass) .bt-mobile-open {
        border-color: rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.08);
        color: var(--bt-white);
    }

    .bt-hero-shell {
        gap: 2.5rem;
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .bt-hero h1 {
        font-size: 3rem;
    }

    .bt-hero-description {
        max-width: 42rem;
    }

    .bt-hero-support-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 640px) {
    .bt-navbar,
    .bt-mega-top,
    .bt-mega-scroll,
    .bt-hero-shell {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .bt-no-results {
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

@media (min-width: 1024px) {
    .bt-navbar,
    .bt-mega-top,
    .bt-mega-scroll,
    .bt-hero-shell {
        padding-right: 3rem;
        padding-left: 3rem;
    }

    .bt-no-results {
        margin-right: 3rem;
        margin-left: 3rem;
    }
}

@media (min-width: 1280px) {
    .bt-navbar,
    .bt-mega-top,
    .bt-mega-scroll,
    .bt-hero-shell {
        padding-right: 4rem;
        padding-left: 4rem;
    }

    .bt-no-results {
        margin-right: 4rem;
        margin-left: 4rem;
    }

    .bt-hero h1 {
        font-size: 4.25rem;
    }
}

@media (min-width: 1536px) {
    .bt-navbar,
    .bt-mega-top,
    .bt-mega-scroll,
    .bt-hero-shell {
        padding-right: 5rem;
        padding-left: 5rem;
    }

    .bt-no-results {
        margin-right: 5rem;
        margin-left: 5rem;
    }
}

@media (max-width: 767px) {
    .bt-brand img {
        height: 2rem;
    }

    .bt-brand-logo-stack {
        width: 9rem;
        height: 2rem;
    }

    .bt-search-overlay {
        align-items: stretch;
        padding: 0.75rem;
    }

    .bt-search-dialog {
        max-height: calc(100dvh - 1.5rem);
        margin-top: 0;
        border-radius: 0.375rem;
    }

    .bt-search-head {
        padding: 0.95rem 1rem 0.85rem;
    }

    .bt-search-head span {
        display: none;
    }

    .bt-search-input-wrap {
        margin: 0.85rem 1rem 0;
    }

    .bt-search-input-wrap input {
        height: 3.05rem;
        font-size: 0.95rem;
    }

    .bt-search-popular,
    .bt-search-results,
    .bt-search-empty {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .bt-search-result {
        align-items: flex-start;
    }

    .bt-search-result__arrow {
        width: 1.85rem;
        height: 1.85rem;
    }

    .bt-hero {
        min-height: auto;
    }

    .bt-hero-shell {
        min-height: calc(100vh - var(--bt-nav-height));
        gap: 2rem;
        padding-top: 2.75rem;
        padding-bottom: 2.75rem;
    }

    .bt-hero-eyebrow {
        margin-bottom: 0.85rem;
        font-size: 0.78rem;
    }

    .bt-hero h1 {
        font-size: 2.25rem;
        line-height: 1.08;
    }

    .bt-hero-description {
        margin-top: 1.15rem;
        font-size: 1rem;
        line-height: 1.65;
    }

    .bt-hero-actions {
        gap: 0.7rem;
        margin-top: 1.5rem;
    }

    .bt-hero-button {
        min-height: 2.75rem;
        width: 100%;
    }

    .bt-hero-support-card,
    .bt-hero-solutions-card {
        border-radius: 0.5rem;
    }

    .bt-hero-support-card {
        padding: 1.35rem;
    }

    .bt-hero-support-line {
        font-size: 1.08rem;
    }

    .bt-hero-trust-line {
        font-size: 0.9rem;
    }

    .bt-hero-solutions-card {
        padding: 1rem;
    }

    .bt-hero-solutions-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .bt-mobile-drawer {
        width: 100%;
        border-left: 0;
    }

    .bt-footer-links {
        display: grid;
        gap: 0.55rem;
    }

    .bt-footer-links a + a::before {
        display: none;
    }
}

@media (min-width: 768px) {
    .bt-footer__inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.85fr);
        align-items: start;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .bt-footer-brand {
        justify-items: end;
        text-align: right;
    }

    .bt-footer-social__inner {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .bt-footer__inner {
        padding-right: 3rem;
        padding-left: 3rem;
    }
}

.bt-split-hero__eyebrow {
    font-size: 0.875rem !important;
    letter-spacing: 0.1em !important;
}

.bt-split-hero__trust {
    font-size: 0.875rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.45 !important;
}

@media (max-width: 640px) {
    .bt-split-hero__eyebrow {
        font-size: 0.5625rem !important;
        letter-spacing: 0.08em !important;
    }

    .bt-split-hero__trust {
        font-size: 0.5rem !important;
        letter-spacing: 0.06em !important;
    }
}

.bt-portrait-card {
    position: relative;
    --bt-portrait-bg: #134E8E;
    --bt-portrait-text: #FFFFFF;
    --bt-portrait-muted: rgba(255, 255, 255, 0.84);
    --bt-portrait-accent: #FED600;
    --bt-portrait-cta-bg: #0C0C0C;
    --bt-portrait-cta-text: #FFFFFF;
    width: min(80vw, 18rem);
    min-width: 0;
    min-height: 0;
    aspect-ratio: 13 / 20;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--bt-portrait-bg);
    color: var(--bt-portrait-text);
    isolation: isolate;
}

.bt-portrait-card--blue {
    --bt-portrait-bg: #134E8E;
    --bt-portrait-text: #FFFFFF;
    --bt-portrait-muted: rgba(255, 255, 255, 0.84);
    --bt-portrait-accent: #FED600;
    --bt-portrait-cta-bg: #FED600;
    --bt-portrait-cta-text: #0C0C0C;
}

.bt-portrait-card--yellow {
    --bt-portrait-bg: #FED600;
    --bt-portrait-text: #0C0C0C;
    --bt-portrait-muted: rgba(12, 12, 12, 0.72);
    --bt-portrait-accent: #134E8E;
    --bt-portrait-cta-bg: #134E8E;
    --bt-portrait-cta-text: #FFFFFF;
}

.bt-portrait-card--orange {
    --bt-portrait-bg: #D96F32;
    --bt-portrait-text: #FFFFFF;
    --bt-portrait-muted: rgba(255, 255, 255, 0.86);
    --bt-portrait-accent: #FED600;
    --bt-portrait-cta-bg: #0C0C0C;
    --bt-portrait-cta-text: #FFFFFF;
}

.bt-portrait-card--white {
    --bt-portrait-bg: #FFFFFF;
    --bt-portrait-text: #0C0C0C;
    --bt-portrait-muted: rgba(44, 44, 44, 0.76);
    --bt-portrait-accent: #D96F32;
    --bt-portrait-cta-bg: #134E8E;
    --bt-portrait-cta-text: #FFFFFF;
}

.bt-portrait-card--black {
    --bt-portrait-bg: #0C0C0C;
    --bt-portrait-text: #FFFFFF;
    --bt-portrait-muted: rgba(255, 255, 255, 0.78);
    --bt-portrait-accent: #D96F32;
    --bt-portrait-cta-bg: #134E8E;
    --bt-portrait-cta-text: #FFFFFF;
}

.bt-portrait-card__link {
    position: relative;
    display: flex;
    min-height: inherit;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.bt-portrait-card__media,
.bt-portrait-card__media img,
.bt-portrait-card__scrim {
    position: absolute;
    inset: 0;
}

.bt-portrait-card__media {
    z-index: 0;
    overflow: hidden;
    background: #0C0C0C;
}

.bt-portrait-card__pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.18), transparent 28%),
        radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
        var(--bt-portrait-bg);
    pointer-events: none;
    transition: transform 700ms cubic-bezier(.2, .8, .2, 1), filter 700ms cubic-bezier(.2, .8, .2, 1);
}

.bt-portrait-card--white .bt-portrait-card__pattern,
.bt-portrait-card--yellow .bt-portrait-card__pattern {
    background:
        radial-gradient(circle at 20% 18%, rgba(19, 78, 142, 0.14), transparent 28%),
        radial-gradient(circle at 86% 72%, rgba(217, 111, 50, 0.12), transparent 28%),
        linear-gradient(135deg, rgba(12, 12, 12, 0.05), transparent 42%),
        var(--bt-portrait-bg);
}

.bt-portrait-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    filter: saturate(0.95) contrast(1.04) brightness(0.72);
    transition: transform 900ms cubic-bezier(.2, .8, .2, 1), filter 900ms cubic-bezier(.2, .8, .2, 1);
}

.bt-portrait-card__scrim {
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.68) 0%, rgba(12, 12, 12, 0.36) 45%, rgba(12, 12, 12, 0.82) 100%),
        linear-gradient(90deg, rgba(12, 12, 12, 0.62), rgba(12, 12, 12, 0.12));
    transition: background 500ms ease;
}

.bt-portrait-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
}

.bt-portrait-card--color .bt-portrait-card__content {
    background:
        linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 3.2rem 3.2rem;
}

.bt-portrait-card--white .bt-portrait-card__content,
.bt-portrait-card--yellow .bt-portrait-card__content {
    background:
        linear-gradient(rgba(12, 12, 12, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 12, 12, 0.04) 1px, transparent 1px);
    background-size: 3.2rem 3.2rem;
}

.bt-portrait-card__icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.9rem;
    color: var(--bt-portrait-text);
}

.bt-portrait-card__icon svg {
    width: 100%;
    height: 100%;
}

.bt-portrait-card__icon-accent {
    stroke: var(--bt-portrait-accent);
}

.bt-portrait-card__title {
    max-width: 14ch;
    color: var(--bt-portrait-text);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
}

.bt-portrait-card__description {
    max-width: 24rem;
    margin-top: 1.2rem;
    color: var(--bt-portrait-muted);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.58;
}

.bt-portrait-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 2rem;
    color: var(--bt-portrait-text);
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1;
}

.bt-portrait-card__cta span {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    background: var(--bt-portrait-cta-bg);
    color: var(--bt-portrait-cta-text);
    font-size: 1.45rem;
    line-height: 1;
    transition: transform 220ms ease, background-color 220ms ease;
}

.bt-portrait-card:hover .bt-portrait-card__media img,
.bt-portrait-card:focus-within .bt-portrait-card__media img {
    transform: scale(2);
    filter: saturate(0.9) contrast(1.08) brightness(0.46) blur(8px);
}

.bt-portrait-card--color:hover .bt-portrait-card__pattern,
.bt-portrait-card--color:focus-within .bt-portrait-card__pattern {
    transform: scale(1.08);
    filter: saturate(1.05);
}

.bt-portrait-card:hover .bt-portrait-card__scrim,
.bt-portrait-card:focus-within .bt-portrait-card__scrim {
    background:
        linear-gradient(180deg, rgba(12, 12, 12, 0.78) 0%, rgba(12, 12, 12, 0.56) 45%, rgba(12, 12, 12, 0.9) 100%),
        linear-gradient(90deg, rgba(12, 12, 12, 0.7), rgba(12, 12, 12, 0.18));
}

.bt-portrait-card:hover .bt-portrait-card__cta span,
.bt-portrait-card:focus-within .bt-portrait-card__cta span {
    background: #D96F32;
    color: #FFFFFF;
    transform: translateX(0.18rem);
}

.bt-portrait-card:focus-within {
    outline: 3px solid rgba(19, 78, 142, 0.24);
    outline-offset: 0.35rem;
}

@media (max-width: 767px) {
    .bt-portrait-card {
        width: min(80vw, 18rem);
    }

    .bt-portrait-card__content {
        padding: 1.35rem;
    }

    .bt-portrait-card__icon {
        width: 2.45rem;
        height: 2.45rem;
        margin-bottom: 1.4rem;
    }

    .bt-portrait-card__description {
        font-size: 0.94rem;
    }
}

@media (min-width: 768px) {
    .bt-portrait-card {
        width: 19.5rem;
    }
}

@media (min-width: 1024px) {
    .bt-portrait-card {
        width: 23rem;
    }
}
