:root {
	--bcl-ink: #07131f;
	--bcl-steel: #0d2434;
	--bcl-steel-2: #123247;
	--bcl-cyan: #22c7d6;
	--bcl-amber: #f4b942;
	--bcl-white: #ffffff;
	--bcl-mist: #d8e2ea;
	--bcl-cloud: #f1f5f8;
	--bcl-text: #172b3b;
	--bcl-muted: #5d7080;
	--bcl-border: rgba(216, 226, 234, 0.18);
	--bcl-shadow: 0 22px 55px rgba(3, 13, 22, 0.2);
	--bcl-radius: 18px;
	--bcl-container: 1240px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bcl-white);
	color: var(--bcl-text);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

body.bcl-menu-open,
body.bcl-modal-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--bcl-steel);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: #087f8a;
}

button,
input,
select,
textarea {
	font: inherit;
}

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

:focus-visible {
	outline: 3px solid var(--bcl-cyan);
	outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.5em;
	color: var(--bcl-ink);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.02em;
}

h1 {
	font-size: clamp(3rem, 6vw, 5.8rem);
}

h2 {
	font-size: clamp(2.25rem, 4.4vw, 4rem);
}

h3 {
	font-size: clamp(1.55rem, 2.5vw, 2.1rem);
	line-height: 1.14;
}

p {
	margin: 0 0 1.15em;
}

ul,
ol {
	margin: 0 0 1.35em;
}

.screen-reader-text,
.bcl-skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.bcl-skip-link:focus {
	position: fixed;
	z-index: 10000;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	background: var(--bcl-white);
	color: var(--bcl-ink);
	border-radius: 6px;
}

.bcl-container {
	width: min(calc(100% - 40px), var(--bcl-container));
	margin-inline: auto;
}

.bcl-site-shell {
	overflow: clip;
}

.bcl-kicker {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 14px;
	color: var(--bcl-cyan);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.bcl-kicker::before {
	width: 38px;
	height: 2px;
	background: currentColor;
	content: "";
}

.bcl-lead {
	max-width: 780px;
	font-size: clamp(1.08rem, 1.8vw, 1.3rem);
	line-height: 1.65;
}

.bcl-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 22px;
	border: 2px solid var(--bcl-amber);
	border-radius: 7px;
	background: var(--bcl-amber);
	color: var(--bcl-ink);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.06rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.1;
	text-decoration: none;
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bcl-button:hover {
	background: #ffd065;
	border-color: #ffd065;
	color: var(--bcl-ink);
	box-shadow: 0 12px 26px rgba(244, 185, 66, 0.2);
	transform: translateY(-2px);
}

.bcl-button--small {
	min-height: 44px;
	padding: 10px 16px;
	font-size: 0.96rem;
}

.bcl-button--ghost {
	border-color: rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.04);
	color: var(--bcl-white);
}

.bcl-button--ghost:hover {
	border-color: var(--bcl-white);
	background: var(--bcl-white);
	color: var(--bcl-ink);
}

.bcl-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #087f8a;
	font-weight: 700;
	text-decoration: none;
}

.bcl-text-link:hover {
	gap: 12px;
}

.bcl-utility {
	position: relative;
	z-index: 60;
	background: #030b12;
	color: var(--bcl-mist);
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.bcl-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	gap: 20px;
}

.bcl-utility__details {
	display: flex;
	align-items: center;
	gap: 24px;
}

.bcl-utility a {
	color: var(--bcl-white);
	text-decoration: none;
}

.bcl-header {
	position: relative;
	z-index: 50;
	border-bottom: 1px solid var(--bcl-border);
	background: rgba(7, 19, 31, 0.97);
	transition: box-shadow 180ms ease;
}

.bcl-header.is-scrolled {
	box-shadow: 0 14px 30px rgba(3, 13, 22, 0.2);
}

.bcl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 20px;
}

.bcl-brand {
	flex: 0 1 255px;
}

.custom-logo-link {
	display: block;
}

.custom-logo {
	width: auto;
	max-height: 58px;
}

.bcl-wordmark {
	display: inline-flex;
	align-items: center;
	gap: 13px;
	color: var(--bcl-white);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.14rem;
	font-weight: 500;
	line-height: 0.95;
	text-decoration: none;
	text-transform: uppercase;
}

.bcl-wordmark:hover {
	color: var(--bcl-white);
}

