/**
 * Abannet FX Layer — Wireless · IoT · Quantum Net Aesthetic
 */

/* ─── Page Load Sequence ─── */
body:not(.is-loaded) .fx-reveal {
	opacity: 0;
	transform: translateY(28px);
}

body.is-loaded .fx-reveal {
	animation: fx-rise 0.9s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)) forwards;
}

body.is-loaded .fx-d1 { animation-delay: 0.1s; }
body.is-loaded .fx-d2 { animation-delay: 0.22s; }
body.is-loaded .fx-d3 { animation-delay: 0.34s; }
body.is-loaded .fx-d4 { animation-delay: 0.46s; }
body.is-loaded .fx-d5 { animation-delay: 0.56s; }

@keyframes fx-rise {
	from { opacity: 0; transform: translateY(28px); }
	to { opacity: 1; transform: translateY(0); }
}

/* ─── Cursor Glow (desktop) ─── */
.fx-cursor-glow {
	display: none;
}

.site-header--quantum {
	position: relative;
	z-index: 100;
}

.site-main,
.site-footer {
	position: relative;
	z-index: 1;
}

/* ─── Hero Canvas & Atmosphere ─── */
.hero-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.55;
	pointer-events: none;
}

.hero-bg {
	z-index: 0;
}

.hero-content {
	z-index: 2;
}

.hero-grid--animated {
	animation: grid-drift 20s linear infinite;
}

@keyframes grid-drift {
	0% { background-position: 0 0; }
	100% { background-position: 48px 48px; }
}

.hero-data-stream {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 3px,
		rgba(34, 211, 238, 0.02) 3px,
		rgba(34, 211, 238, 0.02) 4px
	);
	animation: stream-flow 8s linear infinite;
	mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

@keyframes stream-flow {
	0% { transform: translateY(0); }
	100% { transform: translateY(40px); }
}

.hero-scanlines {
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0, 0, 0, 0.03) 2px,
		rgba(0, 0, 0, 0.03) 4px
	);
	pointer-events: none;
	opacity: 0.4;
}

/* ─── Live Badge ─── */
.hero-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	margin-bottom: 10px;
	background: rgba(56, 189, 248, 0.08);
	border: 1px solid rgba(56, 189, 248, 0.22);
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-accent-bright);
	letter-spacing: 0.02em;
}

.live-dot {
	width: 8px;
	height: 8px;
	background: var(--color-cyan);
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(34, 211, 238, 0.55);
	animation: live-blink 2s ease infinite;
}

@keyframes live-blink {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(0.85); }
}

.text-gradient--live {
	background-size: 200% auto;
}

.hero-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--color-border);
}

