/* ==========================================================================
   Hero Section — Split-Concept Premium Landing
   ========================================================================== */

.benxi-hero {
	position: relative;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--benxi-white);
}

.site-main--front {
	min-height: auto;
}

/* --------------------------------------------------------------------------
   Background Layers
   -------------------------------------------------------------------------- */

.benxi-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.benxi-hero__bg-image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.25;
}

.benxi-hero__bg-gradient {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, #0a0e1f 0%, #111111 40%, #0d1528 70%, #111111 100%),
		radial-gradient(ellipse at 20% 50%, rgba(39, 53, 123, 0.25) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 30%, rgba(83, 129, 53, 0.15) 0%, transparent 45%);
}

.benxi-hero__bg-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.benxi-hero__bg-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	pointer-events: none;
}

.benxi-hero__bg-orb--1 {
	width: 500px;
	height: 500px;
	top: -10%;
	left: -5%;
	background: rgba(39, 53, 123, 0.35);
}

.benxi-hero__bg-orb--2 {
	width: 400px;
	height: 400px;
	bottom: 10%;
	right: -5%;
	background: rgba(83, 129, 53, 0.25);
}

.benxi-hero__bg-orb--3 {
	width: 300px;
	height: 300px;
	top: 40%;
	left: 45%;
	background: rgba(201, 168, 76, 0.08);
}

.benxi-hero__bg-lines {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, 0.5);
	pointer-events: none;
}

