/* SYN Media — Glass scroll hero (service-by-service) */

.syn-hero-scroll {
	--syn-hero-ink: #1a3a4a;
	--syn-hero-muted: rgba(26, 58, 74, 0.72);
	--syn-hero-glow: #0057ff;
	--syn-hero-accent: #7b61ff;
	--syn-hero-panel: rgba(255, 255, 255, 0.55);
	position: relative;
	z-index: 6;
	isolation: isolate;
	color: var(--syn-hero-ink);
	/* Height is controlled by GSAP pinSpacing — keep content box one viewport */
	height: auto;
	min-height: 100vh;
	margin: 0 !important;
	padding: 0 !important;
}

.syn-hero-scroll-sticky {
	position: relative;
	top: auto;
	height: 100vh;
	min-height: 640px;
	overflow: hidden;
	display: flex;
	align-items: stretch;
	background: transparent;
}

body.admin-bar .syn-hero-scroll-sticky {
	min-height: calc(100vh - 32px);
	height: calc(100vh - 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .syn-hero-scroll-sticky {
		min-height: calc(100vh - 46px);
		height: calc(100vh - 46px);
	}
}

/* Three.js timeline canvas */
.syn-hero-webgl {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
	opacity: 0.85;
}

/* Transparent — let peach water / mesh bg show through */
.syn-hero-scroll-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background: transparent;
}

.syn-hero-scroll-bokeh,
.syn-hero-scroll-grid,
.syn-hero-scroll-flare {
	display: none;
}

/* Soft theme accent glows only (no solid dark fills) */
.syn-hero-scroll::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.55;
	background:
		radial-gradient(ellipse 50% 40% at 85% 30%, rgba(0, 207, 255, 0.18), transparent 60%),
		radial-gradient(ellipse 40% 35% at 10% 70%, rgba(123, 97, 255, 0.14), transparent 55%);
	transition: opacity 0.5s ease;
}

/* Dots — lower left (bottom of hero) */
.syn-hero-scroll-dots {
	position: absolute;
	left: max(16px, calc((100vw - 1180px) / 2));
	top: auto;
	bottom: 72px;
	transform: none;
	z-index: 20;
	display: flex;
	flex-direction: column;
	gap: 11px;
	padding: 12px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.75);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow: 0 8px 28px rgba(26, 58, 74, 0.08);
}

.syn-hero-scroll-dots-bottom {
	bottom: 64px;
	top: auto;
}

.syn-hero-scroll-dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border-radius: 999px;
	border: 1.5px solid rgba(0, 87, 255, 0.35);
	background: transparent;
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.syn-hero-scroll-dot.is-active {
	background: linear-gradient(135deg, #0057ff, #7b61ff);
	border-color: transparent;
	transform: scale(1.3);
	box-shadow: 0 0 12px rgba(0, 87, 255, 0.4);
}

.syn-hero-scroll-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	z-index: 20;
	background: rgba(255, 255, 255, 0.35);
}

.syn-hero-scroll-progress-bar {
	display: block;
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #00cfff, #0057ff, #7b61ff);
	box-shadow: 0 0 14px rgba(0, 87, 255, 0.45);
	transition: width 0.25s ease;
}

/* Slides */
.syn-hero-scroll-stage {
	position: relative;
	z-index: 5;
	flex: 1;
	width: 100%;
	min-height: inherit;
}

.syn-hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(36px) scale(0.985);
	filter: blur(6px);
	transition:
		opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
		filter 0.55s ease,
		visibility 0.55s;
	display: flex;
	align-items: center;
	padding: calc(var(--syn-header-offset, 88px) + 8px) 0 48px;
}

.syn-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
	filter: blur(0);
	z-index: 2;
}

.syn-hero-slide.is-exit-up {
	opacity: 0;
	transform: translateY(-40px) scale(0.985);
	filter: blur(4px);
}

.syn-hero-slide.is-exit-down {
	opacity: 0;
	transform: translateY(40px) scale(0.985);
	filter: blur(4px);
}

.syn-hero-slide-inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: clamp(20px, 3vw, 40px);
	align-items: center;
	width: 100%;
	position: relative;
	z-index: 2;
}

