*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bmx-bg: #070a0f;
	--bmx-surface: #121620;
	--bmx-surface-2: #0d1118;
	--bmx-surface-3: #1a1f2d;
	--bmx-amber: #ffaa00;
	--bmx-amber-dim: rgba(255, 170, 0, 0.18);
	--bmx-amber-glow: rgba(255, 170, 0, 0.45);
	--bmx-malachite: #10b981;
	--bmx-malachite-dim: rgba(16, 185, 129, 0.18);
	--bmx-malachite-glow: rgba(16, 185, 129, 0.4);
	--bmx-text: #f1f5f9;
	--bmx-text-2: #94a3b8;
	--bmx-text-3: #5b6779;
	--bmx-border: rgba(148, 163, 184, 0.12);
	--bmx-border-strong: rgba(148, 163, 184, 0.28);
	--bmx-radius-sm: 4px;
	--bmx-radius: 8px;
	--bmx-radius-lg: 14px;
	--bmx-font-display: 'Syne', 'Helvetica Neue', sans-serif;
	--bmx-font-mono: 'JetBrains Mono', 'Fira Code', ui-monospace, monospace;
	--bmx-shadow-deep: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
	--bmx-shadow-amber:
		0 0 0 1px rgba(255, 170, 0, 0.2), 0 12px 30px -10px rgba(255, 170, 0, 0.25);
	--bmx-grad-amber: linear-gradient(135deg, #ffaa00, #ff7a00);
	--bmx-grad-malachite: linear-gradient(135deg, #10b981, #0d8a64);
	--bmx-header-h: 84px;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	background: var(--bmx-bg);
	color: var(--bmx-text);
	font-family: var(--bmx-font-mono);
	font-size: 15px;
	line-height: 1.65;
	min-height: 100vh;
	overflow-x: hidden;
	position: relative;
	background-image:
		radial-gradient(
			circle at 15% 10%,
			rgba(255, 170, 0, 0.06),
			transparent 40%
		),
		radial-gradient(
			circle at 85% 80%,
			rgba(16, 185, 129, 0.05),
			transparent 45%
		),
		linear-gradient(180deg, #070a0f 0%, #05080d 100%);
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(148, 163, 184, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
	background-size: 64px 64px;
	pointer-events: none;
	z-index: 0;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

img {
	max-width: 100%;
	display: block;
	background: var(--bmx-surface-2);
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius);
	min-height: 40px;
	color: transparent;
}

a {
	color: inherit;
	text-decoration: none;
}

button {
	font: inherit;
	cursor: pointer;
	border: none;
	background: none;
	color: inherit;
}

input,
textarea {
	font: inherit;
	color: inherit;
}

/* ---------- 2. TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5 {
	font-family: var(--bmx-font-display);
	font-weight: 700;
	color: var(--bmx-text);
	letter-spacing: -0.01em;
	line-height: 1.05;
}

.bmx-h-mega {
	font-size: clamp(2rem, 3.5vw, 4rem);
	text-transform: uppercase;
	letter-spacing: -0.02em;
}
.bmx-h-mega span {
	color: var(--bmx-amber);
}
.bmx-h-1 {
	font-size: clamp(2rem, 4vw, 3.2rem);
}
.bmx-h-2 {
	font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}
.bmx-h-3 {
	font-size: clamp(1.15rem, 1.6vw, 1.4rem);
}

.bmx-eyebrow {
	font-family: var(--bmx-font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--bmx-amber);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.bmx-eyebrow::before {
	content: '';
	width: 32px;
	height: 1px;
	background: var(--bmx-amber);
	display: inline-block;
}

.bmx-lead {
	color: var(--bmx-text-2);
	font-size: 1.02rem;
	line-height: 1.75;
	max-width: 62ch;
}

/* ---------- 3. LAYOUT WRAPPERS ---------- */
.bmx-wrap {
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 32px;
	position: relative;
	z-index: 1;
}

.bmx-container {
	max-width: 1200px;
	margin: 0 auto;
}

.bmx-section {
	padding: 110px 0;
	position: relative;
	z-index: 1;
}

.bmx-section--tight {
	padding: 70px 0;
}

.bmx-section-head {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 56px;
	max-width: 820px;
}

/* ---------- 4. HEADER — Split Reverse HUD ---------- */
.bmx-header {
	position: fixed;
	top: 20px;
	left: 20px;
	right: 20px;
	z-index: 100;
	max-width: 1350px;
	margin: 0 auto;
	display: flex;
	align-items: stretch;
	background: rgba(13, 17, 24, 0.72);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius-lg);
	box-shadow: var(--bmx-shadow-deep);
	overflow: hidden;
}

.bmx-header__brand {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 28px;
	border-right: 1px solid var(--bmx-border);
	background: linear-gradient(135deg, rgba(255, 170, 0, 0.05), transparent);
	position: relative;
}
.bmx-header__brand::after {
	content: '';
	position: absolute;
	right: -1px;
	top: 20%;
	height: 60%;
	width: 2px;
	background: var(--bmx-amber);
	box-shadow: 0 0 12px var(--bmx-amber-glow);
}

.bmx-logo {
	font-family: var(--bmx-font-display);
	font-weight: 800;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bmx-text);
	display: flex;
	align-items: center;
	gap: 10px;
}
.bmx-logo__mark {
	width: 28px;
	height: 28px;
	display: grid;
	place-items: center;
	color: var(--bmx-amber);
	border: 1px solid var(--bmx-amber);
	border-radius: 4px;
	font-size: 0.85rem;
	font-family: var(--bmx-font-mono);
	background: rgba(255, 170, 0, 0.06);
}
.bmx-logo__dot {
	color: var(--bmx-amber);
}

.bmx-header__nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 24px;
	gap: 4px;
}

.bmx-nav__link {
	position: relative;
	padding: 12px 18px;
	font-family: var(--bmx-font-mono);
	font-size: 0.85rem;
	color: var(--bmx-text-2);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition:
		color 0.25s ease,
		background 0.25s ease;
	border-radius: 6px;
}
.bmx-nav__link:hover,
.bmx-nav__link.is-active {
	color: var(--bmx-text);
	background: rgba(255, 170, 0, 0.06);
}

