/**
 * MECHA-X homepage — dark neon e-commerce layout
 */

:root {
	--mecha-bg: #030508;
	--mecha-bg-hero: linear-gradient(135deg, rgba(10, 22, 40, 0.78) 0%, rgba(3, 5, 8, 0.72) 55%, rgba(0, 0, 0, 0.78) 100%);
	--mecha-cyan: #00e5ff;
	--mecha-cyan-dim: #00b8d4;
	--mecha-pink: #ff2d95;
	--mecha-pink-dark: #e91e7a;
	--mecha-text: #e8f4ff;
	--mecha-muted: #7a8fa6;
	--mecha-border: rgba(0, 229, 255, 0.45);
	--mecha-glow-cyan: 0 0 20px rgba(0, 229, 255, 0.35), 0 0 40px rgba(0, 229, 255, 0.15);
	--mecha-glow-pink: 0 0 16px rgba(255, 45, 149, 0.5);
	--mecha-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body.mecha-x-front {
	background: var(--mecha-bg) !important;
	color: var(--mecha-text);
}

body.mecha-x-front #page,
body.mecha-x-front .site-content,
body.mecha-x-front .ast-container {
	background: transparent !important;
}

body.mecha-x-front .entry-header,
body.mecha-x-front .ast-single-post .entry-header {
	display: none !important;
}

body.mecha-x-front .site-footer {
	margin-top: 0;
}

.mecha-x {
	font-family: var(--mecha-font);
	overflow-x: hidden;
	position: relative;
	isolation: isolate;
}

.mecha-x > * {
	position: relative;
	z-index: 2;
}

.animated-background {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	opacity: 1;
}

.ab-glow {
	position: absolute;
	border-radius: 999px;
	filter: blur(58px);
	opacity: 0.72;
	mix-blend-mode: screen;
	animation: abDrift 16s ease-in-out infinite alternate;
}

.ab-glow--one {
	top: 6%;
	left: -8%;
	width: 46vw;
	height: 26vw;
	background: radial-gradient(circle, rgba(0, 229, 255, 1) 0%, rgba(0, 229, 255, 0) 75%);
	animation-duration: 18s;
}

.ab-glow--two {
	top: 28%;
	right: -10%;
	width: 44vw;
	height: 24vw;
	background: radial-gradient(circle, rgba(168, 85, 247, 0.95) 0%, rgba(168, 85, 247, 0) 75%);
	animation-duration: 14s;
	animation-direction: alternate-reverse;
}

.ab-glow--three {
	bottom: 2%;
	left: 18%;
	width: 38vw;
	height: 20vw;
	background: radial-gradient(circle, rgba(44, 197, 255, 0.9) 0%, rgba(44, 197, 255, 0) 76%);
	animation-duration: 22s;
}

.ab-glow--four {
	bottom: 14%;
	right: 8%;
	width: 30vw;
	height: 18vw;
	background: radial-gradient(circle, rgba(255, 45, 149, 0.85) 0%, rgba(255, 45, 149, 0) 76%);
	animation-duration: 12s;
	animation-direction: alternate-reverse;
}

.ab-grid-shimmer {
	position: absolute;
	inset: -20% -10%;
	background-image:
		linear-gradient(rgba(0, 229, 255, 0.12) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 229, 255, 0.12) 1px, transparent 1px);
	background-size: 64px 64px, 64px 64px;
	mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.95), transparent 72%);
	opacity: 0.55;
	animation: abGridFloat 10s linear infinite;
}

.ab-center-rotor {
	position: absolute;
	inset: 16% 20%;
	border-radius: 999px;
	background:
		conic-gradient(
			from 0deg,
			rgba(0, 229, 255, 0.02) 0deg,
			rgba(0, 229, 255, 0.35) 40deg,
			rgba(168, 85, 247, 0.35) 90deg,
			rgba(255, 45, 149, 0.24) 145deg,
			rgba(0, 229, 255, 0.03) 200deg,
			rgba(0, 229, 255, 0.02) 360deg
		);
	filter: blur(18px);
	opacity: 0.8;
	animation: abRotor 8s linear infinite;
}

