:root {
	--bd-bg: #070b14;
	--bd-bg-2: #0b1220;
	--bd-surface: rgba(16, 24, 40, 0.78);
	--bd-line: rgba(148, 163, 184, 0.18);
	--bd-text: #eef3ff;
	--bd-muted: #94a3c4;
	--bd-orange: #ff6a1a;
	--bd-orange-2: #ff8a3d;
	--bd-blue: #2b7fff;
	--bd-cyan: #22d3ee;
	--bd-radius: 22px;
	--bd-wrap: 1180px;
	--bd-font: "Plus Jakarta Sans", system-ui, sans-serif;
	--bd-mono: "IBM Plex Mono", ui-monospace, monospace;
}

html, body.bd-theme {
	background: var(--bd-bg) !important;
	color: var(--bd-text);
	font-family: var(--bd-font);
}

body.bd-theme {
	margin: 0;
}

.bd-wrap {
	width: min(var(--bd-wrap), calc(100% - 32px));
	margin-inline: auto;
}

.bd-chrome {
	position: sticky;
	top: 0;
	z-index: 50;
	backdrop-filter: blur(18px);
	background: rgba(7, 11, 20, 0.78);
	border-bottom: 1px solid var(--bd-line);
}

.bd-topbar {
	font-size: 12px;
	letter-spacing: 0.04em;
	color: var(--bd-muted);
	border-bottom: 1px solid var(--bd-line);
}

.bd-topbar-inner {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
}

.bd-topbar a { color: var(--bd-cyan); text-decoration: none; }

.bd-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 78px;
}

.bd-brand img {
	display: block;
	height: 52px;
	width: auto;
}

.bd-nav {
	display: flex;
	gap: 22px;
	align-items: center;
}

.bd-nav a {
	color: var(--bd-text);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	opacity: 0.86;
}

.bd-nav a:hover { opacity: 1; color: #fff; }

.bd-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bd-cart {
	position: relative;
	color: var(--bd-text);
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--bd-line);
	border-radius: 999px;
}

.bd-cart i {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--bd-orange);
	color: #fff;
	border-radius: 99px;
	font-size: 10px;
	font-style: normal;
	min-width: 16px;
	height: 16px;
	display: grid;
	place-items: center;
	padding: 0 4px;
}

.bd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 12px 18px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	border: 1px solid transparent;
	transition: transform .15s ease, background .15s ease;
}

.bd-btn:hover { transform: translateY(-1px); }

.bd-btn-primary {
	background: linear-gradient(135deg, var(--bd-orange), #ff8a3d);
	color: #1a0b00 !important;
}

.bd-btn-secondary,
.bd-btn-ghost {
	background: transparent;
	border-color: var(--bd-line);
	color: var(--bd-text) !important;
}

.bd-burger {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid var(--bd-line);
	background: transparent;
	padding: 10px;
}

.bd-burger span {
	display: block;
	height: 2px;
	background: #fff;
	margin: 5px 0;
}

.bd-hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 40px;
}

.bd-hero-glow {
	position: absolute;
	inset: -20% auto auto -10%;
	width: 60vw;
	height: 60vw;
	background: radial-gradient(circle, rgba(43,127,255,.28), transparent 60%);
	pointer-events: none;
}

.bd-hero-glow:after {
	content: "";
	position: absolute;
	left: 45vw;
	top: 10vw;
	width: 40vw;
	height: 40vw;
	background: radial-gradient(circle, rgba(255,106,26,.2), transparent 62%);
}

.bd-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: 40px;
	align-items: center;
}

.bd-kicker {
	color: var(--bd-cyan);
	font-family: var(--bd-mono);
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin: 0 0 12px;
}

.bd-hero h1,
.bd-section h2,
.bd-page-title,
.bd-split-card h2 {
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.12;
	margin: 0 0 16px;
}

.bd-hero h1 { font-size: clamp(32px, 5vw, 58px); }

.bd-lead,
.bd-pillar p,
.bd-split-card p,
.bd-software p,
.bd-footer p {
	color: var(--bd-muted);
	line-height: 1.7;
}