.bmx-nav__link.is-active::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 4px;
	transform: translateX(-50%);
	width: 18px;
	height: 2px;
	background: var(--bmx-amber);
	box-shadow: 0 0 8px var(--bmx-amber-glow);
}

.bmx-burger {
	display: none;
	width: 48px;
	height: 48px;
	margin: 12px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--bmx-border-strong);
	border-radius: 6px;
	color: var(--bmx-amber);
	font-size: 1.1rem;
	transition: background 0.2s;
}
.bmx-burger:hover {
	background: rgba(255, 170, 0, 0.08);
}

/* Mobile terminal nav */
.bmx-mobile-nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: #05080d;
	z-index: 200;
	transform: translateX(100%);
	transition: transform 0.45s cubic-bezier(0.6, 0.2, 0.1, 1);
	display: flex;
	flex-direction: column;
	padding: 32px;
	border-left: 2px solid var(--bmx-amber);
}
.bmx-mobile-nav.is-open {
	transform: translateX(0);
}
.bmx-mobile-nav__close {
	align-self: flex-end;
	font-size: 1.4rem;
	color: var(--bmx-amber);
	border: 1px solid var(--bmx-amber);
	padding: 8px 12px;
	border-radius: 4px;
	font-family: var(--bmx-font-mono);
}
.bmx-mobile-nav__list {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 60px;
	list-style: none;
}
.bmx-mobile-nav__list a {
	display: block;
	font-family: var(--bmx-font-display);
	font-size: 2rem;
	padding: 18px 0;
	border-bottom: 1px solid var(--bmx-border);
	color: var(--bmx-text);
}
.bmx-mobile-nav__list a::before {
	content: '>_ ';
	color: var(--bmx-amber);
	font-family: var(--bmx-font-mono);
	font-size: 1.2rem;
}

/* ---------- 5. SCROLL DEPTH INDICATOR ---------- */
.bmx-depth {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 100%;
	background: transparent;
	z-index: 99;
	pointer-events: none;
}
.bmx-depth__bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--bmx-amber), var(--bmx-malachite));
	box-shadow: 0 0 16px var(--bmx-amber-glow);
	transition: width 0.08s linear;
}
.bmx-depth__meter {
	position: fixed;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	z-index: 50;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	pointer-events: none;
}
.bmx-depth__rail {
	width: 2px;
	height: 220px;
	background: var(--bmx-border-strong);
	position: relative;
	border-radius: 2px;
}
.bmx-depth__cursor {
	position: absolute;
	left: -7px;
	width: 16px;
	height: 16px;
	background: var(--bmx-amber);
	border-radius: 50%;
	box-shadow: 0 0 18px var(--bmx-amber-glow);
	top: 0;
	transition: top 0.15s linear;
}
.bmx-depth__label {
	font-family: var(--bmx-font-mono);
	font-size: 0.65rem;
	color: var(--bmx-text-3);
	letter-spacing: 0.15em;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

/* ---------- 6. HERO — Lithosphere Terminal ---------- */
.bmx-hero {
	padding-top: calc(var(--bmx-header-h) + 80px);
	padding-bottom: 100px;
	position: relative;
	overflow: hidden;
}
.bmx-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.35;
}
.bmx-hero__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
	border-radius: 0;
	filter: grayscale(0.5) contrast(1.1) brightness(0.5);
}
.bmx-hero__overlay {
	position: absolute;
	inset: 0;

	z-index: 1;
}
.bmx-hero__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 60px;
	align-items: start;
}
.bmx-hero__left {
	padding-top: 20px;
}
.bmx-hero__tag {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 14px;
	border: 1px solid var(--bmx-malachite);
	border-radius: 999px;
	font-size: 0.7rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--bmx-malachite);
	margin-bottom: 24px;
}
.bmx-hero__tag::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bmx-malachite);
	box-shadow: 0 0 10px var(--bmx-malachite-glow);
	animation: bmx-pulse 1.8s infinite;
}
@keyframes bmx-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}
.bmx-hero h1 {
	margin-bottom: 28px;
}
.bmx-hero__lead {
	font-size: 1.08rem;
	max-width: 60ch;
}
.bmx-hero__meta {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	border-top: 1px solid var(--bmx-border);
	padding-top: 28px;
}
.bmx-hero__meta-item .num {
	font-family: var(--bmx-font-display);
	font-size: 1.9rem;
	color: var(--bmx-amber);
	display: block;
	line-height: 1;
}
.bmx-hero__meta-item .lbl {
	font-size: 0.72rem;
	color: var(--bmx-text-3);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin-top: 8px;
	display: block;
}

/* Telemetry sidebar */
.bmx-telemetry {
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius-lg);
	padding: 24px;
	position: relative;
	overflow: hidden;
	box-shadow: var(--bmx-shadow-deep);
}
.bmx-telemetry::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--bmx-amber),
		transparent
	);
}
.bmx-telemetry__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 14px;
	border-bottom: 1px dashed var(--bmx-border);
	margin-bottom: 16px;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--bmx-text-3);
}
.bmx-telemetry__head .live {
	color: var(--bmx-malachite);
	display: flex;
	align-items: center;
	gap: 6px;
}
.bmx-telemetry__head .live::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--bmx-malachite);
	border-radius: 50%;
	animation: bmx-pulse 1.4s infinite;
}
.bmx-telemetry__log {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 0.78rem;
	font-family: var(--bmx-font-mono);
	max-height: 360px;
	overflow: hidden;
}
.bmx-telemetry__log li {
	display: grid;
	grid-template-columns: 60px 1fr auto;
	gap: 10px;
	padding: 8px 10px;
	background: var(--bmx-surface-2);
	border-left: 2px solid var(--bmx-amber);
	border-radius: 0 4px 4px 0;
	color: var(--bmx-text-2);
}
.bmx-telemetry__log li .t {
	color: var(--bmx-text-3);
}
.bmx-telemetry__log li .v {
	color: var(--bmx-malachite);
	font-weight: 600;
}
.bmx-telemetry__log li.warn {
	border-left-color: var(--bmx-amber);
}
.bmx-telemetry__log li.warn .v {
	color: var(--bmx-amber);
}
.bmx-telemetry__foot {
	margin-top: 16px;
	padding-top: 12px;
	border-top: 1px dashed var(--bmx-border);
	font-size: 0.7rem;
	color: var(--bmx-text-3);
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

/* ---------- 7. SECTION — Seismic Resonance (Vertical Split) ---------- */
.bmx-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius-lg);
	overflow: hidden;
	background: var(--bmx-surface);
}
.bmx-split__left,
.bmx-split__right {
	padding: 52px;
}
.bmx-split__left {
	background: linear-gradient(160deg, var(--bmx-surface-2), var(--bmx-surface));
	border-right: 1px solid var(--bmx-border);
	position: sticky;
	top: 110px;
}
.bmx-split__left h2 {
	margin: 16px 0 20px;
}
.bmx-split__left p {
	color: var(--bmx-text-2);
}
.bmx-split__left .bmx-sig {
	margin-top: 32px;
	padding: 16px;
	border: 1px dashed var(--bmx-border-strong);
	border-radius: var(--bmx-radius);
	font-size: 0.8rem;
	color: var(--bmx-text-3);
	font-family: var(--bmx-font-mono);
}