/* Glass content block — like site about card */
.syn-hero-slide-copy {
	padding: clamp(22px, 3vw, 36px) clamp(20px, 2.8vw, 34px);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.85);
	box-shadow:
		0 18px 50px rgba(26, 58, 74, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(22px) saturate(160%);
	-webkit-backdrop-filter: blur(22px) saturate(160%);
}

.syn-hero-slide-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 12px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #1a3a4a;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 207, 255, 0.28);
}

.syn-hero-slide-star { color: #ffb800; }

.syn-hero-slide-title {
	font-family: 'Syne', 'DM Sans', sans-serif;
	font-weight: 800;
	font-size: clamp(2rem, 4.8vw, 3.6rem);
	line-height: 1.02;
	letter-spacing: -0.035em;
	margin: 0 0 8px;
	display: flex;
	flex-direction: column;
	gap: 0;
	color: #1a3a4a;
}

.syn-hero-slide-title-main { display: block; }

.syn-hero-slide-title-accent {
	display: block;
	background: linear-gradient(120deg, #0057ff 0%, #7b61ff 50%, #e040fb 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.syn-hero-slide-subtitle {
	margin: 0 0 10px;
	font-size: clamp(1rem, 1.8vw, 1.2rem);
	font-weight: 600;
	color: #1a3a4a;
}

.syn-hero-slide-seo {
	margin: 0 0 16px;
	max-width: 36rem;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--syn-hero-muted);
}

.syn-hero-slide-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0 0 18px;
	padding: 0;
}

.syn-hero-slide-chips li {
	padding: 7px 12px;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 600;
	color: #1a3a4a;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(0, 87, 255, 0.12);
	backdrop-filter: blur(8px);
	animation: synHeroChipIn 0.5s ease both;
}

.syn-hero-slide.is-active .syn-hero-slide-chips li:nth-child(1) { animation-delay: 0.06s; }
.syn-hero-slide.is-active .syn-hero-slide-chips li:nth-child(2) { animation-delay: 0.12s; }
.syn-hero-slide.is-active .syn-hero-slide-chips li:nth-child(3) { animation-delay: 0.18s; }
.syn-hero-slide.is-active .syn-hero-slide-chips li:nth-child(4) { animation-delay: 0.24s; }
.syn-hero-slide.is-active .syn-hero-slide-chips li:nth-child(5) { animation-delay: 0.3s; }
.syn-hero-slide.is-active .syn-hero-slide-chips li:nth-child(6) { animation-delay: 0.36s; }

@keyframes synHeroChipIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.syn-hero-slide-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin: 0 0 18px;
	max-width: 420px;
}

.syn-hero-slide-stat {
	padding: 12px 10px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	text-align: center;
	box-shadow: 0 6px 18px rgba(26, 58, 74, 0.05);
}

.syn-hero-slide-stat strong {
	display: block;
	font-family: 'Syne', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	color: #1a3a4a;
}

.syn-hero-slide-stat span {
	font-size: 0.7rem;
	color: rgba(26, 58, 74, 0.65);
}

.syn-hero-slide-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.syn-hero-btn-ghost {
	color: #1a3a4a !important;
	border: 1px solid rgba(26, 58, 74, 0.16) !important;
	background: rgba(255, 255, 255, 0.65) !important;
	backdrop-filter: blur(12px);
}

.syn-hero-btn-ghost:hover {
	background: rgba(255, 255, 255, 0.9) !important;
	border-color: rgba(0, 87, 255, 0.3) !important;
}

/* Visual glass panel */
.syn-hero-slide-visual {
	position: relative;
	min-height: clamp(280px, 42vh, 440px);
	display: grid;
	place-items: center;
	perspective: 1200px;
}

.syn-hero-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.syn-hero-orb-core {
	width: min(48%, 220px);
	aspect-ratio: 1;
	background:
		radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), transparent 32%),
		radial-gradient(circle at 55% 60%, rgba(0, 207, 255, 0.55), rgba(123, 97, 255, 0.35) 55%, transparent 72%);
	box-shadow:
		0 0 50px rgba(0, 207, 255, 0.28),
		0 0 90px rgba(123, 97, 255, 0.18),
		inset 0 0 30px rgba(255, 255, 255, 0.45);
	animation: synHeroOrbFloat 6s ease-in-out infinite alternate;
	z-index: 2;
}