.benxi-hero__particles {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.benxi-hero__particle {
	position: absolute;
	width: 3px;
	height: 3px;
	background: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	animation: benxiParticleFloat 8s ease-in-out infinite;
}

@keyframes benxiParticleFloat {
	0%, 100% {
		transform: translateY(0) translateX(0);
		opacity: 0.2;
	}
	50% {
		transform: translateY(-30px) translateX(10px);
		opacity: 0.6;
	}
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.benxi-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 0.85fr;
	gap: clamp(2rem, 4vw, 4rem);
	align-items: center;
	width: 100%;
	padding-top: calc(var(--benxi-topbar-height) + var(--benxi-header-height) + 1.5rem);
	padding-bottom: 3rem;
	min-height: 100vh;
	min-height: 100dvh;
}

/* --------------------------------------------------------------------------
   Left Content
   -------------------------------------------------------------------------- */

.benxi-hero__content {
	max-width: 640px;
}

.benxi-hero__label {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1.25rem;
}

.benxi-hero__heading {
	font-size: clamp(2.25rem, 4.5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

.benxi-hero__heading-line {
	display: block;
}

.benxi-hero__heading-line:last-child {
	background: linear-gradient(135deg, var(--benxi-white) 0%, rgba(255, 255, 255, 0.75) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.benxi-hero__description {
	font-size: clamp(0.95rem, 1.5vw, 1.1rem);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 2rem;
	max-width: 520px;
}

/* Buttons */
.benxi-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2.5rem;
}

.benxi-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.9rem 2rem;
	font-size: 0.9rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	border-radius: 100px;
	transition:
		background 0.4s var(--benxi-ease),
		color 0.4s var(--benxi-ease),
		border-color 0.4s var(--benxi-ease),
		box-shadow 0.4s var(--benxi-ease),
		transform 0.35s var(--benxi-ease-out);
}

.benxi-hero__btn--primary {
	color: var(--benxi-white);
	background: var(--benxi-blue);
	box-shadow: 0 4px 24px rgba(39, 53, 123, 0.5);
}

.benxi-hero__btn--primary:hover,
.benxi-hero__btn--primary:focus-visible {
	background: linear-gradient(135deg, var(--benxi-blue), var(--benxi-green));
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(39, 53, 123, 0.55);
}

.benxi-hero__btn--outline {
	color: var(--benxi-white);
	background: transparent;
	border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.benxi-hero__btn--outline:hover,
.benxi-hero__btn--outline:focus-visible {
	border-color: var(--benxi-green);
	color: var(--benxi-white);
	background: rgba(83, 129, 53, 0.15);
	transform: translateY(-2px);
}

/* Stats */
.benxi-hero__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.benxi-hero__stat-number {
	display: block;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--benxi-white);
	line-height: 1.2;
}

.benxi-hero__stat-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 0.25rem;
	letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Right Showcase — Editorial Dual Frame
   -------------------------------------------------------------------------- */

.benxi-hero__showcase {
	position: relative;
	min-height: 540px;
	perspective: 1600px;
}

.benxi-hero-dual {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 0.85rem;
	position: relative;
	min-height: 540px;
	padding: 0.75rem;
	transform-style: preserve-3d;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Architectural outer frame */
.benxi-hero-dual__frame {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 6;
}

.benxi-hero-dual__corner {
	position: absolute;
	width: 28px;
	height: 28px;
	border-color: rgba(255, 255, 255, 0.2);
	border-style: solid;
}

.benxi-hero-dual__corner--tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.benxi-hero-dual__corner--tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.benxi-hero-dual__corner--bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.benxi-hero-dual__corner--br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

/* Center bridge */
.benxi-hero-dual__bridge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 8;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	pointer-events: none;
	height: 72%;
}

.benxi-hero-dual__bridge-line {
	width: 1px;
	flex: 1;
	background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.benxi-hero-dual__bridge-line--top {
	background: linear-gradient(180deg, transparent, var(--benxi-blue));
}

.benxi-hero-dual__bridge-line--bottom {
	background: linear-gradient(180deg, var(--benxi-green), transparent);
}

.benxi-hero-dual__bridge-node {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(10, 10, 15, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow:
		0 0 0 4px rgba(39, 53, 123, 0.15),
		0 0 0 8px rgba(83, 129, 53, 0.08),
		0 12px 40px rgba(0, 0, 0, 0.5);
	color: rgba(255, 255, 255, 0.7);
	flex-shrink: 0;
	animation: benxiBridgeGlow 5s ease-in-out infinite;
	transition:
		transform 0.6s cubic-bezier(0.34, 1.1, 0.64, 1),
		box-shadow 0.6s ease;
}

.benxi-hero-dual__bridge-label {
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 0.65rem;
	white-space: nowrap;
}

@keyframes benxiBridgeGlow {
	0%, 100% { box-shadow: 0 0 0 4px rgba(39, 53, 123, 0.15), 0 0 0 8px rgba(83, 129, 53, 0.08), 0 12px 40px rgba(0, 0, 0, 0.5); }
	50% { box-shadow: 0 0 0 4px rgba(39, 53, 123, 0.3), 0 0 0 8px rgba(83, 129, 53, 0.15), 0 12px 48px rgba(39, 53, 123, 0.2); }
}

/* Pillars */
.benxi-hero-pillar {
	position: relative;
	border-radius: 20px;
	overflow: visible;
	min-height: 540px;
	transition: opacity 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benxi-hero-pillar--construction {
	z-index: 2;
}

.benxi-hero-pillar--equipment {
	z-index: 1;
	margin-top: 2.75rem;
}

.benxi-hero-pillar__link {
	display: block;
	position: relative;
	height: 100%;
	min-height: 540px;
	color: var(--benxi-white);
	text-decoration: none;
	border-radius: 20px;
	overflow: hidden;
	transform: translate3d(0, 0, 0);
	transition:
		transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
		box-shadow 0.55s ease,
		filter 0.55s ease;
	box-shadow:
		0 24px 64px rgba(0, 0, 0, 0.4),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benxi-hero-pillar--construction .benxi-hero-pillar__link {
	box-shadow:
		0 24px 64px rgba(39, 53, 123, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benxi-hero-pillar--equipment .benxi-hero-pillar__link {
	box-shadow:
		0 24px 64px rgba(83, 129, 53, 0.25),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Media */
.benxi-hero-pillar__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.benxi-hero-pillar__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.06);
	animation: benxiKenBurns 20s ease-in-out infinite alternate;
	transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes benxiKenBurns {
	0% { transform: scale(1.06); }
	100% { transform: scale(1.1); }
}

.benxi-hero-pillar__shade {
	position: absolute;
	inset: 0;
	opacity: 1;
	background:
		linear-gradient(180deg, rgba(10, 12, 20, 0.55) 0%, transparent 30%),
		linear-gradient(0deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.25) 50%, transparent 75%);
	transition: opacity 0.55s ease;
}

.benxi-hero-pillar__glow {
	position: absolute;
	inset: 0;
	opacity: 0.55;
	transition: opacity 0.55s ease;
}

.benxi-hero-pillar__glow--blue {
	background:
		radial-gradient(ellipse at 0% 100%, rgba(39, 53, 123, 0.55) 0%, transparent 55%),
		linear-gradient(135deg, rgba(39, 53, 123, 0.2) 0%, transparent 50%);
}

.benxi-hero-pillar__glow--green {
	background:
		radial-gradient(ellipse at 100% 100%, rgba(83, 129, 53, 0.5) 0%, transparent 55%),
		linear-gradient(225deg, rgba(83, 129, 53, 0.18) 0%, transparent 50%);
}

/* Watermark index */
.benxi-hero-pillar__watermark {
	position: absolute;
	top: 0.5rem;
	right: 0.75rem;
	font-size: clamp(4rem, 8vw, 6rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.05em;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.07);
	z-index: 2;
	pointer-events: none;
	user-select: none;
	transition: -webkit-text-stroke-color 0.55s ease;
}

/* Logo */
.benxi-hero-pillar__logo-wrap {
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	z-index: 4;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.97);
	padding: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	transition: box-shadow 0.55s ease;
}

.benxi-hero-pillar__logo {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Floating glass card */
.benxi-hero-pillar__card {
	position: absolute;
	bottom: 1rem;
	left: 1rem;
	right: 1rem;
	z-index: 5;
	border-radius: 16px;
	overflow: hidden;
	background: rgba(12, 14, 22, 0.72);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
	transition:
		background 0.55s ease,
		border-color 0.55s ease,
		box-shadow 0.55s ease;
}

.benxi-hero-pillar__card-accent {
	position: absolute;
	top: 0;
	left: 0;
	width: 3px;
	height: 100%;
	transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.benxi-hero-pillar__card-accent--blue {
	background: linear-gradient(180deg, var(--benxi-blue), rgba(39, 53, 123, 0.2));
}

.benxi-hero-pillar__card-accent--green {
	background: linear-gradient(180deg, var(--benxi-green), rgba(83, 129, 53, 0.2));
}

.benxi-hero-pillar__card-body {
	padding: 1.15rem 1.25rem 1.25rem 1.4rem;
}

.benxi-hero-pillar__eyebrow {
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 0.35rem;
}

.benxi-hero-pillar--construction .benxi-hero-pillar__eyebrow {
	color: rgba(140, 165, 255, 0.85);
}

.benxi-hero-pillar--equipment .benxi-hero-pillar__eyebrow {
	color: rgba(160, 210, 130, 0.85);
}

.benxi-hero-pillar__title {
	font-size: 0.92rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: -0.01em;
	margin-bottom: 0.65rem;
	color: var(--benxi-white);
}

.benxi-hero-pillar__services {
	margin-bottom: 0.85rem;
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.benxi-hero-pillar__services li {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	padding-left: 0.85rem;
	position: relative;
	line-height: 1.4;
	transition: color 0.55s ease;
}

.benxi-hero-pillar__services li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 5px;
	height: 1px;
	background: rgba(255, 255, 255, 0.35);
}

.benxi-hero-pillar--construction .benxi-hero-pillar__services li::before {
	background: rgba(120, 145, 230, 0.7);
}

.benxi-hero-pillar--equipment .benxi-hero-pillar__services li::before {
	background: rgba(140, 200, 100, 0.7);
}

.benxi-hero-pillar__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 0.55rem 1.1rem;
	border-radius: 100px;
	transition:
		gap 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.5s ease,
		border-color 0.5s ease,
		color 0.5s ease,
		transform 0.5s cubic-bezier(0.34, 1.1, 0.64, 1) 0.12s,
		box-shadow 0.5s ease;
}

.benxi-hero-pillar--construction .benxi-hero-pillar__cta {
	background: rgba(39, 53, 123, 0.5);
	color: rgba(210, 218, 255, 1);
	border: 1px solid rgba(39, 53, 123, 0.6);
}

.benxi-hero-pillar--equipment .benxi-hero-pillar__cta {
	background: rgba(83, 129, 53, 0.45);
	color: rgba(210, 235, 190, 1);
	border: 1px solid rgba(83, 129, 53, 0.55);
}

.benxi-hero-pillar__cta svg {
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	flex-shrink: 0;
}

/* Hover — JS-controlled via .is-active / .has-active classes */
.benxi-hero-pillar.is-active {
	z-index: 10;
}

/* Active panel lifts */
.benxi-hero-pillar.is-active .benxi-hero-pillar__link {
	transform: translate3d(0, -14px, 0);
}

.benxi-hero-pillar--construction.is-active .benxi-hero-pillar__link {
	box-shadow:
		0 36px 80px rgba(39, 53, 123, 0.45),
		0 0 60px rgba(39, 53, 123, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.benxi-hero-pillar--equipment.is-active .benxi-hero-pillar__link {
	box-shadow:
		0 36px 80px rgba(83, 129, 53, 0.4),
		0 0 60px rgba(83, 129, 53, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Inactive sibling recedes */
.benxi-hero__showcase.has-active .benxi-hero-pillar:not(.is-active) {
	opacity: 0.72;
}

.benxi-hero__showcase.has-active .benxi-hero-pillar:not(.is-active) .benxi-hero-pillar__link {
	transform: translate3d(0, 8px, 0) scale(0.985);
	filter: brightness(0.85);
}

/* Active inner visuals — no extra transforms, opacity/color only */
.benxi-hero-pillar.is-active .benxi-hero-pillar__image {
	animation: none;
	transform: scale(1.09);
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__glow {
	opacity: 0.85;
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__shade {
	opacity: 0.9;
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__watermark {
	-webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__card {
	background: rgba(14, 16, 26, 0.88);
	border-color: rgba(255, 255, 255, 0.16);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.benxi-hero-pillar--construction.is-active .benxi-hero-pillar__card {
	box-shadow: 0 20px 50px rgba(39, 53, 123, 0.25);
}

.benxi-hero-pillar--equipment.is-active .benxi-hero-pillar__card {
	box-shadow: 0 20px 50px rgba(83, 129, 53, 0.2);
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__card-accent {
	width: 4px;
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__logo-wrap {
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__services li {
	color: rgba(255, 255, 255, 0.78);
}

.benxi-hero-pillar--construction.is-active .benxi-hero-pillar__cta {
	background: var(--benxi-blue);
	border-color: var(--benxi-blue);
	color: var(--benxi-white);
	box-shadow: 0 4px 20px rgba(39, 53, 123, 0.45);
}

.benxi-hero-pillar--equipment.is-active .benxi-hero-pillar__cta {
	background: var(--benxi-green);
	border-color: var(--benxi-green);
	color: var(--benxi-white);
	box-shadow: 0 4px 20px rgba(83, 129, 53, 0.4);
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__cta {
	gap: 0.6rem;
}

.benxi-hero-pillar.is-active .benxi-hero-pillar__cta svg {
	transform: translateX(3px);
}

/* Bridge reacts to active panel */
.benxi-hero__showcase.has-active .benxi-hero-dual__bridge-node {
	transform: scale(1.08);
	animation-play-state: paused;
	transition: transform 0.55s ease, box-shadow 0.55s ease;
}

.benxi-hero__showcase.has-active-construction .benxi-hero-dual__bridge-node {
	box-shadow:
		0 0 0 4px rgba(39, 53, 123, 0.3),
		0 0 0 8px rgba(83, 129, 53, 0.08),
		0 14px 40px rgba(39, 53, 123, 0.25);
}

.benxi-hero__showcase.has-active-equipment .benxi-hero-dual__bridge-node {
	box-shadow:
		0 0 0 4px rgba(39, 53, 123, 0.08),
		0 0 0 8px rgba(83, 129, 53, 0.28),
		0 14px 40px rgba(83, 129, 53, 0.22);
}

/* --------------------------------------------------------------------------
   Reveal Animations
   -------------------------------------------------------------------------- */

.benxi-hero__reveal {
	opacity: 0;
	transform: translateY(30px);
	transition:
		opacity 0.8s var(--benxi-ease-out),
		transform 0.8s var(--benxi-ease-out);
}

.benxi-hero--loaded .benxi-hero__reveal {
	opacity: 1;
	transform: translateY(0);
}

.benxi-hero--loaded .benxi-hero__reveal--delay-1 { transition-delay: 0.1s; }
.benxi-hero--loaded .benxi-hero__reveal--delay-2 { transition-delay: 0.2s; }
.benxi-hero--loaded .benxi-hero__reveal--delay-3 { transition-delay: 0.35s; }

.benxi-hero__reveal--stat {
	transform: translateY(20px);
}

.benxi-hero--loaded .benxi-hero__reveal--stat {
	transition-delay: calc(0.45s + var(--stat-index, 0) * 0.1s);
}

.benxi-hero__reveal--card-left {
	opacity: 0;
	transform: translateX(-60px) translateY(20px);
}

.benxi-hero__reveal--card-right {
	opacity: 0;
	transform: translateX(60px) translateY(40px);
}

.benxi-hero--loaded .benxi-hero__reveal--card-left {
	opacity: 1;
	transform: translateX(0) translateY(0);
	transition-delay: 0.5s;
	transition-duration: 1s;
}

.benxi-hero--loaded .benxi-hero__reveal--card-right {
	opacity: 1;
	transform: translateX(0) translateY(0);
	transition-delay: 0.65s;
	transition-duration: 1s;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1100px) {
	.benxi-hero__inner {
		grid-template-columns: 1fr;
		gap: 3rem;
		padding-top: calc(var(--benxi-header-height) + 2rem);
	}

	.benxi-hero__content {
		max-width: 100%;
		text-align: center;
		margin-inline: auto;
	}

	.benxi-hero__description {
		margin-inline: auto;
	}

	.benxi-hero__actions {
		justify-content: center;
	}

	.benxi-hero__stats {
		max-width: 480px;
		margin-inline: auto;
	}

	.benxi-hero__showcase {
		min-height: auto;
		max-width: 580px;
		margin-inline: auto;
		width: 100%;
	}

	.benxi-hero-dual {
		min-height: 500px;
	}

	.benxi-hero-pillar,
	.benxi-hero-pillar__link {
		min-height: 500px;
	}

	.benxi-hero-pillar--equipment {
		margin-top: 2rem;
	}
}

@media (max-width: 768px) {
	.benxi-hero__inner {
		padding-top: calc(var(--benxi-header-height) + 1rem);
		padding-bottom: 2rem;
	}

	.benxi-hero__stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.benxi-hero__showcase {
		min-height: auto;
		perspective: none;
	}

	.benxi-hero-dual {
		grid-template-columns: 1fr;
		gap: 1rem;
		min-height: auto;
		padding: 0.5rem;
	}

	.benxi-hero-dual__bridge,
	.benxi-hero-dual__frame {
		display: none;
	}

	.benxi-hero-pillar--equipment {
		margin-top: 0;
	}

	.benxi-hero-pillar,
	.benxi-hero-pillar__link {
		min-height: 400px;
	}

	.benxi-hero-pillar.is-active .benxi-hero-pillar__link {
		transform: translate3d(0, -6px, 0);
	}

	.benxi-hero__showcase.has-active .benxi-hero-pillar:not(.is-active) {
		opacity: 1;
	}

	.benxi-hero__showcase.has-active .benxi-hero-pillar:not(.is-active) .benxi-hero-pillar__link {
		transform: none;
		filter: none;
	}

	.benxi-hero-pillar__image {
		animation: none;
		transform: scale(1.06);
	}

	.benxi-hero-pillar__watermark {
		font-size: 3.5rem;
	}
}

@media (max-width: 480px) {
	.benxi-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.benxi-hero__btn {
		width: 100%;
	}

	.benxi-hero__label {
		font-size: 0.6rem;
		letter-spacing: 0.15em;
	}
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.benxi-hero__reveal,
	.benxi-hero-pillar {
		opacity: 1;
		transform: none;
		transition: none;
		animation: none;
	}

	.benxi-hero-dual__bridge-node {
		animation: none;
	}

	.benxi-hero-pillar__image {
		animation: none;
		transform: scale(1.05);
	}

	.benxi-hero__particle {
		animation: none;
	}
}