.bmx-stack {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.bmx-stack__item {
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius);
	background: var(--bmx-surface-2);
	overflow: hidden;
	transition: border-color 0.3s;
}
.bmx-stack__item.is-open {
	border-color: var(--bmx-amber);
}
.bmx-stack__head {
	display: grid;
	grid-template-columns: 56px 1fr 32px;
	align-items: center;
	gap: 18px;
	width: 100%;
	padding: 22px 22px;
	text-align: left;
	transition: background 0.25s;
}
.bmx-stack__head:hover {
	background: rgba(255, 170, 0, 0.04);
}
.bmx-stack__num {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--bmx-surface-3);
	color: var(--bmx-amber);
	font-family: var(--bmx-font-mono);
	font-size: 0.85rem;
	border: 1px solid var(--bmx-amber);
}
.bmx-stack__title {
	font-family: var(--bmx-font-display);
	font-size: 1.15rem;
	color: var(--bmx-text);
}
.bmx-stack__plus {
	color: var(--bmx-amber);
	font-size: 1.4rem;
	transition: transform 0.3s;
}
.bmx-stack__item.is-open .bmx-stack__plus {
	transform: rotate(45deg);
}
.bmx-stack__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}
.bmx-stack__item.is-open .bmx-stack__body {
	max-height: 600px;
}
.bmx-stack__inner {
	padding: 0 22px 26px 96px;
	color: var(--bmx-text-2);
	font-size: 0.92rem;
	line-height: 1.75;
}

/* ---------- 8. STAGGERED BRICKS — Technological Core ---------- */
.bmx-bricks {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-auto-rows: 130px;
	gap: 18px;
}
.bmx-brick {
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius);
	padding: 28px;
	position: relative;
	transition: all 0.35s ease;
	overflow: hidden;
}
.bmx-brick::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: var(--bmx-radius);
	pointer-events: none;
	box-shadow: inset 0 0 0 1px transparent;
	transition: box-shadow 0.3s;
}
.bmx-brick:hover {
	transform: translateY(-4px);
	border-color: var(--bmx-amber);
}
.bmx-brick:hover::before {
	box-shadow:
		inset 0 0 0 1px var(--bmx-amber),
		0 0 30px var(--bmx-amber-dim);
}
.bmx-brick__no {
	font-family: var(--bmx-font-mono);
	font-size: 0.7rem;
	color: var(--bmx-amber);
	letter-spacing: 0.2em;
}
.bmx-brick h3 {
	margin: 12px 0 14px;
	font-size: 1.2rem;
}
.bmx-brick p {
	color: var(--bmx-text-2);
	font-size: 0.86rem;
	line-height: 1.7;
}
.bmx-brick--lg {
	grid-column: span 4;
	grid-row: span 3;
}
.bmx-brick--md {
	grid-column: span 2;
	grid-row: span 3;
}
.bmx-brick--md2 {
	grid-column: span 3;
	grid-row: span 3;
}
.bmx-brick--md3 {
	grid-column: span 3;
	grid-row: span 3;
}
.bmx-brick__icon {
	position: absolute;
	top: 24px;
	right: 24px;
	color: var(--bmx-malachite);
	opacity: 0.5;
	font-size: 1.5rem;
}

/* ---------- 9. RADIAL TABS — Lab Stands ---------- */
.bmx-radial {
	position: relative;
	width: 100%;
	min-height: 560px;
	display: grid;
	place-items: center;
}
.bmx-radial__ring {
	position: relative;
	width: min(560px, 92vw);
	height: min(560px, 92vw);
	border: 1px dashed var(--bmx-border-strong);
	border-radius: 50%;
}
.bmx-radial__ring::before,
.bmx-radial__ring::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	border: 1px solid var(--bmx-border);
}
.bmx-radial__ring::before {
	inset: 30px;
}
.bmx-radial__ring::after {
	inset: 70px;
	border-style: dashed;
}

.bmx-radial__center {
	position: absolute;
	inset: 110px;
	background: linear-gradient(160deg, var(--bmx-surface), var(--bmx-surface-2));
	border: 1px solid var(--bmx-amber);
	border-radius: 50%;
	display: grid;
	place-items: center;
	padding: 36px;
	text-align: center;
	box-shadow: var(--bmx-shadow-amber);
}
.bmx-radial__title {
	font-family: var(--bmx-font-display);
	font-size: 1.4rem;
	margin-bottom: 12px;
	color: var(--bmx-amber);
}
.bmx-radial__text {
	color: var(--bmx-text-2);
	font-size: 0.85rem;
	line-height: 1.6;
}