.bcl-wordmark > span:last-child {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.bcl-wordmark strong {
	color: var(--bcl-amber);
	font-size: 1.42rem;
	letter-spacing: 0.08em;
}

.bcl-wordmark__mark {
	display: flex;
	align-items: end;
	gap: 3px;
	width: 35px;
	height: 38px;
	padding: 6px;
	border: 2px solid var(--bcl-cyan);
	transform: skewX(-8deg);
}

.bcl-wordmark__mark i {
	display: block;
	width: 6px;
	background: var(--bcl-cyan);
}

.bcl-wordmark__mark i:nth-child(1) { height: 11px; }
.bcl-wordmark__mark i:nth-child(2) { height: 20px; }
.bcl-wordmark__mark i:nth-child(3) { height: 27px; background: var(--bcl-amber); }

.bcl-primary-nav {
	display: flex;
	align-items: center;
	gap: 18px;
}

.bcl-primary-nav > .bcl-button {
	white-space: nowrap;
}

.bcl-primary-nav__menu {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bcl-primary-nav__menu a {
	display: block;
	padding: 12px 8px;
	color: var(--bcl-mist);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 0.98rem;
	font-weight: 600;
	letter-spacing: 0.025em;
	line-height: 1;
	text-decoration: none;
}

.bcl-primary-nav__menu > li > a {
	white-space: nowrap;
}

.bcl-primary-nav__menu a:hover,
.bcl-primary-nav__menu .current-menu-item > a,
.bcl-primary-nav__menu .current-menu-ancestor > a {
	color: var(--bcl-amber);
}

.bcl-primary-nav__menu .menu-item-has-children {
	position: relative;
}

.bcl-primary-nav__menu .sub-menu {
	position: absolute;
	z-index: 10;
	top: calc(100% - 2px);
	left: 0;
	display: none;
	width: 270px;
	padding: 10px;
	margin: 0;
	border: 1px solid var(--bcl-border);
	border-radius: 10px;
	background: var(--bcl-steel);
	box-shadow: var(--bcl-shadow);
	list-style: none;
}

.bcl-primary-nav__menu .sub-menu a {
	padding: 9px 10px;
	border-radius: 5px;
	font-size: 0.9rem;
	line-height: 1.25;
}

.bcl-primary-nav__menu .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.06);
}

.bcl-primary-nav__menu .menu-item-has-children:hover > .sub-menu,
.bcl-primary-nav__menu .menu-item-has-children:focus-within > .sub-menu {
	display: block;
}

.bcl-menu-toggle {
	display: none;
	width: 48px;
	height: 44px;
	border: 1px solid var(--bcl-border);
	border-radius: 6px;
	background: transparent;
}

.bcl-menu-toggle__bars {
	display: grid;
	gap: 5px;
	width: 22px;
	margin: auto;
}

.bcl-menu-toggle__bars i {
	display: block;
	height: 2px;
	background: var(--bcl-white);
}

.bcl-home-hero {
	position: relative;
	min-height: 720px;
	background: var(--bcl-ink);
	color: var(--bcl-white);
}

.bcl-home-hero::before,
.bcl-home-hero::after {
	position: absolute;
	inset: 0;
	content: "";
}

.bcl-home-hero::before {
	z-index: 1;
	background: linear-gradient(90deg, rgba(4, 13, 22, 0.96) 0%, rgba(4, 13, 22, 0.78) 47%, rgba(4, 13, 22, 0.28) 78%, rgba(4, 13, 22, 0.5) 100%);
}

.bcl-home-hero::after {
	z-index: 2;
	background:
		linear-gradient(135deg, transparent 0 76%, rgba(34, 199, 214, 0.12) 76% 76.25%, transparent 76.25%),
		linear-gradient(0deg, var(--bcl-ink), transparent 28%);
	pointer-events: none;
}

.bcl-home-hero__media {
	position: absolute;
	inset: 0;
}

.bcl-home-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bcl-home-hero__grid {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.7fr);
	align-items: start;
	gap: clamp(45px, 7vw, 100px);
	padding-block: clamp(75px, 8vw, 118px);
}

.bcl-home-hero__copy h1 {
	max-width: 820px;
	color: var(--bcl-white);
	font-size: clamp(3.6rem, 6.8vw, 6.7rem);
}

.bcl-home-hero__copy .bcl-lead {
	max-width: 760px;
	color: var(--bcl-mist);
}

.bcl-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.bcl-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
	padding: 0;
	margin: 32px 0 0;
	color: var(--bcl-mist);
	font-size: 0.88rem;
	font-weight: 600;
	list-style: none;
}

