:root {
	--bc-black: #070707;
	--bc-ink: #111111;
	--bc-steel-1: #2c2c2c;
	--bc-steel-2: #5f5f5f;
	--bc-gold: #d9bc83;
	--bc-gold-dark: #9f7148;
	--bc-green: #389d52;
	--bc-text: #ffffff;
	--bc-muted: rgba(255, 255, 255, 0.78);
	--bc-border: rgba(255, 255, 255, 0.16);
	--bc-title-font: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
	--bc-text-font: "Inter", Arial, sans-serif;
}

body.bc-front-template {
	margin: 0;
	background: var(--bc-ink);
	color: var(--bc-text);
}

body.bc-front-template .site-header,
body.bc-front-template .site-footer,
body.bc-front-template .site-info,
body.bc-front-template .generate-back-to-top {
	display: none;
}

body.bc-front-template #page,
body.bc-front-template .site-content,
body.bc-front-template .content-area,
body.bc-front-template .site-main,
body.bc-front-template .inside-article {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

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

.bc-front {
	position: relative;
	min-height: 100vh;
	overflow-x: hidden;
	padding-bottom: 88px;
	background:
		linear-gradient(115deg, rgba(56, 157, 82, 0.18), transparent 32%),
		linear-gradient(245deg, rgba(217, 188, 131, 0.18), transparent 34%),
		linear-gradient(90deg, #101010 0%, #454545 22%, #606060 50%, #454545 78%, #101010 100%);
	color: var(--bc-text);
	font-family: var(--bc-text-font);
	line-height: 1.618;
}

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

.bc-topbar {
	position: sticky;
	top: 0;
	z-index: 40;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100px;
	padding: 0 9vw;
	background: #000000;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bc-brand {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	height: 70px;
}

.bc-brand__image {
	display: block;
	width: auto;
	max-width: 230px;
	max-height: 66px;
	object-fit: contain;
}

.bc-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 192px;
	min-height: 58px;
	padding: 0 22px;
	border: 1px solid rgba(217, 188, 131, 0.7);
	border-radius: 6px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	color: #ffffff;
	font-family: var(--bc-title-font);
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.bc-menu-toggle,
.bc-sidebar__close {
	appearance: none;
	border: 0;
	color: #ffffff;
	cursor: pointer;
}

.bc-menu-toggle {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	padding: 12px;
	background: transparent;
}

.bc-menu-toggle span {
	display: block;
	width: 27px;
	height: 3px;
	margin: 3px 0;
	background: currentColor;
	border-radius: 2px;
}

.bc-sidebar {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 70;
	width: 280px;
	max-width: calc(100vw - 48px);
	padding: 22px;
	background: #050505;
	box-shadow: 22px 0 44px rgba(0, 0, 0, 0.35);
	transform: translateX(-105%);
	transition: transform 220ms ease;
}

.bc-sidebar.is-open {
	transform: translateX(0);
}

.bc-sidebar__overlay {
	position: fixed;
	inset: 0;
	z-index: 60;
	display: none;
	border: 0;
	background: rgba(0, 0, 0, 0.55);
}

.bc-sidebar__overlay.is-open {
	display: block;
}

.bc-sidebar__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 22px;
	border-bottom: 1px solid var(--bc-border);
}

.bc-license {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
}

.bc-license__seal {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid rgba(217, 188, 131, 0.7);
	border-radius: 50%;
	background: linear-gradient(180deg, var(--bc-gold), var(--bc-gold-dark));
	color: #111111;
	font-family: var(--bc-title-font);
	font-size: 22px;
	font-weight: 900;
}

.bc-sidebar__close {
	width: 36px;
	height: 36px;
	background: transparent;
	font-size: 34px;
	line-height: 1;
}

.bc-sidebar__menu {
	display: grid;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.bc-sidebar__menu a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 52px;
	padding: 0 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.04);
	font-size: 16px;
	font-weight: 800;
}

.bc-sidebar__menu a:hover,
.bc-sidebar__menu a:focus-visible,
.bc-sidebar__menu a.is-active {
	background: linear-gradient(180deg, var(--bc-gold), var(--bc-gold-dark));
	color: #ffffff;
}

.bc-hero {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 100px);
	padding: 48px 24px 132px;
}

.bc-hero__backdrop {
	position: absolute;
	inset: 0;
	z-index: -1;
	overflow: hidden;
}

.bc-hero__backdrop::before {
	content: "";
	position: absolute;
	inset: 8% -12% auto auto;
	width: 74vw;
	height: 56vh;
	background:
		linear-gradient(135deg, transparent 0 22%, rgba(0, 0, 0, 0.22) 22% 24%, transparent 24%),
		linear-gradient(130deg, rgba(217, 188, 131, 0.16), rgba(56, 157, 82, 0.2) 42%, transparent 74%);
	clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
	opacity: 0.84;
}

.bc-hero__backdrop::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px),
		linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
	mix-blend-mode: soft-light;
}

.bc-hero__inner {
	width: min(780px, 100%);
	margin: 0 auto;
}

.bc-hero__copy {
	width: min(660px, 100%);
	margin: 0 auto;
	text-align: left;
}