.hero-trust-row span {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

.hero-trust-row strong {
	color: var(--color-accent-bright);
	font-size: 1.125rem;
	margin-left: 4px;
}

/* ─── Hero Wireless Link Visual ─── */
.hero-link-stage {
	position: relative;
	width: min(100%, 720px);
	margin: 0 auto;
}

.hero-link-panel {
	position: relative;
	padding: 24px 26px 22px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(56, 189, 248, 0.32);
	border-radius: 24px;
	box-shadow:
		0 28px 72px rgba(14, 165, 233, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: hidden;
	transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero-link-panel--pulse {
	animation: hero-panel-pulse 0.65s ease;
}

@keyframes hero-panel-pulse {
	0% {
		border-color: rgba(56, 189, 248, 0.32);
		box-shadow: 0 24px 60px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
	}
	45% {
		border-color: rgba(34, 211, 238, 0.65);
		box-shadow: 0 28px 70px rgba(14, 165, 233, 0.2), 0 0 40px rgba(34, 211, 238, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
	}
	100% {
		border-color: rgba(56, 189, 248, 0.32);
		box-shadow: 0 24px 60px rgba(14, 165, 233, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
	}
}

.hero-link-panel::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
	mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

.hero-link-head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
}

.hero-link-badge,
.hero-link-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.hero-link-badge {
	color: var(--color-accent-bright);
	background: rgba(56, 189, 248, 0.1);
	border: 1px solid rgba(56, 189, 248, 0.22);
}

.hero-link-status {
	color: #059669;
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-link-badge-dot,
.hero-link-status-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 8px currentColor;
	animation: hero-link-live 2s ease infinite;
}

.hero-link-status-dot {
	background: #10b981;
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
}

@keyframes hero-link-live {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.45; transform: scale(0.85); }
}

.hero-link-scene {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	min-height: 220px;
	padding: 10px 0 14px;
}

.hero--showcase .hero-diagram-block {
	position: relative;
	z-index: 1;
	overflow: hidden;
	isolation: isolate;
	margin-bottom: 4px;
	padding: 8px 6px 6px;
	background: linear-gradient(180deg, rgba(240, 249, 255, 0.55) 0%, rgba(255, 255, 255, 0) 100%);
	border: 1px solid rgba(56, 189, 248, 0.16);
	border-radius: 14px;
	transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero--showcase .hero-diagram-block:hover {
	border-color: rgba(34, 211, 238, 0.42);
	box-shadow:
		0 0 48px rgba(14, 165, 233, 0.14),
		inset 0 0 50px rgba(34, 211, 238, 0.05);
}

/* Quantum link visual → assets/css/hero.css */

.hero-brand-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 6px;
}

.hero-brand-name {
	font-size: 1rem;
	font-weight: 900;
	color: var(--color-navy);
	letter-spacing: 0.02em;
}

.hero-brand-sep {
	width: 1px;
	height: 16px;
	background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.5), transparent);
}

.hero-brand-service {
	font-size: 0.9375rem;
	font-weight: 800;
	background: linear-gradient(90deg, #0ea5e9, #22d3ee);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	transition: filter 0.3s ease;
}

.hero--showcase .hero-diagram-block:hover .hero-brand-service {
	filter: brightness(1.15);
}

.hero--showcase .fx-node {
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero--showcase .fx-node:hover {
	transform: translateY(-3px);
}

.hero--showcase .fx-node:hover .hero-radio-icon--premium {
	box-shadow:
		0 14px 36px rgba(14, 165, 233, 0.28),
		0 0 40px rgba(34, 211, 238, 0.28);
}

.hero-node-title {
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--color-navy);
}

.hero-node-chip {
	display: inline-block;
	padding: 2px 8px;
	font-size: 0.5625rem;
	font-weight: 700;
	color: var(--color-accent-bright);
	background: rgba(56, 189, 248, 0.1);
	border: 1px solid rgba(56, 189, 248, 0.22);
	border-radius: 999px;
	letter-spacing: 0.03em;
	transition: background 0.3s ease, border-color 0.3s ease;
}

.hero--showcase .fx-node:hover .hero-node-chip {
	background: rgba(56, 189, 248, 0.18);
	border-color: rgba(34, 211, 238, 0.45);
}

.hero--showcase .fx-core {
	transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.hero--showcase .fx-core:not(.quantum-badge):hover {
	transform: scale(1.04);
	box-shadow: 0 0 36px rgba(34, 211, 238, 0.28);
	border-color: rgba(56, 189, 248, 0.55);
}

.hero--showcase .hero-radio-node {
	z-index: 2;
	padding-bottom: 2px;
}

.hero--showcase .hero-radio-node--pop {
	justify-self: start;
}

.hero--showcase .hero-radio-node--cpe {
	justify-self: end;
}

.hero-tech-highlight {
	background: linear-gradient(90deg, #0284c7, #0ea5e9, #22d3ee, #67e8f9);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 800;
}

.hero-tech-slide.is-active .hero-tech-highlight {
	animation: hero-highlight-shimmer 3.5s ease-in-out infinite;
}

@keyframes hero-highlight-shimmer {
	0%, 100% { background-position: 0% center; filter: brightness(1); }
	50% { background-position: 100% center; filter: brightness(1.2); }
}

.hero-radio-node {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
}

.hero-radio-ring {
	position: absolute;
	top: 4px;
	left: 50%;
	width: 76px;
	height: 76px;
	margin-left: -38px;
	border-radius: 50%;
	border: 1px solid rgba(56, 189, 248, 0.35);
	animation: hero-radio-pulse 2.8s ease-out infinite;
}

.hero-radio-node--cpe .hero-radio-ring {
	animation-delay: 1.4s;
}

@keyframes hero-radio-pulse {
	0% { transform: scale(0.85); opacity: 0.7; }
	70% { transform: scale(1.35); opacity: 0; }
	100% { transform: scale(1.35); opacity: 0; }
}

.hero-radio-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 68px;
	height: 68px;
	border-radius: 18px;
	background: linear-gradient(145deg, #1e3a5f, #2d4f73);
	color: #7dd3fc;
	box-shadow: 0 12px 32px rgba(30, 58, 95, 0.28), 0 0 28px rgba(56, 189, 248, 0.2);
}

.hero-radio-icon svg {
	width: 30px;
	height: 30px;
}

.hero-radio-icon--premium {
	background: linear-gradient(155deg, #0f172a 0%, #1e3a5f 55%, #0c4a6e 100%);
	border: 1px solid rgba(56, 189, 248, 0.5);
	box-shadow:
		0 10px 28px rgba(14, 165, 233, 0.22),
		0 0 32px rgba(34, 211, 238, 0.15),
		inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-radio-icon--premium::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	padding: 2px;
	background: conic-gradient(from 180deg, #22d3ee, transparent, #0ea5e9, transparent, #22d3ee);
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	-webkit-mask-composite: xor;
	animation: hero-icon-orbit 4s linear infinite;
	pointer-events: none;
}

@keyframes hero-icon-orbit {
	to { transform: rotate(360deg); }
}

.hero-scene-svg {
	width: 34px;
	height: 34px;
	display: block;
	filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.45));
}

.hero-radio-node strong {
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--color-navy);
}

.hero-radio-node small {
	font-size: 0.625rem;
	font-weight: 600;
	color: var(--color-text-muted);
	letter-spacing: 0.02em;
}

.hero-link-core {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	min-width: 120px;
	padding: 14px 16px;
	background: rgba(240, 249, 255, 0.92);
	border: 1px solid rgba(56, 189, 248, 0.35);
	border-radius: 16px;
	box-shadow: 0 0 32px rgba(34, 211, 238, 0.2);
}

.hero-link-speed {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--color-accent-bright);
	font-variant-numeric: tabular-nums;
	direction: ltr;
	animation: hero-speed-flicker 4s ease-in-out infinite;
}

@keyframes hero-speed-flicker {
	0%, 92%, 100% { opacity: 1; }
	94% { opacity: 0.65; }
	96% { opacity: 1; }
}

.hero-link-metric {
	font-size: 0.5625rem;
	font-weight: 700;
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hero-tech-slider {
	position: relative;
	z-index: 1;
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid rgba(56, 189, 248, 0.18);
}

.hero-tech-slider-bar {
	position: relative;
	height: 4px;
	background: rgba(56, 189, 248, 0.14);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 24px;
}

.hero-tech-slider-fill {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right center;
	will-change: transform;
	background: linear-gradient(90deg, var(--color-accent-bright), var(--color-cyan), #fff);
	background-size: 200% 100%;
	border-radius: inherit;
	box-shadow: 0 0 12px rgba(34, 211, 238, 0.45);
}

.hero-tech-slider-fill.is-running {
	animation: hero-tech-progress 8s linear forwards, hero-fill-shimmer 2s linear infinite;
}

@keyframes hero-tech-progress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

@keyframes hero-fill-shimmer {
	0% { background-position: 100% 0; }
	100% { background-position: -100% 0; }
}

/* ─── Hero Showcase (full-width slider) ─── */
.hero--showcase,
.hero--showcase *,
.hero--showcase *::before,
.hero--showcase *::after {
	box-sizing: border-box;
}

.hero--showcase {
	min-height: auto;
	overflow: hidden;
}

.hero--showcase .hero-scroll-hint {
	display: none;
}

.hero-content--showcase {
	display: block;
	padding: calc(var(--header-height) + 6px) 12px 10px;
}

.hero-showcase {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	overflow: hidden;
}

.hero-showcase-panel {
	width: 100%;
	padding: 12px 14px 10px;
	overflow: hidden;
}

.hero--showcase .hero-link-head {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 6px;
	margin-bottom: 8px;
}

.hero--showcase .hero-link-badge {
	justify-self: start;
}

.hero--showcase .hero-showcase-live {
	justify-self: center;
}

.hero--showcase .hero-link-status {
	justify-self: end;
}

.hero-showcase-live {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 999px;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--color-navy);
	background: rgba(56, 189, 248, 0.08);
	border: 1px solid rgba(56, 189, 248, 0.2);
}

.hero-showcase-live .live-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 8px rgba(16, 185, 129, 0.7);
	animation: hero-link-live 2s ease infinite;
}

.hero--showcase .hero-link-speed {
	font-size: 1.25rem;
}

.hero--showcase .hero-link-core {
	min-width: 112px;
	padding: 10px 12px;
}

.hero--showcase .hero-radio-icon {
	width: 58px;
	height: 58px;
	border-radius: 16px;
}

.hero--showcase .hero-radio-ring {
	width: 66px;
	height: 66px;
	margin-left: -33px;
}

.hero--showcase .hero-tech-slider {
	margin-top: 10px;
	padding-top: 10px;
	transition: background 0.35s ease;
	border-radius: 12px;
}

.hero--showcase .hero-tech-slider:hover {
	background: linear-gradient(180deg, rgba(240, 249, 255, 0.35) 0%, transparent 100%);
}

.hero--showcase .hero-tech-slider:hover .hero-tech-tag {
	border-color: rgba(34, 211, 238, 0.45);
	box-shadow: 0 0 18px rgba(34, 211, 238, 0.12);
}

.hero--showcase .hero-tech-slider-bar {
	margin-bottom: 10px;
}

.hero--showcase .hero-tech-slides {
	min-height: 68px;
	text-align: center;
}

.hero--showcase .hero-tech-dots {
	margin-top: 12px;
}

.hero-showcase-footer {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid rgba(56, 189, 248, 0.16);
	text-align: center;
}

.hero--showcase .hero-tech-slide {
	left: 0;
	right: 0;
}

.hero--showcase .hero-tech-slide strong {
	font-size: 1rem;
	margin-bottom: 3px;
}

.hero--showcase .hero-tech-slide p {
	font-size: 0.8125rem;
	line-height: 1.4;
}

.hero-showcase-footer .hero-actions {
	justify-content: center;
	margin-bottom: 0;
	gap: 10px;
}

.hero--showcase .hero-actions .btn-lg {
	padding: 10px 18px;
	font-size: 0.9375rem;
}

.hero--showcase .hero-wave svg {
	height: 40px;
}

body.abannet-front-page .stats-bar {
	margin-top: -16px;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hero-tech-slides {
	position: relative;
	min-height: 100px;
}

.hero-tech-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateY(16px) scale(0.97);
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.hero-tech-slide.is-active {
	position: relative;
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.hero-tech-slide.is-active .hero-tech-tag {
	animation: hero-tag-pop 0.5s ease 0.1s both;
}

.hero-tech-slide.is-active strong {
	animation: hero-tech-text-in 0.55s ease 0.15s both;
}

.hero-tech-slide.is-active p {
	animation: hero-tech-text-in 0.55s ease 0.25s both;
}

@keyframes hero-tag-pop {
	from { opacity: 0; transform: translateY(6px) scale(0.92); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes hero-tech-text-in {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.hero-tech-tag {
	display: inline-block;
	padding: 4px 12px;
	margin-bottom: 8px;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--color-accent-bright);
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.25);
	border-radius: 999px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-tech-slide strong {
	display: block;
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--color-navy);
	margin-bottom: 6px;
	line-height: 1.35;
}

.hero-tech-slide p {
	margin: 0;
	font-size: 0.875rem;
	color: var(--color-text-light);
	line-height: 1.55;
}

.hero-tech-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 16px;
}

.hero-tech-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(56, 189, 248, 0.22);
	cursor: pointer;
	transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.hero-tech-dot.is-active {
	background: var(--color-accent-bright);
	box-shadow: 0 0 14px rgba(14, 165, 233, 0.55);
	transform: scale(1.25);
}

.hero-stats-float {
	position: absolute;
	left: -8px;
	bottom: 12px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 3;
}

.float-stat {
	padding: 10px 14px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(56, 189, 248, 0.2);
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(14, 165, 233, 0.08);
	backdrop-filter: blur(8px);
}

.float-stat strong {
	display: block;
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--color-accent-bright);
}

.float-stat span {
	font-size: 0.6875rem;
	color: var(--color-text-muted);
}

/* ─── Scroll Hint ─── */
.hero-scroll-hint {
	position: absolute;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 3;
	color: var(--color-text-muted);
	font-size: 0.75rem;
	animation: hint-bob 2.5s ease infinite;
}

.scroll-line {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, var(--color-accent-bright), transparent);
}

@keyframes hint-bob {
	0%, 100% { transform: translateX(-50%) translateY(0); }
	50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Glowing Buttons ─── */
.btn-glow {
	position: relative;
	box-shadow: 0 4px 20px rgba(14, 165, 233, 0.28);
}

.btn-glow::before {
	display: none;
}

.btn-glass {
	backdrop-filter: blur(12px);
	background: rgba(255, 255, 255, 0.5) !important;
	border-color: rgba(56, 189, 248, 0.3) !important;
	color: var(--color-accent-bright) !important;
}

/* ─── 3D Card Tilt & Holographic Hover ─── */
.fx-tilt,
.service-card,
.why-card,
.cyber-card,
.float-stat,
.tariff-row:not(.tariff-row-head) {
	transform-style: preserve-3d;
	transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
		box-shadow 0.4s ease,
		border-color 0.3s ease;
}

.service-card,
.why-card {
	position: relative;
	overflow: hidden;
}

.service-card::after,
.why-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		transparent 40%,
		rgba(34, 211, 238, 0.06) 50%,
		transparent 60%
	);
	transform: translateX(-120%);
	transition: transform 0.7s ease;
	pointer-events: none;
}

.service-card:hover::after,
.why-card:hover::after {
	transform: translateX(120%);
}

.service-card:hover,
.why-card:hover {
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(26, 43, 75, 0.08);
}

/* ─── Stats Bar ─── */
.stats-grid::before {
	display: none;
}

.stat-item:hover .stat-icon {
	animation: icon-bounce 0.6s var(--ease-spring, cubic-bezier(0.34, 1.56, 0.64, 1));
}

@keyframes icon-bounce {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.15) rotate(-5deg); }
}