.bcl-hero-points li::before {
	margin-right: 8px;
	color: var(--bcl-cyan);
	content: "●";
	font-size: 0.7em;
}

.bcl-form-card {
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--bcl-radius);
	background: rgba(7, 19, 31, 0.9);
	box-shadow: var(--bcl-shadow);
	backdrop-filter: blur(12px);
}

.bcl-form-card h2 {
	color: var(--bcl-white);
	font-size: clamp(2rem, 3vw, 2.8rem);
}

.bcl-form-card > p {
	color: var(--bcl-mist);
	font-size: 0.94rem;
}

.bcl-form-card__eyebrow {
	margin-bottom: 5px !important;
	color: var(--bcl-cyan) !important;
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 0.78rem !important;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.bcl-form-card--light {
	border-color: #d5dfe6;
	background: var(--bcl-white);
	color: var(--bcl-text);
	backdrop-filter: none;
}

.bcl-form-card--light h2 {
	color: var(--bcl-ink);
}

.bcl-form-placeholder {
	padding: 20px;
	border: 1px dashed rgba(216, 226, 234, 0.4);
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.05);
	color: var(--bcl-mist);
}

.bcl-form-card--light .bcl-form-placeholder {
	border-color: #b8c6d1;
	background: var(--bcl-cloud);
	color: var(--bcl-text);
}

.bcl-form-placeholder p {
	margin: 5px 0 10px;
}

.bcl-form-placeholder a {
	color: var(--bcl-cyan);
	font-weight: 700;
}

.bcl-form-card .wpforms-container {
	margin: 22px 0 0 !important;
}

.bcl-form-card .wpforms-field {
	padding-block: 7px !important;
}

.bcl-form-card .wpforms-field-label {
	margin-bottom: 6px !important;
	color: inherit !important;
	font-size: 0.82rem !important;
	font-weight: 700 !important;
}

.bcl-form-card input:not([type="checkbox"]):not([type="radio"]),
.bcl-form-card select,
.bcl-form-card textarea {
	min-height: 48px !important;
	border: 1px solid #b9c6cf !important;
	border-radius: 5px !important;
	background: #fff !important;
	color: var(--bcl-text) !important;
}

.bcl-form-card textarea {
	min-height: 112px !important;
}

.bcl-form-card .wpforms-submit {
	width: 100% !important;
	min-height: 52px !important;
	border: 0 !important;
	border-radius: 6px !important;
	background: var(--bcl-amber) !important;
	color: var(--bcl-ink) !important;
	font-family: "Barlow Condensed", Inter, sans-serif !important;
	font-size: 1.06rem !important;
	font-weight: 700 !important;
}

.bcl-trust-strip {
	position: relative;
	z-index: 5;
	border-block: 1px solid rgba(34, 199, 214, 0.22);
	background: var(--bcl-steel);
	color: var(--bcl-white);
}

.bcl-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.bcl-trust-strip__grid > div {
	padding: 23px 25px;
	border-right: 1px solid var(--bcl-border);
}

.bcl-trust-strip__grid > div:first-child {
	border-left: 1px solid var(--bcl-border);
}

.bcl-trust-strip strong,
.bcl-trust-strip span {
	display: block;
}

.bcl-trust-strip strong {
	color: var(--bcl-white);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.12rem;
}

.bcl-trust-strip span {
	color: #aebfcb;
	font-size: 0.76rem;
}

.bcl-inner-hero {
	position: relative;
	overflow: hidden;
	padding-block: 34px clamp(62px, 8vw, 110px);
	background:
		linear-gradient(135deg, transparent 0 78%, rgba(34, 199, 214, 0.08) 78% 78.3%, transparent 78.3%),
		var(--bcl-ink);
	color: var(--bcl-white);
}

.bcl-inner-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
	align-items: center;
	gap: clamp(40px, 7vw, 90px);
}

.bcl-inner-hero h1 {
	max-width: 720px;
	color: var(--bcl-white);
	font-size: clamp(3.3rem, 6vw, 5.7rem);
}

.bcl-inner-hero .bcl-lead {
	color: var(--bcl-mist);
}

.bcl-inner-hero__image {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--bcl-radius);
	box-shadow: var(--bcl-shadow);
}

.bcl-inner-hero__image::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(34, 199, 214, 0.25);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.bcl-inner-hero__image img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.bcl-breadcrumbs {
	margin-bottom: clamp(34px, 5vw, 64px);
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.035em;
	text-transform: uppercase;
}

.bcl-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.bcl-breadcrumbs li:not(:last-child)::after {
	margin-left: 9px;
	color: var(--bcl-cyan);
	content: "/";
}

