/* ═══════════════════════════════════════════════════════════
   EVXPERTZ Founder Story — Ultra-premium layer
   Brand tokens only: neon-blue / neon-green / site surfaces
   ═══════════════════════════════════════════════════════════ */

.fs-page {
	--fs-blue: var(--neon-blue);
	--fs-green: var(--neon-green-dim);
	--fs-glass: rgba(255, 255, 255, 0.78);
	--fs-line: rgba(0, 148, 255, 0.14);
	--fs-shadow: 0 28px 70px rgba(0, 84, 177, 0.1);
	position: relative;
	isolation: isolate;
	overflow-x: clip;
	background:
		radial-gradient(1200px 560px at 6% -12%, rgba(0, 148, 255, 0.18), transparent 58%),
		radial-gradient(980px 520px at 96% 0%, rgba(76, 255, 0, 0.11), transparent 55%),
		radial-gradient(760px 420px at 50% 38%, rgba(0, 148, 255, 0.05), transparent 62%),
		var(--bg);
}

.fs-page::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	opacity: 0.28;
	background-image:
		linear-gradient(rgba(0, 148, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 148, 255, 0.04) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, #000 20%, transparent 72%);
}

/* Progress rail */
.fs-progress {
	position: fixed;
	top: 0;
	left: 0;
	height: 3px;
	width: 0%;
	z-index: 100;
	background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
	box-shadow: 0 0 16px rgba(0, 148, 255, 0.45);
	pointer-events: none;
	transition: width 0.08s linear;
}

/* ── Hero: split composition ── */
.fs-page .fs-hero {
	max-width: 1120px;
	margin: 0 auto;
	padding: clamp(2.5rem, 6vw, 4.75rem) var(--space-lg) clamp(2.5rem, 5vw, 3.75rem);
	text-align: left;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.fs-page .fs-hero {
		grid-template-columns: minmax(280px, 0.9fr) 1.15fr;
		gap: clamp(2rem, 4vw, 3.5rem);
	}
}

.fs-page .fs-hero-glow {
	width: min(820px, 95vw);
	height: min(820px, 95vw);
	top: -22%;
	left: 18%;
	background:
		radial-gradient(circle at 35% 40%, rgba(0, 148, 255, 0.22) 0%, transparent 55%),
		radial-gradient(circle at 72% 58%, rgba(76, 255, 0, 0.14) 0%, transparent 50%);
	animation: fsHeroGlow 9s ease-in-out infinite alternate;
	filter: blur(40px);
}

@keyframes fsHeroGlow {
	from {
		opacity: 0.4;
		transform: translateX(-50%) scale(0.94);
	}
	to {
		opacity: 0.9;
		transform: translateX(-50%) scale(1.08);
	}
}

.fs-hero-visual {
	position: relative;
	justify-self: center;
	width: min(360px, 82vw);
}

.fs-portrait-stage {
	position: relative;
	padding: 0.7rem;
	border-radius: 30px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.7));
	border: 1px solid var(--fs-line);
	box-shadow: var(--fs-shadow), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	overflow: hidden;
	transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease);
}