.ab-scanlines {
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			180deg,
			rgba(255, 255, 255, 0) 0,
			rgba(255, 255, 255, 0) 3px,
			rgba(0, 229, 255, 0.045) 4px,
			rgba(255, 255, 255, 0) 6px
		);
	opacity: 0.5;
	mix-blend-mode: screen;
	animation: abScan 3.5s linear infinite;
}

.ab-hero-highlight {
	position: absolute;
	left: 0;
	right: 0;
	top: 70px;
	height: 460px;
	background:
		linear-gradient(110deg, rgba(0, 229, 255, 0) 0%, rgba(0, 229, 255, 0.22) 45%, rgba(0, 229, 255, 0) 85%),
		linear-gradient(290deg, rgba(255, 45, 149, 0) 0%, rgba(255, 45, 149, 0.18) 55%, rgba(255, 45, 149, 0) 100%);
	filter: blur(10px);
	opacity: 0.8;
	animation: abHeroSweep 5s ease-in-out infinite alternate;
}

@keyframes abDrift {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		transform: translate3d(4%, -4%, 0) scale(1.08);
	}
}

@keyframes abGridFloat {
	0% {
		background-position: 0 0, 0 0;
		opacity: 0.28;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		background-position: 80px 80px, 80px 80px;
		opacity: 0.28;
	}
}

@keyframes abRotor {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.05);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes abScan {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: 0 120px;
	}
}

@keyframes abHeroSweep {
	0% {
		transform: translateX(-6%) scale(1);
		opacity: 0.45;
	}
	100% {
		transform: translateX(8%) scale(1.05);
		opacity: 0.9;
	}
}

.mecha-topnav {
	display: flex !important;
	align-items: center;
	justify-content: flex-start;
	gap: 1rem;
	padding: 0.7rem 1rem 1rem;
	margin: 0 auto 0.5rem;
	max-width: 1400px;
	border-bottom: 1px solid rgba(0, 229, 255, 0.18);
	position: relative;
	z-index: 5;
}

.mecha-topnav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0.45rem 1rem;
	color: #d9e8ff;
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border: 1px solid rgba(0, 229, 255, 0.22);
	border-radius: 999px;
	background: rgba(3, 12, 24, 0.65);
	transition: all 0.2s ease;
}

.mecha-topnav a:hover {
	color: #031018;
	background: linear-gradient(90deg, #00e5ff, #2cc5ff);
	border-color: rgba(0, 229, 255, 0.7);
	text-shadow: var(--mecha-glow-cyan);
	box-shadow: 0 0 20px rgba(0, 229, 255, 0.35);
}

/* Header */
.mecha-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #000;
	border-bottom: 1px solid rgba(0, 229, 255, 0.12);
}

.mecha-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1rem 0;
	max-width: 1400px;
	margin: 0 auto;
}

.mecha-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: #fff;
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.06em;
}

.mecha-logo__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: linear-gradient(135deg, #3d5afe, #7c4dff);
	border-radius: 6px;
	font-size: 1.1rem;
}

.mecha-nav {
	display: flex;
	gap: 2rem;
}

.mecha-nav__link {
	color: var(--mecha-text);
	text-decoration: none;
	font-size: 1.35rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.1em !important;
	line-height: 1.2;
	transition: color 0.2s, text-shadow 0.2s;
}

.mecha-nav__link:hover {
	color: var(--mecha-cyan);
	text-shadow: var(--mecha-glow-cyan);
}

.mecha-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.mecha-icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--mecha-cyan);
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s, box-shadow 0.2s;
}

.mecha-icon-btn:hover {
	background: rgba(0, 229, 255, 0.08);
	box-shadow: var(--mecha-glow-cyan);
}

.mecha-cart-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	font-size: 0.65rem;
	font-weight: 700;
	line-height: 18px;
	text-align: center;
	color: #fff;
	background: var(--mecha-pink);
	border-radius: 999px;
	box-shadow: var(--mecha-glow-pink);
}

.mecha-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: transparent;
	border: 1px solid var(--mecha-border);
	border-radius: 4px;
	cursor: pointer;
}

.mecha-nav-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--mecha-cyan);
}

.mecha-mobile-nav {
	display: none;
	flex-direction: column;
	gap: 0.75rem;
	padding: 1rem 1.5rem 1.25rem;
	background: #0a0a0a;
	border-top: 1px solid var(--mecha-border);
}