/* ─── Section Headers Pulse ─── */
.section-badge {
	animation: none;
}

.cta-box::after {
	display: none;
}

.site-footer::before {
	content: '';
	display: block;
	height: 2px;
	background: var(--color-primary);
	opacity: 0.35;
}

/* ─── Tariff Row Hover Scan ─── */
.tariff-row:not(.tariff-row-head) {
	position: relative;
	overflow: hidden;
}

.tariff-row:not(.tariff-row-head)::after {
	content: '';
	position: absolute;
	top: 0;
	right: -100%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.06), transparent);
	transition: right 0.6s ease;
	pointer-events: none;
}

.tariff-row:not(.tariff-row-head):hover::after {
	right: 150%;
}

/* ─── Tariff Row Hover Scan ─── */
.nav-menu li a {
	position: relative;
	overflow: hidden;
}

/* ─── Enhanced Fade In ─── */
.fade-in {
	transform: translateY(50px) scale(0.96);
	filter: blur(4px);
	transition:
		opacity 0.8s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
		transform 0.8s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
		filter 0.8s ease;
}

.fade-in.visible {
	filter: blur(0);
}

/* ─── Nav Link Ripple ─── */
@media (max-width: 1024px) {
	.fx-cursor-glow { display: none; }
	.hero-scroll-hint { display: none; }
	.hero-visual { display: flex !important; }
}