.bmx-radial__btn {
	position: absolute;
	padding: 12px 18px;
	border: 1px solid var(--bmx-border-strong);
	background: var(--bmx-surface);
	border-radius: 999px;
	font-family: var(--bmx-font-mono);
	font-size: 0.78rem;
	color: var(--bmx-text);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	transition: all 0.3s;
	white-space: nowrap;
}
.bmx-radial__btn:hover,
.bmx-radial__btn.is-active {
	background: var(--bmx-amber);
	color: #0a0a0a;
	border-color: var(--bmx-amber);
	box-shadow: 0 0 20px var(--bmx-amber-glow);
}
.bmx-radial__btn--n {
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
}
.bmx-radial__btn--e {
	right: -50px;
	top: 50%;
	transform: translateY(-50%);
}
.bmx-radial__btn--s {
	bottom: -18px;
	left: 50%;
	transform: translateX(-50%);
}
.bmx-radial__btn--w {
	left: -89px;
	top: 50%;
	transform: translateY(-50%);
}

/* ---------- 10. MASONRY JOURNAL — Expeditions ---------- */
.bmx-masonry {
	/* columns: 3; */
	column-gap: 22px;
}
.bmx-masonry__card {
	break-inside: avoid;
	margin-bottom: 22px;
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius);
	padding: 26px;
	position: relative;
	overflow: hidden;
}
.bmx-masonry__card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background: var(--bmx-malachite);
}
.bmx-masonry__card:nth-child(odd)::before {
	background: var(--bmx-amber);
}
.bmx-masonry__loc {
	font-family: var(--bmx-font-mono);
	font-size: 0.7rem;
	color: var(--bmx-text-3);
	letter-spacing: 0.18em;
	text-transform: uppercase;
}
.bmx-masonry__name {
	font-family: var(--bmx-font-display);
	font-size: 1.3rem;
	margin: 10px 0 14px;
}
.bmx-masonry__body {
	color: var(--bmx-text-2);
	font-size: 0.88rem;
	line-height: 1.7;
}
.bmx-masonry__tag {
	display: inline-block;
	margin-top: 14px;
	font-family: var(--bmx-font-mono);
	font-size: 0.7rem;
	padding: 4px 10px;
	border: 1px solid var(--bmx-border-strong);
	border-radius: 4px;
	color: var(--bmx-malachite);
}

/* ---------- 11. FORM + MAP ---------- */
.bmx-formgrid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 28px;
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius-lg);
	overflow: hidden;
	background: var(--bmx-surface);
}

.bmx-map {
	height: 100%;
	min-height: 300px;
	filter: invert(0.92) hue-rotate(180deg) brightness(0.85) contrast(0.95)
		saturate(0.6);
	width: 100%;

	/* border-radius: 1rem; */
	overflow: hidden;
}

@media (max-width: 768px) {
	.bmx-map {
		height: 400px;
	}
}

.iti {
	width: 100% !important;
}
.iti input[type='tel'] {
	width: 100% !important;
}

.bmx-contact-map {
	position: relative;
	height: 100%;
}

.bmx-map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;

	height: 100%;
	/* border-radius: 1rem; */

	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
	cursor: pointer;
}
.bmx-form {
	padding: 44px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.bmx-form__title {
	margin-bottom: 4px;
}
.bmx-form__hint {
	color: var(--bmx-text-3);
	font-size: 0.78rem;
	margin-bottom: 14px;
	font-family: var(--bmx-font-mono);
	text-transform: uppercase;
	letter-spacing: 0.15em;
}
.bmx-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.bmx-field label {
	font-family: var(--bmx-font-mono);
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--bmx-text-3);
}
.bmx-field input,
.bmx-field textarea {
	background: var(--bmx-surface-2);
	border: 1px solid var(--bmx-border-strong);
	padding: 14px 16px;
	border-radius: var(--bmx-radius);
	color: var(--bmx-text);
	font-family: var(--bmx-font-mono);
	font-size: 0.9rem;
	transition:
		border-color 0.2s,
		box-shadow 0.2s;
	outline: none;
	resize: vertical;
}
.bmx-field input:focus,
.bmx-field textarea:focus {
	border-color: var(--bmx-amber);
	box-shadow: 0 0 0 3px var(--bmx-amber-dim);
}
.bmx-field--invalid input,
.bmx-field--invalid textarea {
	border-color: #ff4f4f;
}
.bmx-field__err {
	font-size: 0.7rem;
	color: #ff7a7a;
	font-family: var(--bmx-font-mono);
	min-height: 0;
	display: none;
}
.bmx-field--invalid .bmx-field__err {
	display: block;
}

.bmx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 16px 26px;
	background: var(--bmx-amber);
	color: #0a0a0a;
	font-family: var(--bmx-font-mono);
	font-size: 0.82rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	border-radius: var(--bmx-radius);
	transition: all 0.25s;
	border: 1px solid var(--bmx-amber);
}
.bmx-btn:hover:not(:disabled) {
	background: transparent;
	color: var(--bmx-amber);
	box-shadow: 0 0 24px var(--bmx-amber-glow);
}
.bmx-btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	background: var(--bmx-surface-3);
	color: var(--bmx-text-3);
	border-color: var(--bmx-border-strong);
}
.bmx-btn--ghost {
	background: transparent;
	color: var(--bmx-amber);
}

