.asl-tech-image {
	--asl-line-color: #fff;
	--asl-signal-speed: 14s;
	--asl-line-opacity: .78;
	--asl-line-width: 1.4;
	--asl-glow: .55;
	--asl-radius: 0px;
	--asl-darken: 0;
	--asl-height: 520px;
	--asl-mobile-height: 360px;
	--asl-image-position: center center;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--asl-radius);
	background: #0d1d34;
	color: var(--asl-line-color);
}

.asl-tech-image--portrait { aspect-ratio: 4 / 5; }
.asl-tech-image--square { aspect-ratio: 1 / 1; }
.asl-tech-image--wide { aspect-ratio: 16 / 10; }
.asl-tech-image--banner { aspect-ratio: 1672 / 505; }
.asl-tech-image--custom { height: var(--asl-height); }

.asl-tech-image--overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	height: 100%;
	aspect-ratio: auto;
	border-radius: inherit;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}

.asl-tech-image--overlay.asl-tech-overlay-ready { opacity: 1; }

.asl-tech-overlay-host {
	position: relative !important;
	overflow: hidden;
	isolation: isolate;
}

.asl-tech-overlay-host > :not(.asl-tech-image--overlay) {
	position: relative;
	z-index: 2;
}

.asl-tech-image__photo {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: var(--asl-image-position);
	transform: none;
	animation: none;
}

.asl-tech-image__shade {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background: rgb(0 12 28 / var(--asl-darken));
}

.asl-tech-image__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
	color: var(--asl-line-color);
	mix-blend-mode: screen;
}

.asl-tech-image__circuit path {
	fill: none;
	stroke: currentColor;
	stroke-width: var(--asl-line-width);
	stroke-linecap: round;
	stroke-linejoin: round;
	opacity: calc(var(--asl-line-opacity) * .42);
	vector-effect: non-scaling-stroke;
}

.asl-tech-image__signals path {
	fill: none;
	stroke: currentColor;
	stroke-width: calc(var(--asl-line-width) * 1.7);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-dasharray: 4 112;
	stroke-dashoffset: 0;
	opacity: var(--asl-line-opacity);
	filter: opacity(calc(.55 + var(--asl-glow) * .45));
	vector-effect: non-scaling-stroke;
	animation: asl-tech-image-signal var(--asl-signal-speed) linear infinite;
}

.asl-tech-image__signals path:nth-child(2n) { animation-delay: calc(var(--asl-signal-speed) * -.34); }
.asl-tech-image__signals path:nth-child(3n) { animation-delay: calc(var(--asl-signal-speed) * -.67); }
.asl-tech-image__signals path:nth-child(5n) { animation-delay: calc(var(--asl-signal-speed) * -.82); }

.asl-tech-image__nodes circle {
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 1;
	transform-box: fill-box;
	transform-origin: center;
	opacity: calc(var(--asl-line-opacity) * .28);
	animation: asl-tech-image-node 3.8s ease-in-out infinite;
}

.asl-tech-image__nodes circle:nth-child(2n) { animation-delay: -1.2s; }
.asl-tech-image__nodes circle:nth-child(3n) { animation-delay: -2.4s; }

.asl-tech-image__dots { opacity: calc(var(--asl-line-opacity) * .18); }
.asl-tech-image__dots rect { color: currentColor; }

.asl-no-dots .asl-tech-image__dots,
.asl-no-nodes .asl-tech-image__nodes { display: none; }

.asl-lines--left .asl-tech-image__group--right,
.asl-lines--left .asl-tech-image__group--center,
.asl-lines--right .asl-tech-image__group--left,
.asl-lines--right .asl-tech-image__group--center,
.asl-lines--corners .asl-tech-image__group--center { display: none; }

.asl-lines--left .asl-tech-image__dots .asl-tech-image__group--right,
.asl-lines--right .asl-tech-image__dots .asl-tech-image__group--left { display: none; }

.asl-is-static .asl-tech-image__signals path,
.asl-is-static .asl-tech-image__nodes circle { animation: none; }

@keyframes asl-tech-image-signal {
	to { stroke-dashoffset: -464; }
}

@keyframes asl-tech-image-node {
	0%, 66%, 100% { opacity: calc(var(--asl-line-opacity) * .22); transform: scale(.72); }
	78% { opacity: var(--asl-line-opacity); transform: scale(1.38); }
}

@media (max-width: 767px) {
	.asl-tech-image--custom { height: var(--asl-mobile-height); }
	.asl-tech-image__circuit path { stroke-width: calc(var(--asl-line-width) * .82); }
	.asl-tech-image__signals path { stroke-width: calc(var(--asl-line-width) * 1.35); }
}

@media (prefers-reduced-motion: reduce) {
	.asl-tech-image__signals path,
	.asl-tech-image__nodes circle { animation: none !important; }
}