.bcl-breadcrumbs a,
.bcl-breadcrumbs span {
	color: #aec0cc;
	text-decoration: none;
}

.bcl-simple-hero {
	padding-block: clamp(70px, 9vw, 130px);
	background: var(--bcl-ink);
	color: var(--bcl-white);
}

.bcl-simple-hero h1 {
	color: var(--bcl-white);
}

.bcl-simple-hero--center {
	text-align: center;
}

.bcl-simple-hero--center .bcl-kicker,
.bcl-simple-hero--center .bcl-hero-actions {
	justify-content: center;
}

.bcl-simple-hero--center .bcl-lead {
	margin-inline: auto;
}

.bcl-content-section,
.bcl-home-content > section,
.bcl-page-sections > section {
	padding-block: clamp(70px, 8vw, 110px);
}

.bcl-home-content > section:nth-child(even):not(.bcl-section--dark):not(.bcl-section--steel),
.bcl-page-sections > section:nth-child(even):not(.bcl-section--dark):not(.bcl-section--steel),
.bcl-section--light {
	background: var(--bcl-cloud);
}

.bcl-section--dark {
	background: var(--bcl-ink);
	color: var(--bcl-mist);
}

.bcl-section--steel {
	background: var(--bcl-steel);
	color: var(--bcl-mist);
}

.bcl-home-content > .bcl-section--steel {
	background: var(--bcl-steel);
	color: var(--bcl-mist);
}

.bcl-section--dark h2,
.bcl-section--dark h3,
.bcl-section--steel h2,
.bcl-section--steel h3 {
	color: var(--bcl-white);
}

.bcl-section-heading {
	max-width: 820px;
	margin-bottom: clamp(34px, 5vw, 55px);
}

.bcl-section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.bcl-section-heading--center .bcl-kicker {
	justify-content: center;
}

.bcl-prose {
	max-width: 1040px;
}

.bcl-prose > *:first-child {
	margin-top: 0;
}

.bcl-prose h2 {
	margin-top: 1.25em;
}

.bcl-prose h3 {
	margin-top: 1.4em;
}

.bcl-prose p,
.bcl-prose li {
	max-width: 850px;
}

.bcl-prose a {
	font-weight: 600;
}

.bcl-prose blockquote,
.bcl-answer-box {
	padding: 26px 30px;
	margin: 32px 0;
	border: 0;
	border-left: 5px solid var(--bcl-cyan);
	border-radius: 0 10px 10px 0;
	background: var(--bcl-cloud);
	color: var(--bcl-text);
}

.bcl-prose blockquote p:last-child,
.bcl-answer-box p:last-child {
	margin-bottom: 0;
}

.bcl-card-grid,
.bcl-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.bcl-link-card,
.bcl-post-card {
	overflow: hidden;
	border: 1px solid #d7e0e7;
	border-radius: var(--bcl-radius);
	background: var(--bcl-white);
	box-shadow: 0 14px 35px rgba(7, 19, 31, 0.06);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.bcl-link-card:hover,
.bcl-post-card:hover {
	box-shadow: 0 22px 45px rgba(7, 19, 31, 0.12);
	transform: translateY(-4px);
}

.bcl-link-card__image,
.bcl-post-card__image {
	display: block;
	overflow: hidden;
	background: var(--bcl-steel);
}

.bcl-link-card__image img,
.bcl-post-card__image img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 350ms ease;
}

.bcl-link-card:hover .bcl-link-card__image img,
.bcl-post-card:hover .bcl-post-card__image img {
	transform: scale(1.035);
}

.bcl-link-card__body,
.bcl-post-card__body {
	padding: 25px;
}

.bcl-link-card h3,
.bcl-post-card h2 {
	margin-bottom: 10px;
	font-size: 1.8rem;
}

.bcl-link-card h3 a,
.bcl-post-card h2 a {
	color: var(--bcl-ink);
	text-decoration: none;
}

.bcl-link-card p,
.bcl-post-card p {
	color: var(--bcl-muted);
	font-size: 0.91rem;
}

.bcl-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 15px;
	margin-bottom: 8px !important;
	color: #087f8a !important;
	font-size: 0.72rem !important;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bcl-post-card__meta a {
	color: inherit;
	text-decoration: none;
}

.bcl-blog-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	padding: 0;
	margin: -18px 0 36px;
	list-style: none;
}

