/**
 * FixSteel Home module — industrial company page.
 */

body.fsp-home {
	margin: 0;
	padding-inline: 0;
	overflow-x: clip;
	max-width: 100%;
	width: 100%;
}

.fsp-hhub {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
	box-sizing: border-box;
	--fsp-hhub-bg: #0f1419;
	--fsp-hhub-surface: #f4f6f8;
	--fsp-hhub-text: #0f172a;
	--fsp-hhub-muted: #64748b;
	--fsp-hhub-accent: var(--fsp-module-accent, #1e40af);
	--fsp-hhub-orange: var(--fsp-brand-orange, #f97316);
	--fsp-hhub-gold: var(--fsp-brand-gold, #ffcc00);
	--fsp-steel-silver: #c8d0dc;
	--fsp-steel-chrome: #eef2f7;
	--fsp-steel-shadow: #1a2332;
	background: var(--fsp-hhub-surface);
	color: var(--fsp-hhub-text);
}

/* ─── Product showcase (80vh cinematic slider) ─────────── */
.fsp-hhub-showcase {
	position: relative;
	width: 100%;
	background: #090d12;
}

.fsp-hhub-showcase__viewport {
	position: relative;
	height: var(--fsp-module-hero-h);
	min-height: var(--fsp-module-hero-min);
	max-height: var(--fsp-module-hero-max);
	overflow: hidden;
	outline: none;
	--fsp-hhub-dissolve: 1.15s;
}

.fsp-hhub-showcase__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.fsp-hhub-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	z-index: 1;
	pointer-events: none;
	transition: opacity var(--fsp-hhub-dissolve) ease-in-out, visibility 0s linear var(--fsp-hhub-dissolve);
}

.fsp-hhub-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 3;
	pointer-events: auto;
	transition: opacity var(--fsp-hhub-dissolve) ease-in-out, visibility 0s;
}

.fsp-hhub-slide.is-entering {
	opacity: 0;
	visibility: visible;
	z-index: 3;
}

.fsp-hhub-slide.is-leaving {
	opacity: 0;
	visibility: visible;
	z-index: 2;
	pointer-events: none;
	transition: opacity var(--fsp-hhub-dissolve) ease-in-out, visibility 0s;
}

.fsp-hhub-slide__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 208, 220, 0.18), transparent 60%),
		linear-gradient(160deg, #1a2332 0%, #0b1018 45%, #151b24 100%);
}

.fsp-hhub-slide--no-image .fsp-hhub-slide__media {
	background:
		repeating-linear-gradient(
			115deg,
			rgba(255, 255, 255, 0.03) 0,
			rgba(255, 255, 255, 0.03) 1px,
			transparent 1px,
			transparent 24px
		),
		radial-gradient(circle at 30% 20%, rgba(232, 236, 241, 0.12), transparent 45%),
		linear-gradient(145deg, #2a3340, #0d1219 55%, #1c2430);
}

.fsp-hhub-slide--no-image.fsp-hhub-slide--premium .fsp-hhub-slide__media {
	background:
		repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 24px),
		radial-gradient(circle at 72% 28%, rgba(59, 130, 246, 0.22), transparent 48%),
		linear-gradient(145deg, #1e293b, #0b1018 55%, #172554);
}

.fsp-hhub-slide--no-image.fsp-hhub-slide--aisi .fsp-hhub-slide__media {
	background:
		repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 24px),
		radial-gradient(circle at 68% 32%, rgba(234, 179, 8, 0.2), transparent 46%),
		linear-gradient(145deg, #292524, #0b1018 55%, #422006);
}

.fsp-hhub-slide--no-image.fsp-hhub-slide--economy .fsp-hhub-slide__media {
	background:
		repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 24px),
		radial-gradient(circle at 70% 30%, rgba(249, 115, 22, 0.22), transparent 46%),
		linear-gradient(145deg, #292524, #0b1018 55%, #431407);
}

.fsp-hhub-showcase--instant .fsp-hhub-slide,
.fsp-hhub-showcase--instant .fsp-hhub-slide__img,
.fsp-hhub-showcase--instant .fsp-hhub-slide__content {
	transition: none;
}

.fsp-hhub-showcase__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 5;
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
	pointer-events: none;
}