.syn-hero-orb-glow {
	width: 68%;
	aspect-ratio: 1;
	background: radial-gradient(circle, rgba(123, 97, 255, 0.22), transparent 65%);
	filter: blur(24px);
	z-index: 1;
	animation: synHeroOrbPulse 4s ease-in-out infinite alternate;
}

.syn-hero-orb-ring {
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	box-shadow: 0 0 24px rgba(0, 207, 255, 0.12);
	z-index: 3;
}

.syn-hero-orb-ring-a {
	width: 76%;
	aspect-ratio: 1;
	animation: synHeroSpin 18s linear infinite;
	border-top-color: rgba(0, 87, 255, 0.55);
	border-right-color: transparent;
}

.syn-hero-orb-ring-b {
	width: 90%;
	aspect-ratio: 1;
	animation: synHeroSpin 28s linear infinite reverse;
	border-bottom-color: rgba(224, 64, 251, 0.45);
	border-left-color: transparent;
}

@keyframes synHeroOrbFloat {
	from { transform: translateY(6px) rotateX(6deg) rotateY(-6deg); }
	to { transform: translateY(-12px) rotateX(-4deg) rotateY(8deg); }
}

@keyframes synHeroOrbPulse {
	from { transform: scale(0.94); opacity: 0.5; }
	to { transform: scale(1.06); opacity: 0.85; }
}

@keyframes synHeroSpin {
	to { transform: rotate(360deg); }
}

.syn-hero-light {
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	filter: blur(28px);
	opacity: 0.45;
	z-index: 1;
	animation: synHeroLight 5s ease-in-out infinite alternate;
}
.syn-hero-light-1 {
	top: 6%;
	right: 6%;
	background: rgba(0, 207, 255, 0.45);
}
.syn-hero-light-2 {
	bottom: 8%;
	left: 2%;
	background: rgba(123, 97, 255, 0.4);
	animation-delay: -2s;
}
.syn-hero-light-3 {
	top: 42%;
	right: 32%;
	width: 110px;
	height: 110px;
	background: rgba(224, 64, 251, 0.28);
	animation-delay: -3.5s;
}

@keyframes synHeroLight {
	from { transform: translate3d(0, 0, 0) scale(1); opacity: 0.3; }
	to { transform: translate3d(-10px, 14px, 0) scale(1.15); opacity: 0.55; }
}

.syn-hero-visual-card {
	position: relative;
	z-index: 5;
	width: min(100%, 400px);
	padding: 18px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.58);
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow:
		0 20px 50px rgba(26, 58, 74, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px) saturate(160%);
	-webkit-backdrop-filter: blur(20px) saturate(160%);
	transform: rotateY(-6deg) rotateX(3deg);
	animation: synHeroCardFloat 7s ease-in-out infinite alternate;
}

@keyframes synHeroCardFloat {
	from { transform: rotateY(-6deg) rotateX(3deg) translateY(0); }
	to { transform: rotateY(-1deg) rotateX(1deg) translateY(-10px); }
}

.syn-hero-visual-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	font-size: 1.35rem;
	background: rgba(255, 255, 255, 0.8);
	margin-bottom: 10px;
	box-shadow: 0 6px 18px rgba(0, 87, 255, 0.12);
}

.syn-hero-visual-label {
	display: block;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 12px;
	color: #1a3a4a;
}

.syn-hero-visual-shot {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 28px rgba(26, 58, 74, 0.1);
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top left;
}

.syn-hero-visual-stack {
	display: grid;
	gap: 8px;
}
.syn-hero-visual-stack span {
	display: block;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(90deg, rgba(0, 87, 255, 0.06), rgba(123, 97, 255, 0.12), rgba(0, 87, 255, 0.06));
	background-size: 200% 100%;
	animation: synHeroShimmer 2.4s linear infinite;
}
.syn-hero-visual-stack span:nth-child(2) { width: 86%; }
.syn-hero-visual-stack span:nth-child(3) { width: 72%; }

@keyframes synHeroShimmer {
	to { background-position: -200% 0; }
}

.syn-hero-float-card {
	position: absolute;
	z-index: 6;
	padding: 10px 14px;
	border-radius: 14px;
	font-size: 0.74rem;
	font-weight: 700;
	color: #1a3a4a;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(14px);
	box-shadow: 0 10px 26px rgba(26, 58, 74, 0.08);
	animation: synHeroFloatCard 5s ease-in-out infinite alternate;
}