.bcl-blog-categories a {
	display: inline-flex;
	align-items: center;
	min-height: 39px;
	padding: 7px 14px;
	border: 1px solid #c5d2dc;
	border-radius: 999px;
	background: var(--bcl-white);
	color: var(--bcl-steel);
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
}

.bcl-blog-categories a:hover {
	border-color: var(--bcl-steel);
	background: var(--bcl-steel);
	color: var(--bcl-white);
}

.bcl-post-grid--archive .bcl-post-card--featured {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
}

.bcl-post-card--featured .bcl-post-card__image img {
	height: 100%;
	aspect-ratio: auto;
}

.bcl-post-card--featured .bcl-post-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(30px, 5vw, 56px);
}

.bcl-post-card--featured h2 {
	font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.bcl-post-card--featured .bcl-text-link {
	margin-top: 8px;
}

.bcl-article__content > p:first-child {
	color: var(--bcl-steel);
	font-size: 1.14rem;
	line-height: 1.75;
}

.bcl-article__content h2 {
	font-size: clamp(2.15rem, 4vw, 3.25rem);
}

.bcl-article__content h3 {
	font-size: clamp(1.65rem, 2.6vw, 2.15rem);
}

.bcl-article__content img {
	border-radius: 12px;
}

.bcl-article__related {
	padding-top: 42px;
	margin-top: 58px;
	border-top: 1px solid #d7e0e7;
}

.bcl-article__related h2 {
	margin-top: 0;
	font-size: clamp(2rem, 3.5vw, 3rem);
}

.bcl-article__related .bcl-post-grid {
	margin-top: 26px;
}

.bcl-icon-grid,
.bcl-outcomes-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.bcl-icon-card,
.bcl-outcome-card {
	padding: 28px;
	border: 1px solid #d7e0e7;
	border-radius: 12px;
	background: var(--bcl-white);
}

.bcl-section--dark .bcl-icon-card,
.bcl-section--steel .bcl-icon-card {
	border-color: var(--bcl-border);
	background: rgba(255, 255, 255, 0.04);
}

.bcl-icon-card__number,
.bcl-outcome-card__number {
	display: inline-grid;
	width: 42px;
	height: 42px;
	margin-bottom: 17px;
	place-items: center;
	border: 1px solid var(--bcl-cyan);
	border-radius: 50%;
	color: #087f8a;
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-weight: 700;
}

.bcl-section--dark .bcl-icon-card__number,
.bcl-section--steel .bcl-icon-card__number {
	color: var(--bcl-cyan);
}

.bcl-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	gap: clamp(42px, 7vw, 90px);
}

.bcl-split--top {
	align-items: start;
}

.bcl-split__media {
	overflow: hidden;
	border-radius: var(--bcl-radius);
	box-shadow: var(--bcl-shadow);
}

.bcl-split__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.bcl-check-list {
	padding: 0;
	list-style: none;
}

.bcl-check-list li {
	position: relative;
	padding-left: 31px;
	margin-bottom: 11px;
}

.bcl-check-list li::before {
	position: absolute;
	top: 0.1em;
	left: 0;
	display: grid;
	width: 21px;
	height: 21px;
	place-items: center;
	border-radius: 50%;
	background: var(--bcl-cyan);
	color: var(--bcl-ink);
	content: "✓";
	font-size: 0.73rem;
	font-weight: 800;
}

.bcl-stat-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	margin-top: 30px;
	background: rgba(255, 255, 255, 0.14);
}

.bcl-stat-row > div {
	padding: 22px;
	background: var(--bcl-steel);
}

.bcl-stat-row strong,
.bcl-stat-row span {
	display: block;
}

.bcl-stat-row strong {
	color: var(--bcl-amber);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.35rem;
}

.bcl-stat-row span {
	color: var(--bcl-mist);
	font-size: 0.8rem;
}