.mecha-mobile-nav[hidden] {
	display: none !important;
}

.mecha-mobile-nav.is-open {
	display: flex !important;
}

.mecha-mobile-nav a {
	color: var(--mecha-text);
	text-decoration: none;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}

/* Hero */
.mecha-hero {
	background: linear-gradient(135deg, rgba(10, 22, 40, 0.45) 0%, rgba(3, 5, 8, 0.35) 55%, rgba(0, 0, 0, 0.45) 100%);
	padding: 3rem 0 4rem;
	backdrop-filter: blur(1px);
	position: relative;
}

.mecha-hero__viewport {
	overflow: hidden;
	position: relative;
}

.mecha-hero__track {
	display: flex;
	transition: transform 0.75s ease-in-out;
	will-change: transform;
}

.mecha-hero__slide {
	flex: 0 0 100%;
	min-width: 100%;
	width: 100%;
}

.mecha-hero__slide .mecha-hero__inner {
	width: 100%;
}

.mecha-hero__dots {
	display: flex;
	justify-content: center;
	gap: 0.55rem;
	margin-top: 1.5rem;
}

.mecha-hero__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 1px solid rgba(0, 229, 255, 0.45);
	border-radius: 999px;
	background: transparent;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.mecha-hero__dot.is-active {
	background: var(--mecha-cyan);
	box-shadow: 0 0 12px rgba(0, 229, 255, 0.55);
	transform: scale(1.15);
}

.mecha-hero__dot:hover {
	background: rgba(0, 229, 255, 0.35);
}

.mecha-hero__nav {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 3;
}

.mecha-hero__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	padding: 0;
	font-size: 1.2rem;
	line-height: 1;
	color: var(--mecha-cyan);
	background: rgba(3, 5, 8, 0.75);
	border: 1px solid var(--mecha-border);
	border-radius: 4px;
	cursor: pointer;
	pointer-events: auto;
	box-shadow: var(--mecha-glow-cyan);
	transition: background 0.2s ease, transform 0.2s ease;
}

.mecha-hero__arrow--prev {
	left: 0.75rem;
}

.mecha-hero__arrow--next {
	right: 0.75rem;
}

.mecha-hero__arrow:hover {
	background: rgba(0, 229, 255, 0.15);
	transform: translateY(-50%) scale(1.05);
}

.mecha-hero__inner {
	display: grid;
	grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
	gap: 2rem;
	align-items: center;
	max-width: 1500px;
	margin: 0 auto;
}

.mecha-badge {
	display: inline-block;
	padding: 0.4rem 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	border-radius: 999px;
}

.mecha-badge--cyan {
	color: var(--mecha-cyan);
	border: 1px solid var(--mecha-border);
	box-shadow: var(--mecha-glow-cyan);
	background: rgba(0, 229, 255, 0.06);
}