.syn-hero-float-card-1 { top: 10%; left: 0; }
.syn-hero-float-card-2 { top: 36%; right: -2%; animation-delay: -1.5s; }
.syn-hero-float-card-3 { bottom: 14%; left: 8%; animation-delay: -3s; }

@keyframes synHeroFloatCard {
	from { transform: translateY(0); }
	to { transform: translateY(-12px); }
}

.syn-hero-scroll-hint {
	position: absolute;
	bottom: 18px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(26, 58, 74, 0.55);
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	animation: synHeroHint 1.6s ease-in-out infinite;
	pointer-events: none;
}

.syn-hero-scroll-hint.is-hidden {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s;
}

@keyframes synHeroHint {
	0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
	50% { transform: translate(-50%, 5px); opacity: 0.95; }
}

/* Header stays normal light style over glass hero */
body.home.syn-hero-in-view .syn-peach-header:not(.scrolled) .syn-peach-nav-pill a:not(.syn-peach-btn) {
	color: inherit;
}
body.home.syn-hero-in-view .syn-peach-header:not(.scrolled) .syn-peach-burger span {
	background: #1a3a4a;
}

.syn-peach-hero-ref { display: none !important; }

/* Tight handoff into next section */
.syn-hero-scroll + .syn-hero-trust-bar {
	position: relative;
	z-index: 5;
	margin-top: 0 !important;
	padding-top: 8px !important;
	padding-bottom: 4px !important;
}

.syn-hero-trust-bar + .syn-hero-features-bar {
	margin-top: 0 !important;
	padding-top: 4px !important;
	padding-bottom: 4px !important;
}

body.home .syn-hero-trust-bar.syn-peach-section-compact,
body.home .syn-hero-features-bar {
	padding-top: 8px !important;
	padding-bottom: 8px !important;
}

@media (max-width: 992px) {
	.syn-hero-scroll {
		min-height: 100svh;
	}
	.syn-hero-scroll-dots,
	.syn-hero-scroll-dots-bottom {
		left: 12px;
		bottom: 56px;
	}
	.syn-hero-slide-inner {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	.syn-hero-slide-visual {
		order: -1;
		min-height: 220px;
	}
	.syn-hero-visual-card {
		width: min(100%, 340px);
		transform: none;
		animation: synHeroCardFloatMobile 6s ease-in-out infinite alternate;
	}
	@keyframes synHeroCardFloatMobile {
		from { transform: translateY(0); }
		to { transform: translateY(-8px); }
	}
	.syn-hero-float-card-2 { right: 0; }
	.syn-hero-slide-title { font-size: clamp(1.85rem, 8vw, 2.8rem); }
	.syn-hero-slide {
		padding-top: calc(var(--syn-header-offset, 76px) + 6px);
		padding-bottom: 56px;
		align-items: flex-start;
		overflow-y: auto;
	}
}

@media (max-width: 640px) {
	.syn-hero-slide-ctas {
		flex-direction: column;
		align-items: stretch;
	}
	.syn-hero-slide-ctas .syn-peach-btn {
		justify-content: center;
		width: 100%;
	}
	.syn-hero-float-card-3 { display: none; }
	.syn-hero-slide-copy {
		padding: 18px 16px;
		border-radius: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.syn-hero-orb-core,
	.syn-hero-orb-glow,
	.syn-hero-orb-ring,
	.syn-hero-light,
	.syn-hero-visual-card,
	.syn-hero-float-card,
	.syn-hero-scroll-hint,
	.syn-hero-visual-stack span {
		animation: none !important;
	}
	.syn-hero-slide {
		transition: opacity 0.2s ease;
		filter: none;
		transform: none;
	}
}

/* ── Advanced glass service showcase (replaces dots + plain card) ── */
.syn-hero-scroll-dots { display: none !important; }

.syn-hero-showcase {
	position: relative;
	min-height: clamp(320px, 48vh, 500px);
	display: grid;
	place-items: center;
	perspective: 1400px;
}

.syn-hero-showcase-glow {
	position: absolute;
	width: 72%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 207, 255, 0.28), rgba(123, 97, 255, 0.12) 45%, transparent 70%);
	filter: blur(18px);
	animation: synHeroOrbPulse 4s ease-in-out infinite alternate;
	z-index: 0;
}