.bcl-process {
	counter-reset: bcl-process;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.bcl-process > div {
	position: relative;
	padding: 68px 25px 26px;
	border: 1px solid #d5dfe6;
	border-radius: 12px;
	background: var(--bcl-white);
	counter-increment: bcl-process;
}

.bcl-process > div::before {
	position: absolute;
	top: 22px;
	left: 25px;
	color: var(--bcl-cyan);
	content: "0" counter(bcl-process);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.55rem;
	font-weight: 700;
}

.bcl-process h3 {
	font-size: 1.55rem;
}

.bcl-process p {
	margin-bottom: 0;
	color: var(--bcl-muted);
	font-size: 0.88rem;
}

.bcl-section--steel .bcl-process h3,
.bcl-section--dark .bcl-process h3 {
	color: var(--bcl-ink);
}

.bcl-table-wrap {
	overflow-x: auto;
	margin-block: 30px;
	border: 1px solid #d5dfe6;
	border-radius: 10px;
}

.bcl-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.bcl-table th,
.bcl-table td {
	padding: 16px 18px;
	border-bottom: 1px solid #d5dfe6;
	text-align: left;
	vertical-align: top;
}

.bcl-table th {
	background: var(--bcl-steel);
	color: var(--bcl-white);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1rem;
}

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

.bcl-faq-list {
	display: grid;
	gap: 12px;
}

.bcl-faq-list details {
	border: 1px solid #d5dfe6;
	border-radius: 10px;
	background: var(--bcl-white);
}

.bcl-faq-list summary {
	position: relative;
	padding: 20px 55px 20px 22px;
	color: var(--bcl-ink);
	cursor: pointer;
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.2;
	list-style: none;
}

.bcl-faq-list summary::-webkit-details-marker {
	display: none;
}

.bcl-faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 22px;
	color: #087f8a;
	content: "+";
	font-size: 1.6rem;
	transform: translateY(-50%);
}

.bcl-faq-list details[open] summary::after {
	content: "−";
}

.bcl-faq-list details > div {
	padding: 0 22px 20px;
	color: var(--bcl-muted);
}

.bcl-faq-list details p:last-child {
	margin-bottom: 0;
}

.bcl-cta-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 30px;
	padding: clamp(30px, 5vw, 55px);
	border: 1px solid rgba(34, 199, 214, 0.25);
	border-radius: var(--bcl-radius);
	background: var(--bcl-steel);
	color: var(--bcl-mist);
	box-shadow: var(--bcl-shadow);
}

.bcl-cta-panel h2 {
	color: var(--bcl-white);
}

.bcl-cta-panel p:last-child {
	margin-bottom: 0;
}

.bcl-project-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 30px;
}

.bcl-project-filters button {
	padding: 9px 15px;
	border: 1px solid #b9c6cf;
	border-radius: 999px;
	background: transparent;
	color: var(--bcl-text);
	cursor: pointer;
	font-size: 0.8rem;
	font-weight: 700;
}

.bcl-project-filters button:hover,
.bcl-project-filters button.is-active {
	border-color: var(--bcl-steel);
	background: var(--bcl-steel);
	color: var(--bcl-white);
}

.bcl-project-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.bcl-project-card {
	overflow: hidden;
	border: 1px solid #d7e0e7;
	border-radius: 14px;
	background: var(--bcl-white);
}

.bcl-project-card[hidden] {
	display: none;
}

.bcl-project-card__image {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: var(--bcl-steel);
	cursor: zoom-in;
}

.bcl-project-card__image img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 300ms ease;
}

.bcl-project-card__view {
	position: absolute;
	right: 14px;
	bottom: 14px;
	padding: 8px 12px;
	border-radius: 4px;
	background: rgba(7, 19, 31, 0.9);
	color: var(--bcl-white);
	font-size: 0.73rem;
	font-weight: 700;
	opacity: 0;
	transform: translateY(6px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.bcl-project-card:hover .bcl-project-card__image img {
	transform: scale(1.035);
}

.bcl-project-card:hover .bcl-project-card__view,
.bcl-project-card__image:focus-visible .bcl-project-card__view {
	opacity: 1;
	transform: translateY(0);
}

.bcl-project-card__body {
	padding: 20px;
}

.bcl-project-card__body h3 {
	font-size: 1.55rem;
}

.bcl-project-card__body p {
	margin-bottom: 0;
	color: var(--bcl-muted);
	font-size: 0.84rem;
}

.bcl-project-modal {
	position: fixed;
	z-index: 9999;
	inset: 0;
	display: grid;
	padding: 30px;
	place-items: center;
}

.bcl-project-modal[hidden] {
	display: none;
}

.bcl-project-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 8, 13, 0.92);
	cursor: zoom-out;
}

.bcl-project-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(1100px, 96vw);
	max-height: 90vh;
	padding: 12px 12px 18px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	background: var(--bcl-ink);
	color: var(--bcl-white);
	box-shadow: var(--bcl-shadow);
}

.bcl-project-modal__dialog img {
	width: 100%;
	max-height: 78vh;
	object-fit: contain;
}

.bcl-project-modal__dialog p {
	margin: 12px 10px 0;
}