/* ---------- 12. FOOTER ---------- */
.bmx-footer {
	background: linear-gradient(180deg, #05080d, #02040a);
	border-top: 1px solid var(--bmx-border-strong);
	padding: 80px 0 32px;
	position: relative;
	z-index: 1;
}
.bmx-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
	gap: 50px;
	padding-bottom: 50px;
	border-bottom: 1px solid var(--bmx-border);
}
.bmx-footer__brand .bmx-logo {
	margin-bottom: 18px;
}
.bmx-footer p {
	color: var(--bmx-text-2);
	font-size: 0.88rem;
	line-height: 1.7;
}
.bmx-footer h4 {
	font-family: var(--bmx-font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--bmx-amber);
	margin-bottom: 18px;
}
.bmx-footer ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.bmx-footer ul a {
	color: var(--bmx-text-2);
	font-size: 0.88rem;
	transition: color 0.2s;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.bmx-footer ul a:hover {
	color: var(--bmx-amber);
}
.bmx-footer ul a::before {
	content: '›';
	color: var(--bmx-amber);
}
.bmx-footer__contact li {
	color: var(--bmx-text-2);
	font-size: 0.88rem;
}
.bmx-footer__contact i {
	color: var(--bmx-amber);
	margin-right: 8px;
	width: 14px;
}
.bmx-footer__bottom {
	padding-top: 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.78rem;
	color: var(--bmx-text-3);
	font-family: var(--bmx-font-mono);
}

/* ---------- 13. COOKIE BANNER ---------- */
.bmx-cookie {
	position: fixed;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: 720px;
	margin: 0 auto;
	background: rgba(13, 17, 24, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--bmx-amber);
	border-radius: var(--bmx-radius-lg);
	padding: 22px 26px;
	z-index: 150;
	display: flex;
	gap: 22px;
	align-items: center;
	flex-wrap: wrap;
	box-shadow:
		var(--bmx-shadow-deep),
		0 0 40px rgba(255, 170, 0, 0.15);
	transform: translateY(200%);
	transition: transform 0.6s cubic-bezier(0.6, 0.2, 0.1, 1);
}
.bmx-cookie.is-shown {
	transform: translateY(0);
}
.bmx-cookie__icon {
	color: var(--bmx-amber);
	font-size: 1.6rem;
}
.bmx-cookie__text {
	flex: 1;
	min-width: 240px;
	color: var(--bmx-text-2);
	font-size: 0.84rem;
	line-height: 1.6;
}
.bmx-cookie__text a {
	color: var(--bmx-amber);
	text-decoration: underline;
}
.bmx-cookie__btn {
	background: var(--bmx-amber);
	color: #0a0a0a;
	padding: 12px 22px;
	border-radius: var(--bmx-radius);
	font-family: var(--bmx-font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 600;
	transition: all 0.2s;
}
.bmx-cookie__btn:hover {
	background: transparent;
	color: var(--bmx-amber);
	box-shadow: 0 0 18px var(--bmx-amber-glow);
}

/* ---------- 14. PAGE HEADER (inner pages) ---------- */
.bmx-pagehead {
	padding-top: calc(var(--bmx-header-h) + 80px);
	padding-bottom: 60px;
	position: relative;
	border-bottom: 1px solid var(--bmx-border);
}
.bmx-pagehead__crumbs {
	font-family: var(--bmx-font-mono);
	font-size: 0.75rem;
	color: var(--bmx-text-3);
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin-bottom: 24px;
}
.bmx-pagehead__crumbs a {
	color: var(--bmx-amber);
}
.bmx-pagehead h1 {
	max-width: 16ch;
	margin-bottom: 20px;
}
.bmx-pagehead p {
	max-width: 60ch;
	color: var(--bmx-text-2);
}

/* ---------- 15. ARTICLE LONGREAD ---------- */
.bmx-longread {
	margin: 0 auto;
	padding: 60px 0;
}
.bmx-longread p {
	color: var(--bmx-text-2);
	margin-bottom: 18px;
	font-size: 1rem;
	line-height: 1.85;
}
.bmx-longread h3 {
	margin: 36px 0 16px;
	color: var(--bmx-amber);
	font-family: var(--bmx-font-display);
}
.bmx-longread blockquote {
	margin: 32px 0;
	padding: 22px 26px;
	border-left: 3px solid var(--bmx-malachite);
	background: var(--bmx-surface);
	border-radius: 0 var(--bmx-radius) var(--bmx-radius) 0;
	font-style: italic;
	color: var(--bmx-text);
}

/* ---------- 16. COMPARISON TABLE ---------- */
.bmx-table {
	width: 100%;
	border-collapse: collapse;
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius);
	overflow: hidden;
	font-size: 0.9rem;
}
.bmx-table th,
.bmx-table td {
	padding: 18px 20px;
	text-align: left;
	border-bottom: 1px solid var(--bmx-border);
}
.bmx-table th {
	background: var(--bmx-surface-2);
	font-family: var(--bmx-font-mono);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--bmx-amber);
}
.bmx-table tbody tr:hover {
	background: rgba(255, 170, 0, 0.03);
}
.bmx-table tbody tr:last-child td {
	border-bottom: none;
}
.bmx-table td:first-child {
	color: var(--bmx-text);
	font-weight: 600;
}
.bmx-table td {
	color: var(--bmx-text-2);
}

/* ---------- 17. CAROUSEL ---------- */
.bmx-carousel {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius-lg);
	background: var(--bmx-surface);
}
.bmx-carousel__track {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.6, 0.2, 0.1, 1);
}
.bmx-carousel__slide {
	min-width: 100%;
	padding: 48px 56px;
}
.bmx-carousel__slide h3 {
	color: var(--bmx-amber);
	margin-bottom: 16px;
	font-size: 1.6rem;
}
.bmx-carousel__slide p {
	color: var(--bmx-text-2);
	line-height: 1.8;
	font-size: 0.95rem;
}
.bmx-carousel__nav {
	display: flex;
	gap: 8px;
	padding: 0 28px 28px;
}
.bmx-carousel__btn {
	width: 44px;
	height: 44px;
	border: 1px solid var(--bmx-border-strong);
	border-radius: 50%;
	color: var(--bmx-amber);
	transition: all 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
}
.bmx-carousel__btn:hover {
	background: var(--bmx-amber);
	color: #0a0a0a;
}
.bmx-carousel__dots {
	display: flex;
	gap: 8px;
	margin-left: auto;
	align-items: center;
}
.bmx-carousel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bmx-border-strong);
	transition: all 0.2s;
}
.bmx-carousel__dot.is-active {
	background: var(--bmx-amber);
	width: 24px;
	border-radius: 4px;
}

/* ---------- 18. ACCORDION ---------- */
.bmx-acc {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.bmx-acc__item {
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius);
	background: var(--bmx-surface);
	overflow: hidden;
}
.bmx-acc__item.is-open {
	border-color: var(--bmx-malachite);
}
.bmx-acc__head {
	width: 100%;
	padding: 22px 26px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	text-align: left;
	font-family: var(--bmx-font-display);
	font-size: 1.1rem;
	color: var(--bmx-text);
	transition: background 0.2s;
}
.bmx-acc__head:hover {
	background: rgba(16, 185, 129, 0.04);
}
.bmx-acc__head i {
	color: var(--bmx-malachite);
	transition: transform 0.3s;
}
.bmx-acc__item.is-open .bmx-acc__head i {
	transform: rotate(180deg);
}
.bmx-acc__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}
.bmx-acc__item.is-open .bmx-acc__body {
	max-height: 500px;
}
.bmx-acc__inner {
	padding: 0 26px 26px;
	color: var(--bmx-text-2);
	font-size: 0.92rem;
	line-height: 1.75;
}

