/**
 * About Us page — live parity (/about/).
 */

.bz-about {
	--bz-about-red: #a31820;
	--bz-about-red-hover: #86141b;
	--bz-about-ink: #111111;
	--bz-about-muted: #444444;
	--bz-about-band: #f3f3f3;
	--bz-about-dark: #141414;
	color: var(--bz-about-ink);
	background: #fff;
}

.bz-about-titleband {
	background: var(--bz-about-band);
	padding-block: var(--bz-section-pad-y);
	padding-inline: 0;
	text-align: center;
	border-bottom: 1px solid #e8e8e8;
}

.bz-about-titleband h1 {
	margin: 0;
	font-size: clamp(1.75rem, 3.5vw, 2.35rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: var(--bz-about-red);
	animation: bz-about-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bz-about-intro {
	padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.bz-about-intro__inner {
	max-width: 48rem;
}

.bz-about-intro h2 {
	margin: 0 0 1rem;
	font-size: clamp(1.55rem, 3.2vw, 2.15rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.2;
	color: var(--bz-about-ink);
	animation: bz-about-rise 0.65s 0.06s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bz-about-intro__rule {
	display: block;
	width: 3.25rem;
	height: 3px;
	margin: 0 auto 1.35rem;
	background: linear-gradient(90deg, transparent, var(--bz-about-ink) 20%, var(--bz-about-ink) 80%, transparent);
	position: relative;
	animation: bz-about-rise 0.65s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bz-about-intro__rule::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0.4rem;
	height: 0.4rem;
	border-radius: 50%;
	background: var(--bz-about-ink);
	transform: translate(-50%, -50%);
}

.bz-about-intro__copy {
	animation: bz-about-rise 0.65s 0.14s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.bz-about-intro__copy p {
	margin: 0 0 1rem;
	font-size: 1.02rem;
	line-height: 1.75;
	color: var(--bz-about-muted);
}

.bz-about-intro__copy p:last-child {
	margin-bottom: 0;
}

.bz-about-intro__copy strong {
	color: var(--bz-about-red);
	font-weight: 800;
}

.bz-about-feature {
	padding: 0 0 clamp(2.5rem, 5vw, 3.75rem);
}

.bz-about-feature__grid {
	display: grid;
	gap: clamp(1.5rem, 3vw, 2.75rem);
	align-items: center;
}

@media (min-width: 900px) {
	.bz-about-feature__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	}
}

.bz-about-feature__media {
	min-width: 0;
}

.bz-about-feature__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	border-radius: 0.65rem;
	background: #0d0d0d;
}

.bz-about-feature__eyebrow {
	margin: 0 0 0.55rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--bz-about-red);
}

.bz-about-feature__copy h2 {
	margin: 0 0 0.9rem;
	font-size: clamp(1.45rem, 2.8vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.bz-about-feature__copy p {
	margin: 0 0 1.35rem;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--bz-about-muted);
}

.bz-about-feature__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.bz-about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1.5rem;
	border-radius: 2rem;
	background: var(--bz-about-red);
	color: #fff !important;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none !important;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bz-about-btn:hover {
	background: var(--bz-about-red-hover);
	transform: translateY(-1px);
}

.bz-about-btn:focus-visible {
	outline: 2px solid var(--bz-about-red);
	outline-offset: 3px;
}

.bz-about-btn--ghost {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.55);
	color: #fff !important;
}

.bz-about-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
}

/* Dark community panel */
.bz-about-feature--dark {
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.bz-about-feature__panel {
	background: var(--bz-about-dark);
	border-radius: 1rem;
	padding: clamp(1.25rem, 3vw, 2rem);
	overflow: hidden;
}

.bz-about-feature--dark .bz-about-feature__copy h2 {
	color: #fff;
}

.bz-about-feature--dark .bz-about-feature__copy p {
	color: rgba(255, 255, 255, 0.82);
}

.bz-about-feature--dark .bz-about-feature__media img {
	border-radius: 0.55rem;
}

@keyframes bz-about-rise {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.bz-about-titleband h1,
	.bz-about-intro h2,
	.bz-about-intro__rule,
	.bz-about-intro__copy {
		animation: none !important;
	}

	.bz-about-btn {
		transition: none;
	}
}
/*bz-pad*/