.mecha-hero__title {
	margin: 1.25rem 0 1rem;
	font-size: clamp(1.75rem, 4vw, 3.25rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.mecha-hero__title-line {
	display: block;
	color: #fff;
}

.mecha-hero__title-line--gradient {
	background: linear-gradient(90deg, var(--mecha-cyan) 0%, #a855f7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.mecha-hero__desc {
	max-width: 480px;
	margin: 0 0 1.75rem;
	font-size: 1rem;
	line-height: 1.65;
	color: var(--mecha-muted);
}

.mecha-hero__ctas {
	display: flex;
	flex-wrap: nowrap;
	gap: 0.75rem;
	align-items: center;
}

.mecha-hero__ctas .mecha-btn {
	flex: 0 1 auto;
	white-space: nowrap;
}

.mecha-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.75rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	border-radius: 4px;
	transition: transform 0.2s, box-shadow 0.2s;
}

.mecha-btn--primary,
.mecha-btn--primary:visited {
	color: #001018 !important;
	background: linear-gradient(90deg, var(--mecha-cyan) 0%, var(--mecha-cyan-dim) 100%);
	box-shadow: var(--mecha-glow-cyan);
}

.mecha-btn--primary:hover,
.mecha-btn--primary:focus {
	transform: translateY(-2px);
	box-shadow: 0 0 28px rgba(0, 229, 255, 0.55);
	color: #000 !important;
}

.mecha-btn--outline,
.mecha-btn--outline:visited {
	color: var(--mecha-cyan) !important;
	border: 1px solid var(--mecha-border);
	background: transparent;
	box-shadow: var(--mecha-glow-cyan);
}

.mecha-btn--outline:hover,
.mecha-btn--outline:focus {
	background: rgba(0, 229, 255, 0.08);
	color: #fff !important;
}

.mecha-hero__visual {
	position: relative;
	width: 100%;
	justify-self: stretch;
}

.mecha-hero__frame {
	border: 1px solid var(--mecha-border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--mecha-glow-cyan);
	aspect-ratio: 16 / 11;
	width: 100%;
	max-height: 760px;
}

.mecha-hero__frame img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mecha-hero__placeholder {
	width: 100%;
	height: 100%;
	min-height: 320px;
	background: linear-gradient(135deg, #1a2744, #0d1117);
}

.mecha-promo-badge {
	display: none !important;
}

.mecha-promo-badge__big {
	display: block;
	font-size: 1.35rem;
	font-weight: 800;
	color: #fff;
}

.mecha-promo-badge__small {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.95);
}

/* Products */
.mecha-products {
	padding: 2rem 0 5rem;
	background: linear-gradient(180deg, rgba(3, 5, 8, 0.55) 0%, rgba(3, 5, 8, 0.8) 100%);
}

.mecha-products + .mecha-products {
	margin-top: 0;
	padding-top: 3rem;
	background: linear-gradient(180deg, rgba(3, 5, 8, 0.8) 0%, rgba(3, 5, 8, 0.95) 100%);
}

.mecha-products__inner {
	max-width: 1400px;
	margin: 0 auto;
}

.mecha-products__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.75rem;
}

.mecha-products--flipped .mecha-products__head {
	flex-direction: row-reverse;
	margin-bottom: 0;
	margin-top: 1.75rem;
}

.mecha-section-title {
	margin: 0;
	font-size: 1.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--mecha-cyan);
	text-transform: uppercase;
}

.mecha-section-sub {
	margin: 0.35rem 0 0;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	color: var(--mecha-muted);
	text-transform: uppercase;
}

.mecha-carousel-nav {
	display: flex;
	gap: 0.5rem;
}

.mecha-carousel-btn {
	width: 40px;
	height: 40px;
	font-size: 1.1rem;
	color: var(--mecha-cyan);
	background: transparent;
	border: 1px solid var(--mecha-border);
	border-radius: 4px;
	cursor: pointer;
	box-shadow: var(--mecha-glow-cyan);
	transition: background 0.2s;
}

.mecha-carousel-btn:hover {
	background: rgba(0, 229, 255, 0.12);
}

.mecha-carousel {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
}

.mecha-carousel::-webkit-scrollbar {
	display: none;
}

.mecha-card {
	flex: 0 0 calc((100% - 1.25rem) / 2);
	min-width: calc((100% - 1.25rem) / 2);
	max-width: calc((100% - 1.25rem) / 2);
	scroll-snap-align: start;
}

.mecha-card__image-wrap {
	position: relative;
	display: block;
	border: 1px solid var(--mecha-border);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: var(--mecha-glow-cyan);
	aspect-ratio: 4 / 5;
}

.mecha-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s;
}

.mecha-card:hover .mecha-card__image-wrap img {
	transform: scale(1.04);
}

.mecha-card__badge {
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 2;
	padding: 0.3rem 0.55rem;
	font-size: 0.6rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: #fff;
	background: var(--mecha-pink);
	border-radius: 3px;
	box-shadow: var(--mecha-glow-pink);
}

.mecha-card__placeholder {
	width: 100%;
	height: 100%;
	background: #111820;
}

.mecha-card__body {
	padding: 1rem 0.25rem 0;
}

.mecha-card__title {
	margin: 0 0 0.35rem;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.mecha-card__title a {
	color: #fff;
	text-decoration: none;
}

.mecha-card__title a:hover {
	color: var(--mecha-cyan);
}

.mecha-card__rating {
	margin: 0 0 0.35rem;
	font-size: 0.8rem;
	color: var(--mecha-cyan);
}

.mecha-card__rating span:first-child {
	margin-right: 0.2rem;
}

.mecha-card__reviews {
	color: var(--mecha-muted);
}

.mecha-card__price {
	margin: 0;
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--mecha-cyan);
}