.syn-hero-showcase-ring {
	position: absolute;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	pointer-events: none;
	z-index: 1;
}
.syn-hero-showcase-ring-a {
	width: 78%;
	aspect-ratio: 1;
	border-top-color: rgba(0, 87, 255, 0.55);
	border-right-color: transparent;
	animation: synHeroSpin 20s linear infinite;
}
.syn-hero-showcase-ring-b {
	width: 94%;
	aspect-ratio: 1;
	border-bottom-color: rgba(224, 64, 251, 0.4);
	border-left-color: transparent;
	animation: synHeroSpin 28s linear infinite reverse;
}

.syn-hero-showcase-stage {
	position: relative;
	z-index: 5;
	width: min(100%, 440px);
}

.syn-hero-showcase-glass {
	position: relative;
	padding: 16px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.52);
	border: 1px solid rgba(255, 255, 255, 0.92);
	box-shadow:
		0 28px 60px rgba(26, 58, 74, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(22px) saturate(170%);
	-webkit-backdrop-filter: blur(22px) saturate(170%);
	transform: rotateY(-8deg) rotateX(4deg);
	animation: synHeroCardFloat 7s ease-in-out infinite alternate;
	overflow: hidden;
}

.syn-hero-showcase-top {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.syn-hero-showcase-badge {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	display: grid;
	place-items: center;
	font-size: 1.35rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(0, 207, 255, 0.18));
	border: 1px solid rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 22px rgba(0, 87, 255, 0.12);
}

.syn-hero-showcase-kicker {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(26, 58, 74, 0.55);
}

.syn-hero-showcase-name {
	margin: 2px 0 0;
	font-family: 'Syne', sans-serif;
	font-weight: 700;
	font-size: 1.05rem;
	color: #1a3a4a;
}

.syn-hero-showcase-media {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 14px 36px rgba(26, 58, 74, 0.12);
	background: rgba(255, 255, 255, 0.35);
}

.syn-hero-showcase-media img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: top left;
	transform: scale(1.03);
	transition: transform 0.85s ease;
}

.syn-hero-slide.is-active .syn-hero-showcase-media img {
	transform: scale(1);
}

.syn-hero-showcase-media-shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.35) 48%, transparent 62%);
	transform: translateX(-120%);
	animation: synHeroShine 4.5s ease-in-out infinite;
	pointer-events: none;
}

@keyframes synHeroShine {
	0%, 40% { transform: translateX(-120%); }
	70%, 100% { transform: translateX(120%); }
}

.syn-hero-showcase-media-empty {
	min-height: 200px;
	display: grid;
	place-items: center;
	font-size: 3rem;
}

.syn-hero-showcase-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-top: 12px;
}

.syn-hero-showcase-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 10px 6px;
	border-radius: 14px;
	text-align: center;
	font-size: 0.68rem;
	font-weight: 700;
	color: #1a3a4a;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.85);
}

.syn-hero-showcase-feature-icon { font-size: 1.05rem; }

.syn-hero-orbit {
	position: absolute;
	z-index: 6;
	padding: 10px 14px;
	border-radius: 999px;
	font-size: 0.74rem;
	font-weight: 700;
	color: #1a3a4a;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(14px);
	box-shadow: 0 12px 28px rgba(26, 58, 74, 0.1);
	animation: synHeroFloatCard 5s ease-in-out infinite alternate;
}

.syn-hero-orbit-1 { top: 6%; left: -6%; }
.syn-hero-orbit-2 { top: 42%; right: -10%; animation-delay: -1.6s; }
.syn-hero-orbit-3 { bottom: 8%; left: 4%; animation-delay: -3s; }

@media (max-width: 992px) {
	.syn-hero-showcase {
		order: -1;
		min-height: 260px;
	}
	.syn-hero-showcase-glass {
		transform: none;
		animation: synHeroCardFloatMobile 6s ease-in-out infinite alternate;
	}
	.syn-hero-orbit-2 { right: 0; }
	.syn-hero-orbit-3 { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.syn-hero-showcase-glass,
	.syn-hero-showcase-glow,
	.syn-hero-showcase-ring,
	.syn-hero-orbit,
	.syn-hero-showcase-media-shine {
		animation: none !important;
	}
}