.fsp-hhub-showcase__progress span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, var(--fsp-hhub-gold), var(--fsp-steel-silver));
	box-shadow: 0 0 12px rgba(255, 204, 0, 0.35);
}

.fsp-hhub-slide__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.04);
	filter: saturate(0.88) contrast(1.05);
	transition: opacity var(--fsp-hhub-dissolve) ease-in-out, transform 10s ease-out, filter var(--fsp-hhub-dissolve) ease-in-out;
}

.fsp-hhub-slide.is-active .fsp-hhub-slide__img {
	transform: scale(1);
}

.fsp-hhub-slide__steel {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(9, 13, 18, 0.15) 0%, rgba(9, 13, 18, 0.55) 100%),
		linear-gradient(90deg, rgba(200, 208, 220, 0.08) 0%, transparent 35%, rgba(200, 208, 220, 0.05) 100%);
	mix-blend-mode: soft-light;
}

.fsp-hhub-slide__sheen {
	position: absolute;
	inset: -20% -40%;
	background: linear-gradient(
		105deg,
		transparent 35%,
		rgba(238, 242, 247, 0.16) 48%,
		rgba(200, 208, 220, 0.08) 52%,
		transparent 65%
	);
	transform: translateX(-30%);
	animation: fsp-hhub-sheen 9s ease-in-out infinite;
	pointer-events: none;
}

.fsp-hhub-slide__mist {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 80% 70%, rgba(148, 163, 184, 0.12), transparent 42%),
		radial-gradient(circle at 10% 80%, rgba(30, 64, 175, 0.08), transparent 38%);
}

.fsp-hhub-slide__veil {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(0deg, rgba(9, 13, 18, 0.92) 0%, rgba(9, 13, 18, 0.35) 42%, rgba(9, 13, 18, 0.55) 100%),
		linear-gradient(270deg, rgba(9, 13, 18, 0.78) 0%, transparent 55%);
	pointer-events: none;
}

.fsp-hhub-slide--economy .fsp-hhub-slide__mist {
	background:
		radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.14), transparent 42%),
		radial-gradient(circle at 10% 80%, rgba(234, 88, 12, 0.08), transparent 38%);
}

.fsp-hhub-slide--premium .fsp-hhub-kicker__line {
	background: linear-gradient(90deg, #1e40af, #60a5fa);
}

.fsp-hhub-slide--aisi .fsp-hhub-kicker__line {
	background: linear-gradient(90deg, #ca8a04, var(--fsp-hhub-gold));
}

.fsp-hhub-slide--economy .fsp-hhub-kicker__line {
	background: linear-gradient(90deg, var(--fsp-hhub-orange), #fdba74);
}

.fsp-hhub-slide__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	max-width: 1180px;
	height: 100%;
	margin: 0 auto;
	padding: 48px 20px 56px;
	color: #f1f5f9;
	transition: opacity calc(var(--fsp-hhub-dissolve) * 0.85) ease-in-out;
}

.fsp-hhub-slide.is-leaving .fsp-hhub-slide__content {
	opacity: 0;
}

.fsp-hhub-showcase--align-top .fsp-hhub-slide__content {
	justify-content: flex-start;
	padding-top: clamp(48px, 12vh, 120px);
	padding-bottom: 48px;
}

.fsp-hhub-showcase--align-center .fsp-hhub-slide__content {
	justify-content: center;
	padding-top: 48px;
	padding-bottom: 48px;
}

.fsp-hhub-showcase--align-bottom .fsp-hhub-slide__content {
	justify-content: flex-end;
	padding-top: 48px;
	padding-bottom: 72px;
}

.fsp-hhub-slide__title {
	margin: 0 0 16px;
	font-size: clamp(28px, 4.2vw, 46px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: -0.02em;
	text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.fsp-hhub-showcase__scroll-hint {
	position: absolute;
	left: 50%;
	bottom: 8px;
	z-index: 4;
	transform: translateX(-50%);
	opacity: 0.55;
}

.fsp-hhub-showcase__scroll-hint span {
	display: block;
	width: 1px;
	height: 28px;
	background: linear-gradient(180deg, rgba(200, 208, 220, 0.7), transparent);
	animation: fsp-hhub-scroll 2.2s ease-in-out infinite;
}

@keyframes fsp-hhub-sheen {
	0%, 100% { transform: translateX(-35%) rotate(0.001deg); opacity: 0.55; }
	50% { transform: translateX(15%) rotate(0.001deg); opacity: 0.9; }
}

@keyframes fsp-hhub-scroll {
	0%, 100% { transform: translateY(0); opacity: 0.35; }
	50% { transform: translateY(6px); opacity: 0.85; }
}

/* ─── Shared hero typography (slides + legacy) ─────────── */
.fsp-hhub-hero {
	position: relative;
	background: var(--fsp-hhub-bg);
	color: #f1f5f9;
	overflow: hidden;
}

.fsp-hhub-hero__bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(30, 64, 175, 0.35) 0%, transparent 55%),
		linear-gradient(225deg, rgba(249, 115, 22, 0.12) 0%, transparent 45%),
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.02) 0,
			rgba(255, 255, 255, 0.02) 1px,
			transparent 1px,
			transparent 48px
		),
		#0f1419;
}