.mecha-card__price del {
	color: var(--mecha-muted);
	font-size: 0.9rem;
	margin-right: 0.35rem;
}

.mecha-card__price ins {
	text-decoration: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
	.mecha-nav {
		display: none;
	}

	.mecha-nav-toggle {
		display: flex;
	}

	.mecha-hero__inner {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 1.25rem;
		align-items: center;
		max-width: 100%;
		padding-inline: 1rem;
	}

	.mecha-hero__title {
		margin-top: 0.75rem;
		font-size: clamp(1.15rem, 3.2vw, 2rem);
	}

	.mecha-hero__desc {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-bottom: 1rem;
		max-width: none;
	}

	.mecha-hero__ctas {
		gap: 0.5rem;
	}

	.mecha-hero__ctas .mecha-btn {
		padding: 0.65rem 0.9rem;
		font-size: 0.72rem;
	}

	.mecha-hero__visual {
		max-width: 100%;
		margin: 0;
	}

	.mecha-hero__frame {
		aspect-ratio: 4 / 5;
		max-height: none;
	}
}

@media (max-width: 480px) {
	.mecha-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
		gap: 0.75rem;
	}

	.mecha-badge {
		font-size: 0.62rem;
		padding: 0.3rem 0.65rem;
	}

	.mecha-hero__title {
		font-size: clamp(0.95rem, 4.5vw, 1.35rem);
		margin: 0.5rem 0 0.45rem;
	}

	.mecha-hero__desc {
		font-size: 0.68rem;
		line-height: 1.45;
		margin-bottom: 0.65rem;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.mecha-hero__ctas .mecha-btn {
		padding: 0.55rem 0.65rem;
		font-size: 0.62rem;
		letter-spacing: 0.04em;
	}

	.mecha-hero__arrow {
		width: 34px;
		height: 34px;
		font-size: 1rem;
	}

	.mecha-hero__arrow--prev {
		left: 0.35rem;
	}

	.mecha-hero__arrow--next {
		right: 0.35rem;
	}
}

@media (max-width: 640px) {
	.mecha-topnav {
		gap: 0.55rem;
		flex-wrap: wrap;
		justify-content: center;
		padding-inline: 0.75rem;
	}

	.mecha-topnav a {
		font-size: 0.74rem;
		padding: 0.35rem 0.7rem;
	}

	.mecha-header__inner {
		flex-wrap: wrap;
	}

	.mecha-logo__text {
		font-size: 1rem;
	}

	.mecha-hero {
		padding: 2rem 0 3rem;
	}

	.mecha-card {
		flex: 0 0 100%;
		min-width: 100%;
		max-width: 100%;
	}

	.mecha-divisions__grid {
		grid-template-columns: 1fr;
	}

	.mecha-division-card--featured {
		transform: none;
	}
}

/* ── SELECT DIVISION ─────────────────────────────── */

.mecha-divisions {
	padding: 4rem 0 6rem;
}

.mecha-divisions__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.mecha-divisions__head {
	text-align: center;
	margin-bottom: 2.5rem;
}

.mecha-divisions__title {
	margin: 0;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mecha-cyan);
}

.mecha-divisions__sub {
	margin: 0.4rem 0 0;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mecha-muted);
}

.mecha-divisions__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	align-items: center;
}

.mecha-division-card {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 10px;
	overflow: hidden;
	text-decoration: none;
	aspect-ratio: 3 / 4;
	border: 1px solid rgba(0, 229, 255, 0.2);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mecha-division-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 0 32px rgba(0, 229, 255, 0.25);
}

.mecha-division-card--featured {
	transform: scale(1.06);
}

.mecha-division-card--featured:hover {
	transform: scale(1.06) translateY(-6px);
}

.mecha-division-card__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transition: transform 0.4s ease;
}

.mecha-division-card:hover .mecha-division-card__bg {
	transform: scale(1.05);
}

.mecha-division-card__overlay {
	position: absolute;
	inset: 0;
}

/* Per-colour overlays */
.mecha-division-card--purple .mecha-division-card__overlay {
	background: linear-gradient(
		160deg,
		rgba(120, 60, 220, 0.55) 0%,
		rgba(80, 20, 160, 0.7) 100%
	);
}