.bcl-project-modal__close {
	position: absolute;
	z-index: 2;
	top: -16px;
	right: -16px;
	display: grid;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 2px solid var(--bcl-white);
	border-radius: 50%;
	background: var(--bcl-steel);
	color: var(--bcl-white);
	cursor: pointer;
	font-size: 1.5rem;
	place-items: center;
}

.bcl-calculator {
	padding: clamp(25px, 4vw, 46px);
	border: 1px solid #cad6df;
	border-radius: var(--bcl-radius);
	background: var(--bcl-cloud);
}

.bcl-calculator__inputs {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.bcl-calculator label {
	display: grid;
	gap: 7px;
	color: var(--bcl-steel);
	font-size: 0.82rem;
	font-weight: 700;
}

.bcl-calculator input {
	width: 100%;
	min-height: 48px;
	padding: 9px 12px;
	border: 1px solid #aab9c4;
	border-radius: 5px;
	background: var(--bcl-white);
}

.bcl-calculator__results {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-block: 28px 20px;
}

.bcl-calculator__results > div {
	padding: 19px;
	border-radius: 8px;
	background: var(--bcl-steel);
}

.bcl-calculator__results span,
.bcl-calculator__results strong {
	display: block;
}

.bcl-calculator__results span {
	color: var(--bcl-mist);
	font-size: 0.72rem;
}

.bcl-calculator__results strong {
	margin-top: 7px;
	color: var(--bcl-amber);
	font-family: "Barlow Condensed", Inter, sans-serif;
	font-size: 1.45rem;
}

.bcl-calculator__note {
	color: var(--bcl-muted);
	font-size: 0.8rem;
}

.bcl-final-form {
	padding-block: clamp(75px, 9vw, 120px);
	background:
		linear-gradient(135deg, transparent 0 74%, rgba(34, 199, 214, 0.08) 74% 74.25%, transparent 74.25%),
		var(--bcl-ink);
	color: var(--bcl-mist);
}

.bcl-final-form__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(430px, 1fr);
	align-items: start;
	gap: clamp(50px, 8vw, 100px);
}

.bcl-final-form__copy {
	position: sticky;
	top: 40px;
}

.bcl-final-form h2 {
	color: var(--bcl-white);
}

.bcl-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	padding-bottom: 20px;
	margin-bottom: 34px;
	border-bottom: 1px solid #d7e0e7;
	color: var(--bcl-muted);
	font-size: 0.78rem;
	font-weight: 600;
}

.bcl-footer {
	background: #030b12;
	color: #aebfcb;
}

.bcl-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 0.75fr 1fr;
	gap: clamp(40px, 7vw, 90px);
	padding-block: 70px;
}

.bcl-footer h2 {
	color: var(--bcl-white);
	font-size: 1.4rem;
}

.bcl-footer p {
	font-size: 0.86rem;
}

.bcl-footer__brand > p {
	max-width: 460px;
	margin-top: 22px;
}

.bcl-footer a {
	color: var(--bcl-mist);
}

.bcl-footer__menu,
.bcl-footer__legal {
	padding: 0;
	margin: 0;
	list-style: none;
}

.bcl-footer__menu a,
.bcl-footer__legal a {
	text-decoration: none;
}

.bcl-footer__menu li {
	margin-bottom: 7px;
}

.bcl-footer__bottom {
	border-top: 1px solid var(--bcl-border);
}

.bcl-footer__bottom .bcl-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 25px;
}

.bcl-footer__bottom p {
	margin: 0;
	font-size: 0.72rem;
}

.bcl-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 20px;
	font-size: 0.72rem;
}

.bcl-footer__licence {
	color: var(--bcl-white);
	font-weight: 700;
}

.navigation.pagination {
	margin-top: 50px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid #cbd6de;
	border-radius: 5px;
	color: var(--bcl-steel);
	font-weight: 700;
	text-decoration: none;
	place-items: center;
}

.page-numbers.current,
.page-numbers:hover {
	border-color: var(--bcl-steel);
	background: var(--bcl-steel);
	color: var(--bcl-white);
}