/* ---------- 19. HORIZONTAL TABS ---------- */
.bmx-htabs__nav {
	display: flex;
	gap: 4px;
	border-bottom: 1px solid var(--bmx-border-strong);
	margin-bottom: 32px;
	flex-wrap: wrap;
}
.bmx-htabs__btn {
	padding: 16px 22px;
	font-family: var(--bmx-font-mono);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--bmx-text-2);
	border-bottom: 2px solid transparent;
	transition: all 0.2s;
	margin-bottom: -1px;
}
.bmx-htabs__btn:hover {
	color: var(--bmx-text);
}
.bmx-htabs__btn.is-active {
	color: var(--bmx-amber);
	border-bottom-color: var(--bmx-amber);
}
.bmx-htabs__panel {
	display: none;
}
.bmx-htabs__panel.is-active {
	display: block;
	animation: bmx-fade 0.3s;
}
@keyframes bmx-fade {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.bmx-htabs__panel h3 {
	color: var(--bmx-amber);
	margin-bottom: 14px;
}
.bmx-htabs__panel p {
	color: var(--bmx-text-2);
	line-height: 1.8;
	margin-bottom: 14px;
}

/* ---------- 20. TEXT+IMG BLOCKS ---------- */
.bmx-textimg {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
	margin-bottom: 56px;
}
.bmx-textimg--rev {
	direction: rtl;
}
.bmx-textimg--rev > * {
	direction: ltr;
}
.bmx-textimg__media {
	aspect-ratio: 4 / 3;
	border-radius: var(--bmx-radius-lg);
	overflow: hidden;
	border: 1px solid var(--bmx-border-strong);
	position: relative;
}
.bmx-textimg__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: none;
	border-radius: 0;
}
.bmx-textimg__media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg, rgba(255, 170, 0, 0.08), transparent 60%);
	pointer-events: none;
}
.bmx-textimg h3 {
	margin-bottom: 16px;
}
.bmx-textimg p {
	color: var(--bmx-text-2);
	line-height: 1.8;
	margin-bottom: 14px;
}

/* ---------- 21. CONTACT PAGE LAYOUT ---------- */
.bmx-contact {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 48px;
	margin-bottom: 60px;
}
.bmx-contact__info {
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius-lg);
	padding: 44px;
	position: relative;
	overflow: hidden;
}
.bmx-contact__info::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--bmx-grad-amber);
}
.bmx-contact__info h2 {
	margin-bottom: 14px;
}
.bmx-contact__info > p {
	color: var(--bmx-text-2);
	margin-bottom: 28px;
	line-height: 1.75;
}
.bmx-contact__row {
	display: flex;
	gap: 18px;
	align-items: flex-start;
	padding: 18px 0;
	border-top: 1px solid var(--bmx-border);
}
.bmx-contact__row:first-of-type {
	border-top: none;
}
.bmx-contact__row i {
	color: var(--bmx-amber);
	font-size: 1.1rem;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	flex-shrink: 0;
	border: 1px solid var(--bmx-amber);
	border-radius: 6px;
}
.bmx-contact__row strong {
	display: block;
	font-family: var(--bmx-font-mono);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--bmx-text-3);
	margin-bottom: 4px;
}
.bmx-contact__row span {
	color: var(--bmx-text);
}

.bmx-contact__form {
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border-strong);
	border-radius: var(--bmx-radius-lg);
	padding: 44px;
}

.bmx-fullmap {
	height: 420px;
	border-radius: var(--bmx-radius-lg);
	overflow: hidden;
	border: 1px solid var(--bmx-border-strong);
	position: relative;
	background: #0a0e15;
}

/* ---------- 23. UTILITIES ---------- */
.bmx-mt-0 {
	margin-top: 0;
}
.bmx-mt-1 {
	margin-top: 12px;
}
.bmx-mt-2 {
	margin-top: 24px;
}
.bmx-mt-3 {
	margin-top: 36px;
}
.bmx-mt-4 {
	margin-top: 48px;
}
.bmx-text-amber {
	color: var(--bmx-amber);
}
.bmx-text-malachite {
	color: var(--bmx-malachite);
}
.bmx-text-muted {
	color: var(--bmx-text-2);
}
.bmx-mono {
	font-family: var(--bmx-font-mono);
}

/* ---------- 24. DECORATIVE GLYPHS ---------- */
.bmx-glyph-line {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: var(--bmx-font-mono);
	font-size: 0.7rem;
	color: var(--bmx-text-3);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin: 18px 0;
}
.bmx-glyph-line::before,
.bmx-glyph-line::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--bmx-border-strong);
}

/* selection */
::selection {
	background: var(--bmx-amber);
	color: #0a0a0a;
}

/* scrollbar */
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-track {
	background: #05080d;
}
::-webkit-scrollbar-thumb {
	background: var(--bmx-surface-3);
	border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
	background: var(--bmx-amber);
}

/* focus visible */
:focus-visible {
	outline: 2px solid var(--bmx-amber);
	outline-offset: 3px;
}

/* small print */
.bmx-fine {
	font-size: 0.74rem;
	color: var(--bmx-text-3);
	font-family: var(--bmx-font-mono);
	letter-spacing: 0.1em;
}

/* card grid generic */
.bmx-cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
@media (max-width: 1080px) {
	.bmx-cards-3 {
		grid-template-columns: 1fr;
	}
}

.bmx-card {
	background: var(--bmx-surface);
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius);
	padding: 28px;
	transition: all 0.3s;
}
.bmx-card:hover {
	border-color: var(--bmx-amber);
	transform: translateY(-3px);
}
.bmx-card i {
	color: var(--bmx-amber);
	font-size: 1.6rem;
	margin-bottom: 14px;
}
.bmx-card h4 {
	font-family: var(--bmx-font-display);
	font-size: 1.15rem;
	margin-bottom: 10px;
}
.bmx-card p {
	color: var(--bmx-text-2);
	font-size: 0.88rem;
	line-height: 1.7;
}