.fsp-hhub-hero__inner {
	position: relative;
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 20px 64px;
}

.fsp-hhub-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 700;
	color: #94a3b8;
	letter-spacing: 0.02em;
}

.fsp-hhub-kicker__line {
	width: 32px;
	height: 2px;
	background: linear-gradient(90deg, var(--fsp-hhub-orange), var(--fsp-hhub-gold));
}

.fsp-hhub-hero h1 {
	margin: 0 0 16px;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.fsp-hhub-lead {
	max-width: 640px;
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.75;
	color: #cbd5e1;
}

.fsp-hhub-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 36px;
}

.fsp-hhub-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.fsp-hhub-btn--primary {
	background: linear-gradient(135deg, var(--fsp-hhub-accent), #1e3a8a);
	color: var(--fsp-hhub-gold, #ffcc00);
	box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
}

.fsp-hhub-btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 32px rgba(30, 64, 175, 0.45);
	color: var(--fsp-hhub-gold, #ffcc00);
}

.fsp-hhub-btn--silver {
	background: linear-gradient(135deg, #eef2f7 0%, #c8d0dc 48%, #94a3b8 100%);
	color: #0f172a;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.25);
}

.fsp-hhub-btn--silver:hover {
	transform: translateY(-1px);
	color: #0f172a;
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.fsp-hhub-btn--ghost {
	background: rgba(255, 255, 255, 0.08);
	color: #f8fafc;
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.fsp-hhub-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.fsp-hhub-btn--outline {
	background: transparent;
	color: var(--fsp-hhub-accent);
	border: 1px solid rgba(30, 64, 175, 0.35);
}

.fsp-hhub-btn--outline:hover {
	background: rgba(30, 64, 175, 0.06);
}

.fsp-hhub-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 520px;
	margin: 0;
	padding: 0;
}

.fsp-hhub-stat {
	margin: 0;
	padding: 14px 16px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(6px);
}

.fsp-hhub-stat dt {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fsp-hhub-stat dd {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
}

/* ─── Material pillars (below slideshow) ─────────────── */
.fsp-hhub-pillars {
	position: relative;
	background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
	border-top: 1px solid #e8edf3;
}

.fsp-hhub-pillars__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 52px 20px 48px;
}

.fsp-hhub-pillars__intro {
	max-width: 680px;
	margin: 0 auto 36px;
	text-align: center;
}

.fsp-hhub-pillars__eyebrow {
	margin: 0 0 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fsp-hhub-accent);
}

.fsp-hhub-pillars__intro h2 {
	margin: 0 0 10px;
	font-size: clamp(24px, 3.2vw, 34px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #0f172a;
}

.fsp-hhub-pillars__lede {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
	color: var(--fsp-hhub-muted);
}

.fsp-hhub-pillars__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: stretch;
}

.fsp-hhub-pillar {
	display: flex;
	flex-direction: column;
	border-radius: 18px;
	background: #fff;
	border: 1px solid #e8edf3;
	text-decoration: none;
	color: inherit;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.fsp-hhub-pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	border-color: color-mix(in srgb, var(--fsp-pillar-accent) 22%, #e8edf3);
}

.fsp-hhub-pillar__head {
	padding: 20px 20px 12px;
	background: linear-gradient(180deg, var(--fsp-pillar-wash) 0%, #fff 100%);
}

.fsp-hhub-pillar__code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #fff;
	background: var(--fsp-pillar-accent);
}

.fsp-hhub-pillar__material {
	margin: 10px 0 4px;
	font-size: clamp(19px, 2vw, 24px);
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
}

.fsp-hhub-pillar__subtitle {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 600;
	color: color-mix(in srgb, var(--fsp-pillar-accent) 65%, #64748b);
}

.fsp-hhub-pillar__headline {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	font-weight: 500;
	color: #475569;
}

.fsp-hhub-pillar__atelier {
	padding: 0 16px 10px;
}

.fsp-hhub-pillar__frame {
	position: relative;
	width: 100%;
	max-height: 316px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(15, 23, 42, 0.06);
}

.fsp-hhub-pillar__photo {
	position: relative;
	z-index: 0;
	display: block;
	width: 100%;
	height: auto;
	max-height: 316px;
	object-fit: scale-down;
	object-position: center;
	filter: grayscale(0.15) contrast(1.04) brightness(0.97);
	transition: filter 0.35s ease;
}

.fsp-hhub-pillar:hover .fsp-hhub-pillar__photo {
	filter: grayscale(0) contrast(1.02) brightness(1);
}

.fsp-hhub-pillar__wash {
	position: absolute;
	inset: 0;
	mix-blend-mode: color;
	opacity: 0.45;
	pointer-events: none;
}

.fsp-hhub-pillar--aisi .fsp-hhub-pillar__wash {
	background: linear-gradient(145deg, rgba(201, 169, 98, 0.65), rgba(255, 204, 0, 0.35));
}

.fsp-hhub-pillar--premium .fsp-hhub-pillar__wash {
	background: linear-gradient(145deg, rgba(30, 64, 175, 0.6), rgba(59, 130, 246, 0.28));
}

.fsp-hhub-pillar--economy .fsp-hhub-pillar__wash {
	background: linear-gradient(145deg, rgba(234, 88, 12, 0.55), rgba(249, 115, 22, 0.3));
}

.fsp-hhub-pillar__grain {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
	pointer-events: none;
}

.fsp-hhub-pillar__vignette {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 85% 75% at 50% 50%, transparent 55%, rgba(15, 23, 42, 0.18) 100%);
	pointer-events: none;
}

.fsp-hhub-pillar__stamp {
	position: absolute;
	left: 10px;
	bottom: 10px;
	z-index: 2;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #f8fafc;
	background: rgba(15, 23, 42, 0.6);
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.fsp-hhub-pillar--aisi .fsp-hhub-pillar__frame:not(:has(.fsp-hhub-pillar__photo)) {
	background: linear-gradient(160deg, #422006, #ca8a04);
}

.fsp-hhub-pillar--premium .fsp-hhub-pillar__frame:not(:has(.fsp-hhub-pillar__photo)) {
	background: linear-gradient(160deg, #1e293b, #1e40af);
}

.fsp-hhub-pillar--economy .fsp-hhub-pillar__frame:not(:has(.fsp-hhub-pillar__photo)) {
	background: linear-gradient(160deg, #431407, #ea580c);
}

.fsp-hhub-pillar__foot {
	padding: 12px 20px 18px;
	border-top: 1px solid #f1f5f9;
}

.fsp-hhub-pillar__body {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.7;
	color: #64748b;
}

.fsp-hhub-pillar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0 0 14px;
	padding: 0;
	list-style: none;
}

.fsp-hhub-pillar__tags li {
	padding: 4px 9px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 600;
	color: color-mix(in srgb, var(--fsp-pillar-accent) 70%, #334155);
	background: color-mix(in srgb, var(--fsp-pillar-accent) 8%, #f8fafc);
}

.fsp-hhub-pillar__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: var(--fsp-pillar-accent);
}

.fsp-hhub-pillar__cta span {
	transition: transform 0.2s ease;
}

.fsp-hhub-pillar:hover .fsp-hhub-pillar__cta span {
	transform: translateX(-3px);
}

.fsp-hhub-pillars__foot {
	margin: 24px 0 0;
	text-align: center;
}

.fsp-hhub-pillars__foot a {
	font-size: 14px;
	font-weight: 700;
	color: var(--fsp-hhub-accent);
	text-decoration: none;
}

.fsp-hhub-pillars__foot a:hover {
	text-decoration: underline;
}

/* ─── About ────────────────────────────────────────────── */
.fsp-hhub-about__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 56px 20px;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: center;
}

.fsp-hhub-about__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 18px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(30, 64, 175, 0.08);
	border: 1px solid rgba(30, 64, 175, 0.12);
}

.fsp-hhub-about__badge strong {
	font-size: 18px;
	font-weight: 800;
	color: var(--fsp-hhub-accent);
}

.fsp-hhub-about__badge span {
	font-size: 13px;
	color: var(--fsp-hhub-muted);
}

.fsp-hhub-about__copy h2 {
	margin: 0 0 16px;
	font-size: 26px;
	font-weight: 800;
}

.fsp-hhub-about__copy p {
	margin: 0 0 14px;
	font-size: 15px;
	line-height: 1.8;
	color: var(--fsp-hhub-muted);
}

.fsp-hhub-about__plate {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 240px;
	padding: 36px 32px;
	border-radius: 16px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(125deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 32%),
		linear-gradient(168deg, #7a8793 0%, #919ba6 16%, #808c98 36%, #96a2ae 52%, #6f7b87 70%, #84909c 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.22),
		inset 0 -3px 10px rgba(15, 23, 42, 0.22),
		inset 2px 0 10px rgba(255, 255, 255, 0.06),
		inset -2px 0 10px rgba(15, 23, 42, 0.1),
		0 16px 36px rgba(15, 23, 42, 0.2);
	border: 1px solid rgba(71, 85, 105, 0.55);
}

.fsp-hhub-about__plate::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		repeating-linear-gradient(
			90deg,
			rgba(255, 255, 255, 0.045) 0,
			rgba(255, 255, 255, 0.045) 1px,
			rgba(15, 23, 42, 0.03) 1px,
			rgba(15, 23, 42, 0.03) 2px
		),
		repeating-linear-gradient(
			0deg,
			transparent 0,
			transparent 4px,
			rgba(255, 255, 255, 0.028) 4px,
			rgba(255, 255, 255, 0.028) 5px
		);
	opacity: 0.65;
	pointer-events: none;
}

.fsp-hhub-about__plate::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: 0.1;
	mix-blend-mode: overlay;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
	pointer-events: none;
}

.fsp-hhub-about__plate-sheen {
	position: absolute;
	inset: -15% -8%;
	background: linear-gradient(
		112deg,
		transparent 38%,
		rgba(255, 255, 255, 0.26) 49%,
		rgba(255, 255, 255, 0.06) 53%,
		transparent 64%
	);
	transform: rotate(-7deg);
	opacity: 0.42;
	pointer-events: none;
}

.fsp-hhub-about__plate-label,
.fsp-hhub-about__plate-codes,
.fsp-hhub-about__plate-note {
	position: relative;
	z-index: 1;
}

.fsp-hhub-about__plate-label {
	font-size: 15px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 10px;
	text-shadow:
		0 1px 2px rgba(51, 65, 85, 0.32),
		0 0 14px rgba(255, 255, 255, 0.75);
}

.fsp-hhub-about__plate-codes {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 6px 10px;
	margin: 0;
	font-size: clamp(30px, 4.6vw, 40px);
	font-weight: 900;
	line-height: 1.02;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
}

.fsp-hhub-about__plate-dot {
	color: #94a3b8;
	font-weight: 800;
}

.fsp-hhub-about__plate-code--premium {
	color: #1e3a8a;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.fsp-hhub-about__plate-code--aisi {
	color: #f8fafc;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.32);
}

.fsp-hhub-about__plate-code--economy {
	color: #fb923c;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.28);
}

.fsp-hhub-about__plate-code--neutral {
	color: #334155;
}

.fsp-hhub-about__plate-note {
	display: block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: 0.05em;
}

/* ─── Module grid ──────────────────────────────────────── */
.fsp-hhub-modules {
	background: var(--fsp-hhub-surface);
	border-top: 1px solid #e2e8f0;
}

.fsp-hhub-modules__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 52px 20px 56px;
}

.fsp-hhub-modules__head h2 {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 800;
}

.fsp-hhub-modules__head p {
	margin: 0 0 28px;
	color: var(--fsp-hhub-muted);
	font-size: 15px;
}

.fsp-hhub-modules__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
}

.fsp-hhub-mod {
	display: flex;
	flex-direction: column;
	padding: 20px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.fsp-hhub-mod:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
	border-color: rgba(30, 64, 175, 0.25);
}

.fsp-hhub-mod__tag {
	display: inline-block;
	align-self: flex-start;
	margin-bottom: 10px;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 700;
	background: rgba(30, 64, 175, 0.1);
	color: var(--fsp-hhub-accent);
}

.fsp-hhub-mod--tools .fsp-hhub-mod__tag { background: rgba(234, 88, 12, 0.12); color: #ea580c; }
.fsp-hhub-mod--knowledge .fsp-hhub-mod__tag { background: rgba(255, 204, 0, 0.2); color: #854d0e; }
.fsp-hhub-mod--quote .fsp-hhub-mod__tag { background: rgba(249, 115, 22, 0.12); color: #c2410c; }

.fsp-hhub-mod h3 {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 800;
}

.fsp-hhub-mod p {
	margin: 0 0 14px;
	flex: 1;
	font-size: 13px;
	line-height: 1.65;
	color: var(--fsp-hhub-muted);
}

.fsp-hhub-modules__grid--compact {
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.fsp-hhub-mod__cta {
	font-size: 13px;
	font-weight: 700;
	color: var(--fsp-hhub-accent);
}

/* ─── Contact ──────────────────────────────────────────── */
.fsp-hhub-contact {
	background: #fff;
	border-top: 1px solid #e2e8f0;
}

.fsp-hhub-contact__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 48px 20px;
	display: grid;
	grid-template-columns: 1fr 1.2fr auto;
	gap: 28px;
	align-items: start;
}

.fsp-hhub-contact__copy h2 {
	margin: 0 0 10px;
	font-size: 24px;
	font-weight: 800;
}

.fsp-hhub-contact__copy p {
	margin: 0;
	font-size: 15px;
	line-height: 1.75;
	color: var(--fsp-hhub-muted);
}

.fsp-hhub-contact__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px 24px;
	margin: 0;
}

.fsp-hhub-contact__list div {
	margin: 0;
}

.fsp-hhub-contact__list dt {
	margin: 0 0 4px;
	font-size: 11px;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.fsp-hhub-contact__list dd {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
}

.fsp-hhub-contact__list a {
	color: var(--fsp-hhub-accent);
	text-decoration: none;
}

.fsp-hhub-contact__list a:hover {
	text-decoration: underline;
}

.fsp-hhub-contact__cta {
	align-self: stretch;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	white-space: normal;
	text-align: center;
}

/* ─── Trust + gateway ──────────────────────────────────── */
.fsp-hhub-trust {
	background: #eef2f7;
	border-top: 1px solid #e2e8f0;
}

.fsp-hhub-trust__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 32px 20px;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.fsp-hhub-trust__item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.fsp-hhub-trust__item strong {
	font-size: 14px;
	font-weight: 800;
}

.fsp-hhub-trust__item span {
	font-size: 13px;
	color: var(--fsp-hhub-muted);
	line-height: 1.6;
}

.fsp-hhub-gateway {
	background: #fff;
	border-top: 1px solid #e2e8f0;
}

.fsp-hhub-gateway__inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 28px 20px 40px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.fsp-hhub-gateway__copy strong {
	display: block;
	margin-bottom: 4px;
	font-size: 15px;
}

.fsp-hhub-gateway__inner p {
	margin: 0;
	font-size: 14px;
	color: var(--fsp-hhub-muted);
}

@media (max-width: 1024px) {
	.fsp-hhub-showcase__viewport {
		min-height: var(--fsp-module-hero-min);
	}

	.fsp-hhub-showcase--align-top .fsp-hhub-slide__content {
		padding-top: 12px;
		justify-content: flex-start;
	}

	.fsp-hhub-slide__img {
		transform: none;
	}

	.fsp-hhub-slide.is-active .fsp-hhub-slide__img {
		transform: none;
	}

	.fsp-hhub-slide__content {
		padding: 20px var(--fsp-page-pad-x, 16px) 36px;
		max-width: 100%;
		width: 100%;
		box-sizing: border-box;
		min-width: 0;
	}

	.fsp-hhub-slide__title {
		font-size: clamp(20px, 5.5vw, 28px);
		font-weight: 900;
		margin-bottom: 10px;
	}

	.fsp-hhub-lead {
		font-size: 14px;
		font-weight: 700;
		line-height: 1.65;
		margin-bottom: 14px;
	}

	.fsp-hhub-kicker {
		font-size: 12px;
		font-weight: 800;
		margin-bottom: 8px;
	}

	.fsp-hhub-hero__actions {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		margin-bottom: 16px;
	}

	.fsp-hhub-hero__actions .fsp-hhub-btn,
	.fsp-hhub-slide__content .fsp-hhub-btn {
		width: 100%;
		max-width: 100%;
		min-width: 0;
		box-sizing: border-box;
		min-height: 44px;
		padding: 10px 16px;
		font-size: 14px;
		font-weight: 800;
	}

	.fsp-hhub-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
		max-width: 100%;
		width: 100%;
		margin-top: 4px;
	}

	.fsp-hhub-stat {
		padding: 8px 6px;
		border-radius: 8px;
		min-width: 0;
	}

	.fsp-hhub-stat dt {
		font-size: 9px;
		margin-bottom: 2px;
		line-height: 1.2;
	}

	.fsp-hhub-stat dd {
		font-size: 12px;
		font-weight: 800;
		line-height: 1.25;
	}

	.fsp-hhub-btn--outline {
		color: #93c5fd;
		border-color: rgba(147, 197, 253, 0.55);
	}

	.fsp-hhub-pillars__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.fsp-hhub-pillar__frame {
		max-height: 282px;
	}

	.fsp-hhub-pillar__photo {
		max-height: 282px;
	}

	.fsp-hhub-contact__inner {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 32px var(--fsp-page-pad-x, 16px);
	}

	.fsp-hhub-contact__cta {
		justify-self: stretch;
		width: 100%;
		max-width: 100%;
		text-align: center;
		min-height: 44px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		white-space: normal;
		box-sizing: border-box;
		padding: 10px 16px;
		font-size: 14px;
		font-weight: 800;
	}

	.fsp-hhub-about__inner {
		grid-template-columns: 1fr;
		padding-inline: var(--fsp-page-pad-x, 16px);
	}

	.fsp-hhub-trust__inner {
		grid-template-columns: 1fr;
		padding: 20px var(--fsp-page-pad-x, 16px);
		gap: 12px;
	}

	.fsp-hhub-trust__item {
		padding: 14px 16px;
		border-radius: 12px;
		background: rgba(255, 255, 255, 0.65);
		border: 1px solid rgba(226, 232, 240, 0.95);
	}

	.fsp-hhub-gateway__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
		padding: 24px var(--fsp-page-pad-x, 16px) 32px;
		gap: 14px;
	}

	.fsp-hhub-gateway__inner .fsp-hhub-btn {
		width: 100%;
		min-height: 48px;
		justify-content: center;
	}

	.fsp-hhub-pillars__inner,
	.fsp-hhub-modules__inner {
		padding-inline: var(--fsp-page-pad-x, 16px);
	}
}

@media (max-width: 640px) {
	.fsp-hhub-showcase__viewport {
		height: var(--fsp-module-hero-h);
		min-height: var(--fsp-module-hero-min);
	}

	.fsp-hhub-slide__content {
		padding: 16px var(--fsp-page-pad-x, 16px) 32px;
	}

	.fsp-hhub-showcase--align-top .fsp-hhub-slide__content {
		padding-top: 10px;
	}

	.fsp-hhub-slide__title {
		font-size: clamp(18px, 5vw, 24px);
		margin-bottom: 8px;
	}

	.fsp-hhub-kicker {
		margin-bottom: 6px;
	}

	.fsp-hhub-hero__actions {
		margin-bottom: 10px;
	}

	.fsp-hhub-hero__actions .fsp-hhub-btn {
		min-height: 42px;
		font-size: 13px;
	}

	.fsp-hhub-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 5px;
	}

	.fsp-hhub-stat {
		padding: 7px 5px;
	}

	.fsp-hhub-stat dt {
		font-size: 8px;
	}

	.fsp-hhub-stat dd {
		font-size: 11px;
	}

	.fsp-hhub-contact__list {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.fsp-hhub-contact__list div {
		padding: 12px 14px;
		border-radius: 10px;
		background: #f8fafc;
		border: 1px solid #e2e8f0;
	}

	.fsp-hhub-modules__grid {
		grid-template-columns: 1fr;
	}
}