.mecha-division-card--pink .mecha-division-card__overlay {
	background: linear-gradient(
		160deg,
		rgba(255, 80, 60, 0.5) 0%,
		rgba(220, 50, 100, 0.7) 100%
	);
}

.mecha-division-card--blue .mecha-division-card__overlay {
	background: linear-gradient(
		160deg,
		rgba(0, 140, 220, 0.45) 0%,
		rgba(0, 80, 180, 0.65) 100%
	);
}

.mecha-division-card--cyan .mecha-division-card__overlay {
	background: linear-gradient(
		160deg,
		rgba(0, 229, 255, 0.5) 0%,
		rgba(0, 180, 200, 0.7) 100%
	);
}

.mecha-division-card__body {
	position: relative;
	z-index: 2;
	margin-top: auto;
	padding: 1.5rem 1.25rem 1.5rem;
}

.mecha-division-card__name {
	margin: 0 0 0.3rem;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.mecha-division-card__count {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
}

.mecha-division-card__btn {
	display: inline-block;
	padding: 0.45rem 1.1rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(0, 0, 0, 0.45);
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 4px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mecha-division-card:hover .mecha-division-card__btn {
	background: rgba(0, 229, 255, 0.85);
	border-color: var(--mecha-cyan);
	color: #000;
}

/* Responsive grid for divisions */
@media (max-width: 1024px) {
	.mecha-divisions__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media (max-width: 640px) {
	.mecha-divisions__grid {
		grid-template-columns: 1fr;
		gap: 0.875rem;
	}
	
	.mecha-division-card--featured {
		transform: scale(1);
	}
	
	.mecha-division-card--featured:hover {
		transform: scale(1) translateY(-6px);
	}
}

/* ── CUSTOMIZE YOUR ORDER ─────────────────────────── */

.mecha-contact {
	padding: 6rem 1rem 7rem;
}

.mecha-contact__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	max-width: 680px;
	margin: 0 auto;
}

.mecha-contact__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	background: linear-gradient(135deg, rgba(0, 140, 220, 0.35), rgba(0, 229, 255, 0.2));
	border: 1px solid rgba(0, 229, 255, 0.5);
	border-radius: 18px;
	color: var(--mecha-cyan);
	margin-bottom: 2rem;
	box-shadow: 0 0 36px rgba(0, 229, 255, 0.2);
}

.mecha-contact__title {
	margin: 0 0 1.1rem;
	font-size: 2.4rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--mecha-cyan);
	line-height: 1.15;
}

.mecha-contact__desc {
	margin: 0 0 2.5rem;
	max-width: 520px;
	font-size: 1rem;
	line-height: 1.75;
	color: var(--mecha-text);
	opacity: 0.82;
}

.mecha-contact__channels {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
	width: 100%;
}

.mecha-channel {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	min-width: 180px;
	padding: 0.9rem 1.6rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 8px;
	border: 1px solid transparent;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mecha-channel:hover {
	transform: translateY(-4px);
}

.mecha-channel__icon {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

/* Messenger — blue */
.mecha-channel--messenger {
	background: linear-gradient(135deg, #0084ff, #0066cc);
	color: #fff;
	border-color: rgba(0, 132, 255, 0.4);
}
.mecha-channel--messenger:hover {
	box-shadow: 0 6px 28px rgba(0, 132, 255, 0.5);
	filter: brightness(1.12);
	color: #fff;
}

/* Discord — purple/indigo */
.mecha-channel--discord {
	background: linear-gradient(135deg, #5865f2, #4752c4);
	color: #fff;
	border-color: rgba(88, 101, 242, 0.4);
}
.mecha-channel--discord:hover {
	box-shadow: 0 6px 28px rgba(88, 101, 242, 0.5);
	filter: brightness(1.12);
	color: #fff;
}

/* TikTok — dark with cyan trim */
.mecha-channel--tiktok {
	background: linear-gradient(135deg, #111118, #1c1c2e);
	color: #fff;
	border-color: rgba(0, 229, 255, 0.35);
}
.mecha-channel--tiktok:hover {
	box-shadow: 0 6px 28px rgba(0, 229, 255, 0.4);
	filter: brightness(1.18);
	color: #fff;
}

.mecha-contact__note {
	margin: 0;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--mecha-muted);
}