.bc-hero h1,
.bc-hero h2 {
	margin: 0;
	font-family: var(--bc-title-font);
	line-height: 1;
	letter-spacing: 0;
	text-transform: uppercase;
}

.bc-hero h1 {
	color: #ffffff;
	font-size: 104px;
	font-weight: 900;
}

.bc-hero h2 {
	margin-top: 6px;
	color: var(--bc-gold);
	font-size: 34px;
	font-weight: 800;
}

.bc-hero p {
	max-width: 620px;
	margin: 24px 0 26px;
	color: var(--bc-muted);
	font-size: 20px;
	font-weight: 500;
}

.bc-hero p a,
.bc-partners__text a {
	color: #ffffff;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(217, 188, 131, 0.66);
	text-underline-offset: 4px;
}

.bc-primary-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	background: linear-gradient(180deg, #ead49e, #b3885b);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.bc-primary-cta:hover,
.bc-primary-cta:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.bc-icon {
	display: block;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
}

.bc-social-bar {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 45;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	min-height: 82px;
	padding: 0 50px;
	background: #101010;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-social-bar a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 0;
	padding: 18px 10px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 800;
	text-align: center;
	transition: transform 180ms ease, color 180ms ease, background-color 180ms ease;
}

.bc-social-bar a:hover,
.bc-social-bar a:focus-visible {
	background: rgba(255, 255, 255, 0.06);
	color: var(--bc-gold);
	transform: translateY(-2px);
}

.bc-partners {
	padding: 66px 24px 120px;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.58)),
		linear-gradient(90deg, #171717 0%, #333333 50%, #171717 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-partners__inner {
	width: min(1180px, 100%);
	margin: 0 auto;
	text-align: center;
}

.bc-logo-grid {
	display: grid;
	align-items: center;
	gap: 12px;
	margin: 0 0 22px;
}

.bc-logo-grid--payments {
	grid-template-columns: repeat(9, minmax(0, 1fr));
}

.bc-logo-grid--providers {
	grid-template-columns: repeat(11, minmax(0, 1fr));
}

.bc-logo-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 8px 10px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.24);
	color: rgba(255, 255, 255, 0.9);
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
}

.bc-logo-tile img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 30px;
	object-fit: contain;
}

.bc-logo-tile--provider {
	font-size: 11px;
}

.bc-partners__text {
	width: min(960px, 100%);
	margin: 30px auto 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	line-height: 1.8;
}

.bc-menu-toggle:focus-visible,
.bc-sidebar__close:focus-visible,
.bc-sidebar__overlay:focus-visible,
.bc-social-bar a:focus-visible,
.bc-primary-cta:focus-visible {
	outline: 2px solid var(--bc-gold);
	outline-offset: 3px;
}

@media (max-width: 1024px) {
	.bc-topbar {
		padding: 0 32px;
	}

	.bc-hero {
		min-height: calc(100vh - 182px);
		padding-top: 72px;
		text-align: center;
	}

	.bc-hero__copy {
		margin: 0 auto;
		text-align: center;
	}

	.bc-hero h1 {
		font-size: 72px;
	}

	.bc-hero h2 {
		font-size: 30px;
	}

	.bc-hero p {
		margin-right: auto;
		margin-left: auto;
	}

	.bc-social-bar {
		padding: 0;
		background: #ffffff;
		color: #031533;
	}

	.bc-social-bar a {
		color: #031533;
	}

	.bc-social-bar a:hover,
	.bc-social-bar a:focus-visible {
		background: rgba(3, 21, 51, 0.06);
		color: #031533;
	}

	.bc-logo-grid--payments,
	.bc-logo-grid--providers {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.bc-front {
		padding-bottom: 76px;
	}

	.bc-topbar {
		height: 76px;
		padding: 0 18px;
	}

	.bc-brand {
		height: 56px;
	}

	.bc-brand__mark {
		min-width: 154px;
		min-height: 46px;
		padding: 0 14px;
		font-size: 25px;
	}

	.bc-menu-toggle {
		width: 44px;
		height: 44px;
	}

	.bc-hero {
		min-height: calc(100vh - 150px);
		padding: 54px 18px 104px;
	}

	.bc-hero__backdrop::before {
		inset: 12% -44% auto auto;
		width: 118vw;
		height: 46vh;
	}

	.bc-hero h1 {
		font-size: 46px;
	}

	.bc-hero h2 {
		font-size: 24px;
	}

	.bc-hero p {
		font-size: 16px;
	}

	.bc-primary-cta {
		width: min(100%, 320px);
		font-size: 16px;
	}

	.bc-social-bar {
		min-height: 74px;
	}

	.bc-social-bar a {
		flex-direction: column;
		gap: 5px;
		padding: 9px 4px;
		font-size: 11px;
		line-height: 1.15;
	}

	.bc-social-bar .bc-icon {
		width: 19px;
		height: 19px;
	}

	.bc-logo-grid--payments,
	.bc-logo-grid--providers {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.bc-logo-tile {
		min-height: 44px;
		font-size: 10px;
	}

	.bc-partners {
		padding-right: 18px;
		padding-left: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bc-front *,
	.bc-front *::before,
	.bc-front *::after {
		scroll-behavior: auto !important;
		transition: none !important;
		animation: none !important;
	}
}