.fs-portrait-stage:hover {
	transform: translateY(-4px);
	box-shadow:
		0 34px 80px rgba(0, 84, 177, 0.16),
		0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.fs-portrait-stage::before {
	content: "";
	position: absolute;
	inset: -45%;
	background: conic-gradient(
		from 140deg,
		transparent 0%,
		rgba(0, 148, 255, 0.18) 16%,
		transparent 34%,
		rgba(76, 255, 0, 0.14) 52%,
		transparent 70%,
		rgba(0, 148, 255, 0.12) 86%,
		transparent 100%
	);
	animation: fsPortraitSpin 16s linear infinite;
	pointer-events: none;
	z-index: 0;
}

@keyframes fsPortraitSpin {
	to {
		transform: rotate(360deg);
	}
}

.fs-portrait-stage::after {
	content: "";
	position: absolute;
	inset: 2px;
	border-radius: 28px;
	background: linear-gradient(165deg, #fff 0%, #f3f9ff 55%, #f6fff3 100%);
	z-index: 1;
}

.fs-portrait-inner {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 0.9rem;
	justify-items: center;
}

.fs-portrait-img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center top;
	border-radius: 22px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(0, 84, 177, 0.14);
	animation: fsPortraitIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fsPortraitIn {
	from {
		opacity: 0;
		transform: translateY(18px) scale(0.97);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.fs-portrait-meta {
	text-align: center;
	padding-bottom: 0.35rem;
}

.fs-portrait-name {
	display: block;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
	line-height: 1.15;
}

.fs-portrait-role {
	display: block;
	margin-top: 0.28rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	background: linear-gradient(90deg, var(--neon-blue), #2a9900);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.fs-hero-copy {
	min-width: 0;
}

@media (max-width: 899px) {
	.fs-page .fs-hero,
	.fs-hero-copy {
		text-align: center;
	}
	.fs-hero-copy .fs-intro {
		margin-left: auto;
		margin-right: auto;
	}
	.fs-hero-recog {
		justify-content: center;
	}
	.fs-hero-actions {
		justify-content: center;
	}
}

.fs-page .fs-badge {
	margin-bottom: 1rem;
	background: linear-gradient(135deg, rgba(0, 148, 255, 0.12), rgba(76, 255, 0, 0.09));
	border: 1px solid rgba(0, 148, 255, 0.22);
	color: #0054b1;
	box-shadow: 0 10px 28px rgba(0, 148, 255, 0.08);
	backdrop-filter: blur(8px);
}

.fs-page .fs-title {
	font-size: clamp(2.15rem, 5.4vw, 3.45rem);
	margin-bottom: 0.85rem;
	letter-spacing: -0.04em;
}

.fs-page .fs-title .inline-logo {
	height: 1.05em;
	width: auto;
	vertical-align: -0.18em;
	margin-right: 0.12em;
}

.fs-page .fs-subtitle {
	font-size: clamp(1.05rem, 2.5vw, 1.4rem);
	max-width: 34rem;
	margin-bottom: 1rem;
	line-height: 1.45;
}

.fs-page .fs-intro {
	max-width: 38rem;
	font-size: 1.08rem;
	line-height: 1.78;
	margin-bottom: 0;
}

.fs-hero-recog {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 1.35rem 0 0;
}

.fs-hero-recog a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.58rem 1rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
	color: var(--text);
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(0, 148, 255, 0.16);
	box-shadow: 0 12px 30px rgba(0, 84, 177, 0.08);
	backdrop-filter: blur(12px);
	transition:
		transform 0.28s var(--ease-out),
		border-color 0.28s ease,
		box-shadow 0.28s ease;
}

.fs-hero-recog a:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 148, 255, 0.4);
	box-shadow: 0 16px 36px rgba(0, 148, 255, 0.14);
}

.fs-hero-recog__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--neon-green-dim);
	box-shadow: 0 0 0 3px rgba(76, 255, 0, 0.2);
	flex-shrink: 0;
}

.fs-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	margin-top: 1.4rem;
}

.fs-hero-actions .btn {
	min-height: 46px;
	border-radius: 999px;
	padding-inline: 1.25rem;
	box-shadow: 0 12px 30px rgba(0, 84, 177, 0.1);
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.fs-hero-actions .btn:hover {
	transform: translateY(-2px);
}

/* ── Story shell ── */
.fs-story-shell {
	max-width: 860px;
	margin: 0 auto;
	padding: 0 var(--space-lg) clamp(3rem, 6vw, 5rem);
}

.fs-page .fs-body {
	max-width: none;
	margin: 0;
	padding: 0;
	position: relative;
}

.fs-page .fs-body p {
	font-size: 1.08rem;
	line-height: 1.88;
	max-width: 42rem;
}

.fs-chapter {
	position: relative;
	padding: 0.25rem 0 0.5rem;
	margin-bottom: 0.25rem;
}

.fs-page .fs-divider {
	margin: 2.4rem 0 1.5rem;
	position: relative;
}

.fs-page .fs-divider-icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(145deg, rgba(0, 148, 255, 0.12), rgba(76, 255, 0, 0.09));
	border: 1px solid rgba(0, 148, 255, 0.16);
	box-shadow: 0 10px 24px rgba(0, 148, 255, 0.08);
	position: relative;
	z-index: 1;
}

.fs-chapter-label {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0 0 1rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0054b1;
	background: rgba(0, 148, 255, 0.07);
	border: 1px solid rgba(0, 148, 255, 0.14);
}

.fs-page .fs-highlight {
	border-radius: 20px;
	border: 1px solid rgba(0, 148, 255, 0.12);
	box-shadow: 0 16px 40px rgba(0, 84, 177, 0.05);
	backdrop-filter: blur(8px);
	transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}

.fs-page .fs-highlight:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 48px rgba(0, 84, 177, 0.08);
}

.fs-page .fs-quote {
	position: relative;
	border-radius: 0 24px 24px 0;
	background: linear-gradient(135deg, rgba(0, 148, 255, 0.08), rgba(76, 255, 0, 0.05));
	border-left: 4px solid var(--neon-blue);
	box-shadow: 0 18px 48px rgba(0, 84, 177, 0.07);
	padding: 1.6rem 1.5rem 1.4rem 1.55rem;
	overflow: hidden;
}

.fs-page .fs-quote::after {
	content: "";
	position: absolute;
	right: -30px;
	bottom: -40px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 148, 255, 0.12), transparent 70%);
	pointer-events: none;
}