/* ---------- 22. RESPONSIVE ---------- */
@media (max-width: 1160px) {
	.bmx-header__nav {
		display: none;
	}
	.bmx-burger {
		display: inline-flex;
	}
	.bmx-header {
		justify-content: space-between;
	}
}

@media (max-width: 1080px) {
	.bmx-hero__grid {
		grid-template-columns: 1fr;
	}
	.bmx-split {
		grid-template-columns: 1fr;
	}
	.bmx-split__left {
		position: static;
		border-right: none;
		border-bottom: 1px solid var(--bmx-border);
	}
	.bmx-bricks {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: auto;
	}
	.bmx-brick--lg,
	.bmx-brick--md,
	.bmx-brick--md2,
	.bmx-brick--md3 {
		grid-column: span 2;
		grid-row: auto;
	}
	.bmx-masonry {
		columns: 2;
	}
	.bmx-formgrid {
		grid-template-columns: 1fr;
	}
	.bmx-contact {
		grid-template-columns: 1fr;
	}
	.bmx-textimg {
		grid-template-columns: 1fr;
	}
	.bmx-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}
}

@media (max-width: 720px) {
	.bmx-wrap {
		padding: 0 20px;
	}
	.bmx-header {
		left: 10px;
		right: 10px;
		top: 10px;
	}
	.bmx-header__brand {
		padding: 14px 18px;
	}

	.bmx-section {
		padding: 72px 0;
	}
	.bmx-hero {
		padding-top: calc(var(--bmx-header-h) + 40px);
	}
	.bmx-hero__meta {
		grid-template-columns: 1fr;
		gap: 14px;
	}
	.bmx-split__left,
	.bmx-split__right {
		padding: 32px 10px;
	}
	.bmx-stack__head {
		grid-template-columns: 42px 1fr 26px;
		gap: 12px;
		padding: 18px;
	}
	.bmx-stack__inner {
		padding: 1rem 18px 22px;
	}
	.bmx-masonry {
		columns: 1;
	}
	.bmx-form,
	.bmx-contact__info,
	.bmx-contact__form {
		padding: 15px;
	}

	.bmx-radial__ring::before,
	.bmx-radial__ring::after {
		display: none;
	}
	.bmx-radial__center {
		inset: 30px;
	}
	.bmx-radial__title {
		font-size: 1.1rem;
	}
	.bmx-radial__text {
		font-size: 0.78rem;
	}
	.bmx-radial__btn {
		font-size: 0.68rem;
		padding: 8px 12px;
	}
	.bmx-footer__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.bmx-depth__meter {
		display: none;
	}
	.bmx-carousel__slide {
		padding: 28px;
	}

	.bmx-radial__btn {
		position: relative;
	}
	.bmx-radial__btn--e,
	.bmx-radial__btn--n,
	.bmx-radial__btn--s,
	.bmx-radial__btn--w {
		top: -42px;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
		margin-bottom: 1rem;
	}
}

@media (max-width: 480px) {
	.bmx-radial__btn--e,
	.bmx-radial__btn--n,
	.bmx-radial__btn--s,
	.bmx-radial__btn--w {
		top: -100px;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
	}

	.bmx-radial__center {
		border-radius: 0;
	}

	.bmx-radial__center {
		inset: 0;
	}
	.bmx-logo__mark,
	.bmx-logo__dot {
		display: none;
	}
	.bmx-mobile-nav__list a {
		font-size: 1.5rem;
	}

	.bmx-h-1 {
		font-size: 1.5rem;
	}

	.bmx-htabs__nav {
		flex-direction: column;
	}
}

@media (max-width: 375px) {
	.bmx-radial__btn--e,
	.bmx-radial__btn--n,
	.bmx-radial__btn--s,
	.bmx-radial__btn--w {
		top: -168px;
		left: auto;
		right: auto;
		bottom: auto;
		transform: none;
	}
	.bmx-radial__ring {
		width: auto;
		height: min(700px, 100vw);
	}

	.bmx-logo {
		font-size: 0.8rem;
	}

	.bmx-mobile-nav__list a {
		font-size: 1rem;
	}
}

:root {
	--bmx-bg: #070a0f;
	--bmx-card: #121620;
	--bmx-amber: #ffaa00;
	--bmx-green: #10b981;
	--bmx-text: #f1f5f9;
	--bmx-muted: #94a3b8;
	--bmx-border: rgba(255, 170, 0, 0.18);
	--bmx-border-dim: rgba(255, 255, 255, 0.06);
	--bmx-glow: rgba(255, 170, 0, 0.08);
	--bmx-glow-green: rgba(16, 185, 129, 0.1);
	--bmx-radius: 4px;
	--bmx-radius-lg: 8px;
	--bmx-font-head: 'Rajdhani', sans-serif;
	--bmx-font-body: 'Source Serif 4', serif;
	--bmx-font-mono: 'IBM Plex Mono', monospace;
}

.bmx-legal-wrapper {
	position: relative;
	z-index: 1;
	max-width: 860px;
	margin: 0 auto;
	padding: 56px 32px 80px;
}

/* ── Breadcrumb nav ─────────────────────────────────────────── */
.bmx-legal-nav {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--bmx-font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	color: var(--bmx-muted);
	text-transform: uppercase;
	margin-bottom: 48px;
}

.bmx-legal-nav a {
	color: var(--bmx-amber);
	text-decoration: none;
	transition: opacity 0.2s;
}

.bmx-legal-nav a:hover {
	opacity: 0.75;
}

.bmx-legal-nav-sep {
	color: rgba(148, 163, 184, 0.35);
	font-size: 14px;
}

/* ── Page header ────────────────────────────────────────────── */
.bmx-legal-header {
	margin-bottom: 48px;
	padding-bottom: 32px;
	border-bottom: 1px solid var(--bmx-border);
	position: relative;
}

.bmx-legal-header::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 80px;
	height: 2px;
	background: var(--bmx-amber);
	box-shadow: 0 0 12px rgba(255, 170, 0, 0.5);
}