.bd-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }

.bd-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 0;
	margin: 12px 0 0;
	list-style: none;
}

.bd-stats li {
	border: 1px solid var(--bd-line);
	border-radius: 16px;
	padding: 14px;
	background: var(--bd-surface);
}

.bd-stats strong { display: block; font-size: 22px; }
.bd-stats span { color: var(--bd-muted); font-size: 12px; }

.bd-panel-card {
	background: linear-gradient(180deg, rgba(20,32,54,.9), rgba(10,16,28,.92));
	border: 1px solid var(--bd-line);
	border-radius: 28px;
	padding: 28px;
	box-shadow: 0 30px 80px rgba(0,0,0,.35);
}

.bd-mono { font-family: var(--bd-mono); color: var(--bd-cyan); font-size: 12px; }
.bd-panel-card h2 { margin: 8px 0 18px; }
.bd-panel-card ul { margin: 0; padding: 0; list-style: none; }
.bd-panel-card li {
	padding: 12px 0;
	border-top: 1px solid var(--bd-line);
	color: var(--bd-muted);
}
.bd-panel-card b { color: #fff; margin-right: 8px; }
.bd-panel-foot { margin-top: 18px; color: #9ae6b4; font-size: 14px; display: flex; gap: 8px; align-items: center; }
.bd-dot { width: 8px; height: 8px; border-radius: 99px; background: #34d399; box-shadow: 0 0 12px #34d399; }

.bd-section { padding: 72px 0; }
.bd-section-alt { background: linear-gradient(180deg, rgba(12,18,32,.7), transparent); }
.bd-section-head { margin-bottom: 32px; max-width: 720px; }
.bd-section-head-row {
	max-width: none;
	display: flex;
	justify-content: space-between;
	gap: 16px;
	align-items: end;
}

.bd-pillars,
.bd-products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.bd-pillar,
.bd-product,
.bd-split-card,
.bd-soft-grid div {
	background: var(--bd-surface);
	border: 1px solid var(--bd-line);
	border-radius: var(--bd-radius);
}

.bd-pillar {
	padding: 24px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	min-height: 260px;
}

.bd-pillar-icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(43,127,255,.15);
	margin-bottom: 16px;
	font-size: 22px;
}

.bd-pillar h3 { margin: 0 0 10px; font-size: 20px; }
.bd-link { margin-top: auto; color: var(--bd-orange-2); font-weight: 700; font-size: 14px; }

.bd-product {
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.bd-product-media {
	aspect-ratio: 1.3 / 1;
	background: #101827;
	display: grid;
	place-items: center;
}

.bd-product-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bd-product-body { padding: 16px 16px 20px; }
.bd-sku {
	font-family: var(--bd-mono);
	font-size: 11px;
	color: var(--bd-cyan);
}
.bd-product h3 { font-size: 16px; margin: 6px 0 10px; }
.bd-product h3 a { color: inherit; text-decoration: none; }
.bd-price { color: #fff; font-weight: 800; margin-bottom: 12px; }
.bd-price del { color: var(--bd-muted); font-weight: 500; margin-right: 6px; }

.bd-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
}

.bd-split-card { padding: 32px; }
.bd-ticks { padding: 0; list-style: none; margin: 0 0 22px; color: var(--bd-muted); }
.bd-ticks li { padding: 8px 0 8px 22px; position: relative; }
.bd-ticks li:before { content: "✓"; position: absolute; left: 0; color: #34d399; }

.bd-software {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	align-items: center;
}

.bd-soft-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.bd-soft-grid div { padding: 18px; }
.bd-soft-grid b { display: block; margin-bottom: 6px; }
.bd-soft-grid span { color: var(--bd-muted); font-size: 14px; }

.bd-cta { padding: 0 0 80px; }
.bd-cta-inner {
	border-radius: 28px;
	padding: 36px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
	background: linear-gradient(135deg, rgba(255,106,26,.16), rgba(43,127,255,.2));
	border: 1px solid var(--bd-line);
}

.bd-footer {
	border-top: 1px solid var(--bd-line);
	padding: 48px 0 24px;
	background: #060910;
}

.bd-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr .8fr .8fr 1fr;
	gap: 24px;
}

.bd-footer h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; color: var(--bd-muted); }
.bd-footer a, .bd-footer p { display: block; color: var(--bd-muted); text-decoration: none; margin: 8px 0; }
.bd-footer-logo { height: 48px; width: auto; margin-bottom: 12px; }
.bd-copyright { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--bd-line); color: #64748b; font-size: 13px; }

.bd-page { padding: 40px 0 80px; }
.bd-page-title,
.woocommerce-products-header h1,
.wp-block-query-title {
	font-size: clamp(32px, 4vw, 48px);
	margin-bottom: 18px !important;
	color: #fff;
}

body.bd-theme .woocommerce-products-header,
body.bd-theme .term-description {
	color: var(--bd-muted);
}

body.bd-theme .woocommerce-breadcrumb a { color: var(--bd-cyan); }

.bd-header p,
.bd-footer p:empty,
.bd-nav br,
.bd-header br {
	display: none;
}
.bd-page .wp-block-post-content,
.bd-page .entry-content { color: var(--bd-muted); max-width: none !important; }

body.bd-theme .woocommerce,
body.bd-theme .bd-woo,
body.bd-theme ul.products,
body.bd-theme .product {
	color: var(--bd-text);
}

body.bd-theme .woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

body.bd-theme .woocommerce ul.products li.product {
	background: var(--bd-surface);
	border: 1px solid var(--bd-line);
	border-radius: var(--bd-radius);
	padding: 0 0 18px !important;
	overflow: hidden;
	width: auto !important;
	float: none !important;
	margin: 0 !important;
}

body.bd-theme .woocommerce ul.products li.product img {
	width: 100%;
	margin: 0 !important;
}

body.bd-theme .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.bd-theme .woocommerce ul.products li.product .price {
	padding: 0 16px;
	color: #fff;
}

body.bd-theme .woocommerce a.button,
body.bd-theme .woocommerce button.button,
body.bd-theme .single_add_to_cart_button {
	background: linear-gradient(135deg, var(--bd-orange), #ff8a3d) !important;
	color: #1a0b00 !important;
	border-radius: 999px !important;
	border: 0 !important;
}

body.bd-theme .woocommerce-breadcrumb,
body.bd-theme .posted_in,
body.bd-theme .sku_wrapper {
	color: var(--bd-muted);
}

body.bd-theme header.wp-block-template-part,
body.bd-theme footer.wp-block-template-part {
	display: block;
	background: transparent;
}

body.bd-theme .wp-site-blocks > * {
	margin-block: 0 !important;
}

.bd-empty { color: var(--bd-muted); }

body.bd-nav-open .bd-nav {
	display: flex;
}

@media (max-width: 980px) {
	.bd-hero-grid,
	.bd-pillars,
	.bd-products,
	.bd-split,
	.bd-software,
	.bd-footer-grid,
	body.bd-theme .woocommerce ul.products {
		grid-template-columns: 1fr 1fr;
	}
	.bd-stats { grid-template-columns: 1fr 1fr; }
	.bd-nav {
		display: none;
		position: absolute;
		top: 110px;
		left: 16px;
		right: 16px;
		flex-direction: column;
		background: #0c1424;
		border: 1px solid var(--bd-line);
		border-radius: 16px;
		padding: 16px;
	}
	.bd-burger { display: inline-block; }
	.bd-header { position: relative; }
}

@media (max-width: 640px) {
	.bd-hero-grid,
	.bd-pillars,
	.bd-products,
	.bd-split,
	.bd-software,
	.bd-soft-grid,
	.bd-footer-grid,
	.bd-cta-inner,
	body.bd-theme .woocommerce ul.products,
	.bd-section-head-row {
		grid-template-columns: 1fr;
		display: grid;
	}
	.bd-brand img { height: 40px; }
	.bd-topbar { display: none; }
}