.fs-quote-foot {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1rem;
}

.fs-quote-foot .fs-quote-author {
	margin: 0;
}

.fs-inline-sign {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: cover;
	object-position: center top;
	border-radius: 50%;
	border: 2px solid rgba(0, 148, 255, 0.22);
	box-shadow: 0 8px 20px rgba(0, 84, 177, 0.12);
	flex-shrink: 0;
}

.fs-page .fs-journey {
	gap: 1rem;
	margin: 2rem 0 2.25rem;
}

.fs-page .fs-milestone {
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(0, 148, 255, 0.1);
	box-shadow: 0 14px 36px rgba(0, 84, 177, 0.05);
	backdrop-filter: blur(10px);
	transition:
		transform 0.35s var(--ease-out),
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}

.fs-page .fs-milestone:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 148, 255, 0.28);
	box-shadow: 0 22px 48px rgba(0, 148, 255, 0.1);
}

.fs-page .fs-milestone-icon {
	border-radius: 14px;
}

/* Recognition */
.fs-recog {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 1.75rem 0 2rem;
}

@media (min-width: 700px) {
	.fs-recog {
		grid-template-columns: 1fr 1fr;
	}
}

a.fs-recog-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	text-decoration: none;
	color: inherit;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(0, 148, 255, 0.12);
	border-radius: 22px;
	padding: 1.45rem 1.4rem 1.3rem;
	overflow: hidden;
	backdrop-filter: blur(14px);
	box-shadow: 0 18px 44px rgba(0, 84, 177, 0.07);
	transition:
		transform 0.35s var(--ease-out),
		border-color 0.35s ease,
		box-shadow 0.35s ease;
}

a.fs-recog-card::before {
	content: "";
	position: absolute;
	inset: auto -18% -45% auto;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 148, 255, 0.16), transparent 70%);
	pointer-events: none;
	transition: transform 0.45s var(--ease-out);
}

a.fs-recog-card:hover {
	transform: translateY(-5px);
	border-color: rgba(0, 148, 255, 0.35);
	box-shadow: 0 26px 56px rgba(0, 148, 255, 0.14);
}

a.fs-recog-card:hover::before {
	transform: scale(1.2);
}

.fs-recog-card__eyebrow {
	display: block;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.11em;
	text-transform: uppercase;
	color: var(--text-dim);
	margin-bottom: 0.55rem;
}

.fs-recog-card__title {
	display: block;
	font-size: 1.12rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: var(--text);
	margin-bottom: 0.55rem;
	line-height: 1.25;
}

.fs-recog-card__meta {
	display: block;
	font-size: 0.92rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 1rem;
	flex: 1;
}

.fs-recog-card__link {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--neon-blue);
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	transition: gap 0.25s var(--ease-out);
}

a.fs-recog-card:hover .fs-recog-card__link {
	gap: 0.45rem;
}

/* LinkedIn badge */
.li-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.2rem 0.8rem;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	margin: 0 0.15rem;
	backdrop-filter: blur(6px);
	background: linear-gradient(135deg, #0b1220 0%, #0057b7 55%, #0094ff 100%);
	box-shadow: 0 10px 24px rgba(0, 84, 177, 0.22);
	vertical-align: middle;
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.li-hero-badge:hover {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(0, 84, 177, 0.28);
}

.li-hero-badge a {
	color: #fff;
	text-decoration: none;
}

/* Triplet lux */
.fs-triplet-lux {
	position: relative;
	margin: 2.75rem auto 2.5rem;
	max-width: 640px;
	padding: 2.75rem 2.25rem;
	text-align: center;
	border-radius: var(--radius-lg);
	background: var(--bg-glass);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid transparent;
	box-shadow:
		0 18px 56px rgba(0, 148, 255, 0.08),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
	overflow: hidden;
	z-index: 1;
	transition: transform 0.45s var(--ease-out);
	will-change: transform;
}

.fs-triplet-lux::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	z-index: -2;
	background: linear-gradient(
		90deg,
		var(--neon-blue),
		var(--neon-green-dim),
		var(--neon-blue),
		var(--neon-green-dim)
	);
	background-size: 300% 100%;
	animation: fsTripletBorderFlow 5s ease infinite;
	opacity: 0.45;
}

.fs-triplet-lux:hover::before {
	opacity: 0.8;
}

@keyframes fsTripletBorderFlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.fs-triplet-lux::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	z-index: -1;
	background: var(--bg-glass);
}

.fs-triplet-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 280px;
	height: 280px;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(0, 148, 255, 0.14) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
	z-index: -1;
	animation: fsTripletGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes fsTripletGlowPulse {
	0% {
		opacity: 0.4;
		transform: translate(-50%, -50%) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1.15);
	}
}