.bmx-legal-badge {
	display: inline-block;
	font-family: var(--bmx-font-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bmx-amber);
	border: 1px solid var(--bmx-border);
	background: var(--bmx-glow);
	padding: 4px 12px;
	border-radius: 2px;
	margin-bottom: 20px;
}

.bmx-legal-title {
	font-family: var(--bmx-font-head);
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.01em;
	color: var(--bmx-text);
	margin-bottom: 16px;
}

.bmx-legal-title span {
	color: var(--bmx-amber);
}

.bmx-legal-meta {
	font-family: var(--bmx-font-mono);
	font-size: 12px;
	color: var(--bmx-muted);
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.bmx-legal-meta-item {
	display: flex;
	align-items: center;
	gap: 6px;
}

.bmx-legal-meta-item::before {
	content: '//';
	color: var(--bmx-amber);
	opacity: 0.6;
}

/* ── Introduction block ─────────────────────────────────────── */
.bmx-legal-intro {
	background: var(--bmx-card);
	border: 1px solid var(--bmx-border-dim);
	border-left: 3px solid var(--bmx-green);
	border-radius: var(--bmx-radius-lg);
	padding: 24px 28px;
	margin-bottom: 40px;
	font-size: 15px;
	color: var(--bmx-muted);
	line-height: 1.8;
}

/* ── Section cards ──────────────────────────────────────────── */
.bmx-legal-section {
	background: var(--bmx-card);
	border: 1px solid var(--bmx-border-dim);
	border-radius: var(--bmx-radius-lg);
	padding: 32px;
	margin-bottom: 20px;
	position: relative;
	transition:
		border-color 0.25s,
		box-shadow 0.25s;
}

.bmx-legal-section:hover {
	border-color: rgba(255, 170, 0, 0.22);
	box-shadow: 0 0 28px rgba(255, 170, 0, 0.05);
}

.bmx-legal-section-num {
	font-family: var(--bmx-font-mono);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--bmx-amber);
	opacity: 0.7;
	margin-bottom: 10px;
}

.bmx-legal-section-title {
	font-family: var(--bmx-font-head);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.03em;
	color: var(--bmx-text);
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.bmx-legal-section-icon {
	width: 28px;
	height: 28px;
	border-radius: 4px;
	background: var(--bmx-glow);
	border: 1px solid var(--bmx-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 13px;
}

.bmx-legal-section p {
	font-size: 15px;
	color: var(--bmx-muted);
	line-height: 1.8;
	margin-bottom: 10px;
}

.bmx-legal-section p:last-child {
	margin-bottom: 0;
}

.bmx-legal-section ul {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
}

.bmx-legal-section ul li {
	font-size: 14px;
	color: var(--bmx-muted);
	padding: 6px 0 6px 20px;
	position: relative;
	border-bottom: 1px solid var(--bmx-border-dim);
	line-height: 1.65;
}

.bmx-legal-section ul li:last-child {
	border-bottom: none;
}

.bmx-legal-section ul li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--bmx-amber);
	font-size: 11px;
	top: 8px;
}

/* ── Green accent section variant ──────────────────────────── */
.bmx-legal-section--green {
	border-left: 2px solid var(--bmx-green);
}

.bmx-legal-section--green .bmx-legal-section-icon {
	background: var(--bmx-glow-green);
	border-color: rgba(16, 185, 129, 0.25);
}

/* ── Contact block ──────────────────────────────────────────── */
.bmx-legal-contact {
	margin-top: 40px;
	padding: 28px 32px;
	background: linear-gradient(
		135deg,
		rgba(255, 170, 0, 0.06) 0%,
		rgba(16, 185, 129, 0.04) 100%
	);
	border: 1px solid var(--bmx-border);
	border-radius: var(--bmx-radius-lg);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
}

.bmx-legal-contact-label {
	font-family: var(--bmx-font-mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--bmx-amber);
	margin-bottom: 8px;
}

.bmx-legal-contact-title {
	font-family: var(--bmx-font-head);
	font-size: 18px;
	font-weight: 600;
	color: var(--bmx-text);
	margin-bottom: 6px;
}

.bmx-legal-contact-details {
	font-size: 13px;
	color: var(--bmx-muted);
	line-height: 1.9;
}

.bmx-legal-contact-details a {
	color: var(--bmx-green);
	text-decoration: none;
	transition: color 0.2s;
}

.bmx-legal-contact-details a:hover {
	color: var(--bmx-amber);
}

.bmx-legal-contact-seal {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid var(--bmx-border);
	background: var(--bmx-card);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: var(--bmx-font-mono);
	font-size: 8px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bmx-amber);
	text-align: center;
	gap: 2px;
	flex-shrink: 0;
}

.bmx-legal-contact-seal strong {
	font-size: 18px;
	font-weight: 700;
	font-family: var(--bmx-font-head);
	display: block;
	line-height: 1;
	letter-spacing: 0.05em;
}

/* ── Page links nav ─────────────────────────────────────────── */
.bmx-legal-pages {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.bmx-legal-page-link {
	font-family: var(--bmx-font-mono);
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 16px;
	border-radius: var(--bmx-radius);
	border: 1px solid var(--bmx-border-dim);
	color: var(--bmx-muted);
	transition: all 0.2s;
}

.bmx-legal-page-link:hover,
.bmx-legal-page-link--active {
	border-color: var(--bmx-amber);
	color: var(--bmx-amber);
	background: var(--bmx-glow);
}

/* ── Divider ────────────────────────────────────────────────── */
.bmx-legal-divider {
	height: 1px;
	background: linear-gradient(90deg, var(--bmx-amber), transparent);
	opacity: 0.2;
	margin: 8px 0 20px;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
	.bmx-legal-wrapper {
		padding: 36px 18px 60px;
	}
	.bmx-legal-section {
		padding: 22px 18px;
	}
	.bmx-legal-contact {
		grid-template-columns: 1fr;
	}
	.bmx-legal-contact-seal {
		display: none;
	}
}

@media (max-width: 480px) {
	.bmx-legal-title {
		font-size: 24px;
	}
}