@media (max-width: 768px) {
	.hero-content--showcase {
		padding: calc(var(--header-height) + 4px) 10px 8px;
	}

	.hero-showcase-panel {
		padding: 10px 10px 8px;
	}

	.hero--showcase .hero-link-head {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 4px;
		margin-bottom: 6px;
	}

	.hero--showcase .hero-link-head span {
		font-size: 0.5625rem;
		padding: 3px 8px;
	}

	.hero--showcase .hero-diagram-block {
		padding: 6px 4px 4px;
		margin-bottom: 2px;
	}

	.hero-brand-line {
		margin-bottom: 4px;
		gap: 6px;
	}

	.hero-brand-name {
		font-size: 0.9375rem;
	}

	.hero-brand-service {
		font-size: 0.8125rem;
	}

	.hero-node-title {
		font-size: 0.625rem;
	}

	.hero-node-chip {
		font-size: 0.5rem;
		padding: 1px 6px;
	}

	.hero--showcase .hero-link-core {
		min-width: 88px;
		padding: 6px 8px;
		margin-bottom: 4px;
	}

	.hero--showcase .hero-radio-icon {
		width: 46px;
		height: 46px;
		border-radius: 14px;
	}

	.hero--showcase .hero-radio-ring {
		width: 54px;
		height: 54px;
		margin-left: -27px;
	}

	.hero-scene-svg {
		width: 26px;
		height: 26px;
	}

	.hero--showcase .hero-link-speed {
		font-size: 0.9375rem;
	}

	.hero-link-metric {
		font-size: 0.5rem;
	}

	.hero--showcase .hero-tech-slides {
		min-height: 76px;
	}

	.hero--showcase .hero-tech-slide strong {
		font-size: 0.875rem;
	}

	.hero--showcase .hero-tech-slide p {
		font-size: 0.6875rem;
	}

	.hero--showcase .hero-tech-slider {
		margin-top: 8px;
		padding-top: 8px;
	}

	.hero--showcase .hero-tech-slider-bar {
		margin-bottom: 8px;
	}

	.hero--showcase .hero-tech-dots {
		margin-top: 8px;
	}

	.hero-showcase-footer {
		margin-top: 6px;
		padding-top: 6px;
	}

	.hero--showcase .hero-actions {
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero--showcase .hero-actions .btn-lg {
		flex: 1 1 auto;
		min-width: 0;
		padding: 9px 14px;
		font-size: 0.8125rem;
	}
}

@media (max-width: 400px) {
	.hero--showcase .hero-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero--showcase .hero-actions .btn-lg {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero-radio-ring,
	.hero-link-speed,
	.hero-tech-slider-fill.is-running,
	.hero-radio-icon--premium::before {
		animation: none !important;
	}

	.hero-tech-slider-fill {
		transform: scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {
	.fx-cursor-glow,
	.hero-canvas,
	.hero-data-stream,
	.hero-scanlines { display: none !important; }

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	body.is-loaded .fx-reveal,
	.fade-in {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}
}