.fs-triplet-lux .fst-line {
	display: flex;
	align-items: center;
	gap: 1rem;
	justify-content: center;
	padding: 1rem 0;
	position: relative;
	opacity: 0;
	transform: translateY(24px) scale(0.96);
	animation: fstLineIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	transition:
		transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
		text-shadow 0.3s;
}

.fs-triplet-lux .fst-line:nth-child(2) {
	animation-delay: 0.25s;
}

.fs-triplet-lux .fst-line:nth-child(4) {
	animation-delay: 0.5s;
}

.fs-triplet-lux .fst-line:nth-child(6) {
	animation-delay: 0.75s;
}

@keyframes fstLineIn {
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.fs-triplet-lux .fst-line:hover {
	transform: translateY(-3px) scale(1.03);
	text-shadow: 0 0 24px rgba(0, 148, 255, 0.25);
}

.fst-icon {
	flex-shrink: 0;
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: rgba(0, 148, 255, 0.08);
}

.fst-icon svg {
	width: 18px;
	height: 18px;
}

.fst-text {
	font-size: 1.15rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--text);
}

.fst-text em {
	font-style: normal;
	background: linear-gradient(90deg, var(--neon-blue), #2a9900);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 800;
}

.fst-diamond {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.15rem 0;
}

.fst-diamond > span:not(.fst-diamond-line) {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--neon-blue);
	opacity: 0.45;
}

.fst-diamond-line {
	width: 28px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0, 148, 255, 0.35), transparent);
}

.fs-triplet-shimmer {
	position: absolute;
	top: 0;
	left: -60%;
	width: 40%;
	height: 100%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: fsTripletShimmer 4.8s ease-in-out infinite;
	pointer-events: none;
	z-index: 2;
}

@keyframes fsTripletShimmer {
	0%,
	30% {
		left: -60%;
		opacity: 0;
	}
	45% {
		opacity: 0.75;
	}
	70%,
	100% {
		left: 120%;
		opacity: 0;
	}
}

/* Closing + CTA band */
.fs-page .fs-closing {
	position: relative;
	max-width: 860px;
	margin: 0.5rem auto 1.75rem;
	padding: 2.5rem 1.75rem;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(0, 148, 255, 0.12);
	box-shadow: 0 24px 60px rgba(0, 84, 177, 0.08);
	backdrop-filter: blur(16px);
	overflow: hidden;
}

.fs-page .fs-closing::before {
	content: "";
	position: absolute;
	inset: -30% auto auto 40%;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 148, 255, 0.12), transparent 70%);
	pointer-events: none;
}

.fs-page .fs-closing p {
	position: relative;
	font-size: clamp(1.15rem, 2.5vw, 1.4rem);
	max-width: 36rem;
	margin: 0 auto;
}

.fs-cta-band {
	max-width: 860px;
	margin: 0 auto clamp(3rem, 7vw, 5rem);
	padding: 1.75rem;
	border-radius: 28px;
	background:
		linear-gradient(135deg, rgba(0, 148, 255, 0.1), rgba(76, 255, 0, 0.07)),
		rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 148, 255, 0.16);
	box-shadow: 0 24px 60px rgba(0, 84, 177, 0.1);
	backdrop-filter: blur(14px);
}

.fs-cta-band__title {
	text-align: center;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #0054b1;
	margin: 0 0 1rem;
}

.fs-page .fs-cta {
	margin: 0;
	padding: 0;
}

.fs-page .fs-cta-row {
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
}

.fs-page .fs-cta .btn {
	min-height: 48px;
	border-radius: 999px;
	box-shadow: 0 12px 30px rgba(0, 84, 177, 0.1);
	transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.fs-page .fs-cta .btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px rgba(0, 148, 255, 0.16);
}

/* Reveal polish */
.fs-page .reveal {
	transition:
		opacity 0.85s var(--ease-out),
		transform 0.85s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
	.fs-page .fs-hero-glow,
	.fs-portrait-stage::before,
	.fs-triplet-lux::before,
	.fs-triplet-shimmer,
	.fs-triplet-glow,
	.fs-portrait-img {
		animation: none !important;
	}
	.fs-triplet-lux .fst-line {
		opacity: 1;
		transform: none;
		animation: none;
	}
}

@media (max-width: 600px) {
	.fs-triplet-lux {
		padding: 2rem 1.35rem;
		margin: 2.25rem auto;
	}
	.fst-text {
		font-size: 1rem;
	}
	.fst-icon {
		width: 36px;
		height: 36px;
	}
	.fs-portrait-stage {
		padding: 0.55rem;
		border-radius: 24px;
	}
	.fs-cta-band {
		padding: 1.35rem 1rem;
		border-radius: 22px;
	}
	.fs-story-shell {
		padding-inline: var(--space-md);
	}
}