@media (max-width: 1120px) {
	.bcl-menu-toggle {
		display: block;
	}

	.bcl-primary-nav {
		position: fixed;
		z-index: 100;
		top: 116px;
		right: 0;
		bottom: 0;
		width: min(380px, 92vw);
		padding: 25px;
		overflow-y: auto;
		background: var(--bcl-ink);
		box-shadow: -20px 25px 45px rgba(0, 0, 0, 0.35);
		transform: translateX(105%);
		transition: transform 220ms ease;
	}

	.bcl-primary-nav.is-open {
		transform: translateX(0);
	}

	.bcl-primary-nav,
	.bcl-primary-nav__menu {
		align-items: stretch;
		flex-direction: column;
	}

	.bcl-primary-nav__menu .sub-menu {
		position: static;
		display: block;
		width: auto;
		padding: 0 0 0 14px;
		border: 0;
		background: transparent;
		box-shadow: none;
	}

	.bcl-primary-nav__menu a {
		padding: 9px 5px;
	}

	.bcl-primary-nav > .bcl-button {
		margin-top: 10px;
	}

	.bcl-home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
		gap: 40px;
	}

	.bcl-home-hero__copy h1 {
		font-size: clamp(3.3rem, 6vw, 5.2rem);
	}

	.bcl-process {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.bcl-home-hero::before {
		background: linear-gradient(90deg, rgba(4, 13, 22, 0.94), rgba(4, 13, 22, 0.74));
	}

	.bcl-home-hero__grid,
	.bcl-inner-hero__grid,
	.bcl-final-form__grid,
	.bcl-split {
		grid-template-columns: 1fr;
	}

	.bcl-home-hero__form {
		max-width: 620px;
	}

	.bcl-inner-hero__image {
		max-width: 720px;
	}

	.bcl-trust-strip__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bcl-card-grid,
	.bcl-post-grid,
	.bcl-project-grid,
	.bcl-icon-grid,
	.bcl-outcomes-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bcl-post-grid--archive .bcl-post-card--featured {
		grid-template-columns: 1fr;
	}

	.bcl-post-card--featured .bcl-post-card__image img {
		aspect-ratio: 16 / 9;
	}

	.bcl-calculator__inputs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bcl-calculator__results {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.bcl-final-form__copy {
		position: static;
	}

	.bcl-footer__grid {
		grid-template-columns: 1.2fr 0.8fr;
	}

	.bcl-footer__grid > div:last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 16px;
	}

	.bcl-container {
		width: min(calc(100% - 28px), var(--bcl-container));
	}

	.bcl-utility__inner {
		min-height: 31px;
		justify-content: center;
		text-align: center;
	}

	.bcl-utility__details {
		display: none;
	}

	.bcl-header__inner {
		min-height: 72px;
	}

	.bcl-primary-nav {
		top: 103px;
	}

	.bcl-wordmark {
		font-size: 0.92rem;
	}

	.bcl-wordmark strong {
		font-size: 1.17rem;
	}

	.bcl-wordmark__mark {
		width: 31px;
		height: 34px;
	}

	.bcl-home-hero__grid {
		padding-block: 60px 70px;
	}

	.bcl-home-hero__copy h1 {
		font-size: clamp(3rem, 14vw, 4.4rem);
	}

	.bcl-hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.bcl-hero-actions .bcl-button {
		width: 100%;
	}

	.bcl-hero-points {
		display: grid;
	}

	.bcl-form-card {
		padding: 23px 18px;
	}

	.bcl-trust-strip__grid,
	.bcl-card-grid,
	.bcl-post-grid,
	.bcl-project-grid,
	.bcl-icon-grid,
	.bcl-outcomes-grid,
	.bcl-process,
	.bcl-calculator__inputs,
	.bcl-calculator__results,
	.bcl-footer__grid {
		grid-template-columns: 1fr;
	}

	.bcl-post-grid--archive .bcl-post-card--featured {
		grid-column: auto;
	}

	.bcl-trust-strip__grid > div {
		padding: 18px;
		border-right: 0;
		border-bottom: 1px solid var(--bcl-border);
	}

	.bcl-trust-strip__grid > div:first-child {
		border-left: 0;
	}

	.bcl-trust-strip__grid > div:last-child {
		border-bottom: 0;
	}

	.bcl-inner-hero {
		padding-bottom: 65px;
	}

	.bcl-inner-hero h1 {
		font-size: clamp(3rem, 14vw, 4.3rem);
	}

	.bcl-inner-hero__grid {
		gap: 35px;
	}

	.bcl-content-section,
	.bcl-home-content > section,
	.bcl-page-sections > section {
		padding-block: 65px;
	}

	.bcl-cta-panel {
		grid-template-columns: 1fr;
	}

	.bcl-project-modal {
		padding: 15px;
	}

	.bcl-project-modal__close {
		top: 8px;
		right: 8px;
	}

	.bcl-footer__grid > div:last-child {
		grid-column: auto;
	}

	.bcl-footer__bottom .bcl-container {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 20px;
	}
}

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