/*
 * Shared continuous background for Starlight landing pages.
 * Loaded only when the current page contains at least one Starlight shortcode.
 */
html {
	background: #060018;
	overflow-x: hidden;
}

body.starlight-landing-page {
	--sl-container-max: 1320px;
	--sl-container-gutter: 48px;
	--sl-container-width: min(100% - var(--sl-container-gutter), var(--sl-container-max));
	position: relative;
	isolation: isolate;
	min-height: 100%;
	overflow-x: hidden;
	color-scheme: dark;
	background: #060018 !important;
}

@media (max-width: 767px) {
	body.starlight-landing-page {
		--sl-container-gutter: 24px;
	}
}

body.starlight-landing-light {
	background: #060018 !important;
}

@supports (overflow-x: clip) {
	html,
	body.starlight-landing-page {
		overflow-x: clip;
	}
}

@supports selector(html:has(body.starlight-landing-light)) {
	html:has(body.starlight-landing-light) {
		background: #060018;
	}
}

body.starlight-landing-page::before,
body.starlight-landing-page::after {
	position: fixed;
	inset: 0;
	content: "";
	pointer-events: none;
}

body.starlight-landing-page::before {
	z-index: 0;
	background:
		radial-gradient(circle at 72% 8%, rgba(139, 92, 246, .26), transparent 34%),
		radial-gradient(circle at 12% 38%, rgba(168, 85, 247, .15), transparent 36%),
		radial-gradient(circle at 82% 78%, rgba(139, 92, 246, .18), transparent 38%),
		linear-gradient(180deg, #060018 0%, #10002b 42%, #08001d 100%);
	animation: starlight-bg-shift 18s ease-in-out infinite alternate;
	will-change: transform, opacity;
}

body.starlight-landing-page::after {
	z-index: 0;
	opacity: .28;
	background-image:
		linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
	background-size: 32px 32px;
	mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
	animation: starlight-grid-drift 32s linear infinite;
	will-change: background-position;
}

@keyframes starlight-bg-shift {
	0% {
		opacity: .95;
		transform: translate3d(0, 0, 0) scale(1);
	}

	100% {
		opacity: 1;
		transform: translate3d(-24px, 18px, 0) scale(1.04);
	}
}

@keyframes starlight-grid-drift {
	from {
		background-position: 0 0, 0 0;
	}

	to {
		background-position: 32px 32px, 32px 32px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.starlight-landing-page::before,
	body.starlight-landing-page::after,
	body.starlight-landing-page .starlight-sparkle {
		animation: none !important;
		will-change: auto;
	}

	body.starlight-landing-page .starlight-firefly-field {
		display: none;
	}
}

body.starlight-landing-light::before {
	background:
		radial-gradient(circle at 72% 8%, rgba(139, 92, 246, .26), transparent 34%),
		radial-gradient(circle at 12% 38%, rgba(168, 85, 247, .15), transparent 36%),
		radial-gradient(circle at 82% 78%, rgba(139, 92, 246, .18), transparent 38%),
		linear-gradient(180deg, #060018 0%, #10002b 42%, #08001d 100%) !important;
}

body.starlight-landing-light::after {
	opacity: .28;
	background-image:
		linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
	background-size: 32px 32px;
}

body.starlight-landing-page .starlight-firefly-field {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	opacity: 1;
	overflow: hidden;
	pointer-events: none;
	contain: layout paint style;
	mix-blend-mode: screen;
}

body.starlight-landing-page .starlight-sparkle {
	position: absolute;
	top: 0;
	left: 0;
	width: var(--sl-sparkle-size, 6px);
	height: var(--sl-sparkle-size, 6px);
	border-radius: 999px;
	opacity: 0;
	background: transparent;
	transform: translate3d(var(--sl-sparkle-x, 0), var(--sl-sparkle-y, 0), 0) rotate(var(--sl-sparkle-angle, 0deg)) scale(.72);
	transform-origin: 50% 50%;
	will-change: transform, opacity;
	animation: starlight-sparkle-drift var(--sl-sparkle-duration, 12s) ease-in-out forwards;
}

body.starlight-landing-page .starlight-sparkle::before,
body.starlight-landing-page .starlight-sparkle::after {
	position: absolute;
	content: "";
	pointer-events: none;
	border-radius: 999px;
}

body.starlight-landing-page .starlight-sparkle::before {
	inset: -48px;
	z-index: 2;
	background:
		radial-gradient(circle, rgba(255, 255, 255, .70) 0 5%, rgba(222, 214, 255, .42) 10%, rgba(168, 85, 247, .34) 28%, rgba(139, 92, 246, .14) 50%, transparent 78%);
	box-shadow:
		0 0 30px rgba(255, 255, 255, .32),
		0 0 62px rgba(168, 85, 247, .43);
	filter: blur(4.5px);
	opacity: 1;
}

body.starlight-landing-page .starlight-sparkle::after {
	top: 50%;
	right: 50%;
	width: var(--sl-sparkle-trail, 76px);
	height: var(--sl-sparkle-tail-thickness, 20px);
	background:
		radial-gradient(ellipse at 86% 50%, rgba(255, 255, 255, .30), rgba(168, 85, 247, .34) 20%, rgba(139, 92, 246, .15) 48%, transparent 78%),
		linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, .064) 20%, rgba(168, 85, 247, .20) 60%, rgba(255, 255, 255, .30) 100%);
	opacity: .86;
	filter: blur(7px);
	transform: translateY(-50%);
	transform-origin: 100% 50%;
}

body.starlight-debug-lights .starlight-sparkle,
body.starlight-debug-lights .starlight-sparkle::before,
body.starlight-debug-lights .starlight-sparkle::after {
	opacity: 1 !important;
}

@keyframes starlight-sparkle-drift {
	0% {
		opacity: 0;
		transform: translate3d(var(--sl-sparkle-x, 0), var(--sl-sparkle-y, 0), 0) rotate(var(--sl-sparkle-angle, 0deg)) scale(.72);
	}

	16% {
		opacity: var(--sl-sparkle-opacity, .68);
	}

	72% {
		opacity: var(--sl-sparkle-opacity, .68);
	}

	100% {
		opacity: 0;
		transform: translate3d(
			calc(var(--sl-sparkle-x, 0) + var(--sl-sparkle-dx, 48px)),
			calc(var(--sl-sparkle-y, 0) + var(--sl-sparkle-dy, 48px)),
			0
		) rotate(var(--sl-sparkle-angle, 0deg)) scale(var(--sl-sparkle-scale, 1.1));
	}
}

@media (max-width: 767px) {
	body.starlight-landing-page .starlight-firefly-field {
		opacity: .92;
	}

	body.starlight-landing-page .starlight-sparkle::before {
		inset: -36px;
	}
}

body.starlight-scroll-animations-ready [data-starlight-progress]::before {
	width: var(--starlight-progress-target, 100%) !important;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 1400ms cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

body.starlight-scroll-animations-ready [data-starlight-progress].is-starlight-scroll-animated::before {
	transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
	body.starlight-scroll-animations-ready [data-starlight-progress]::before,
	body.starlight-scroll-animations-ready [data-starlight-progress].is-starlight-scroll-animated::before {
		width: var(--starlight-progress-target, 100%) !important;
		transform: none !important;
		transition: none !important;
		will-change: auto;
	}
}

body.starlight-landing-page .site,
body.starlight-landing-page #page,
body.starlight-landing-page .site-content,
body.starlight-landing-page .content-area,
body.starlight-landing-page .entry-content,
body.starlight-landing-page main,
body.starlight-landing-page .main,
body.starlight-landing-page .page-content {
	position: relative;
	z-index: 1;
	background: transparent !important;
}

body.starlight-landing-page .vc_row:has(.starlight-intro-reveal),
body.starlight-landing-page .vc_row:has(.starlight-hero-growth),
body.starlight-landing-page .vc_row:has(.starlight-services-growth),
body.starlight-landing-page .vc_row:has(.starlight-case-newave),
body.starlight-landing-page .vc_row:has(.starlight-b2b-upwork),
body.starlight-landing-page .vc_row:has(.starlight-cta-audit),
body.starlight-landing-page .wpb_wrapper:has(.starlight-intro-reveal),
body.starlight-landing-page .wpb_wrapper:has(.starlight-hero-growth),
body.starlight-landing-page .wpb_wrapper:has(.starlight-services-growth),
body.starlight-landing-page .wpb_wrapper:has(.starlight-case-newave),
body.starlight-landing-page .wpb_wrapper:has(.starlight-b2b-upwork),
body.starlight-landing-page .wpb_wrapper:has(.starlight-cta-audit) {
	background: transparent !important;
}

body.starlight-landing-page .starlight-intro-reveal,
body.starlight-landing-page .starlight-hero-growth,
body.starlight-landing-page .starlight-services-growth,
body.starlight-landing-page .starlight-case-newave,
body.starlight-landing-page .starlight-b2b-upwork,
body.starlight-landing-page .starlight-cta-audit {
	position: relative;
	z-index: 1;
	isolation: isolate;
	background: transparent !important;
	background-image: none !important;
	background-color: transparent !important;
	border-top: 0 !important;
	border-bottom: 0 !important;
	box-shadow: none !important;
}

body.starlight-landing-page .starlight-hero-growth {
	min-height: min(620px, 100vh);
}

body.starlight-landing-page .starlight-services-growth,
body.starlight-landing-page .starlight-case-newave,
body.starlight-landing-page .starlight-b2b-upwork,
body.starlight-landing-page .starlight-cta-audit {
	margin-top: -1px;
}

body.starlight-landing-page .starlight-hero-growth::before,
body.starlight-landing-page .starlight-hero-growth::after,
body.starlight-landing-page .starlight-services-growth::before,
body.starlight-landing-page .starlight-services-growth::after,
body.starlight-landing-page .starlight-case-newave::before,
body.starlight-landing-page .starlight-case-newave::after,
body.starlight-landing-page .starlight-b2b-upwork::before,
body.starlight-landing-page .starlight-b2b-upwork::after,
body.starlight-landing-page .starlight-cta-audit::before,
body.starlight-landing-page .starlight-cta-audit::after {
	background: none !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	opacity: 0 !important;
}

body.starlight-landing-page .starlight-intro-reveal__container,
body.starlight-landing-page .starlight-hero-growth__container,
body.starlight-landing-page .starlight-services-growth__container,
body.starlight-landing-page .starlight-case-newave__container,
body.starlight-landing-page .starlight-b2b-upwork__container,
body.starlight-landing-page .starlight-cta-audit__container {
	box-sizing: border-box;
	position: relative;
	z-index: 2;
}

body.starlight-landing-page #pum-1278.pum-overlay {
	background: rgba(6, 0, 24, .72) !important;
	backdrop-filter: blur(12px);
}

body.starlight-landing-page #popmake-1278.pum-container {
	box-sizing: border-box;
	width: min(calc(100vw - 32px), 640px) !important;
	max-width: calc(100vw - 32px) !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: calc(100vh - 48px) !important;
	padding: clamp(22px, 4vw, 34px) !important;
	overflow-y: auto !important;
	color: #ffffff;
	background:
		radial-gradient(circle at 78% 12%, rgba(139, 92, 246, .30), transparent 34%),
		radial-gradient(circle at 10% 86%, rgba(168, 85, 247, .18), transparent 38%),
		linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .06)) !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 28px !important;
	box-shadow: 0 34px 100px rgba(0, 0, 0, .48), 0 0 80px rgba(139, 92, 246, .24) !important;
	backdrop-filter: blur(22px);
}

body.starlight-landing-page #popmake-1278 .pum-content,
body.starlight-landing-page #popmake-1278 .wpforms-container,
body.starlight-landing-page #popmake-1278 .wpforms-form {
	margin: 0 !important;
	color: #ffffff;
}

body.starlight-landing-page #popmake-1278 .wpforms-field {
	padding: 0 0 16px !important;
}

body.starlight-landing-page #popmake-1278 .wpforms-field-label {
	margin: 0 0 8px !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
	color: #ffffff !important;
}

body.starlight-landing-page #popmake-1278 .wpforms-required-label {
	color: #a855f7 !important;
}

body.starlight-landing-page #popmake-1278 input[type="text"],
body.starlight-landing-page #popmake-1278 input[type="email"],
body.starlight-landing-page #popmake-1278 textarea {
	width: 100% !important;
	max-width: 100% !important;
	color: #ffffff !important;
	background: rgba(255, 255, 255, .08) !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 16px !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08) !important;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.starlight-landing-page #popmake-1278 input[type="text"],
body.starlight-landing-page #popmake-1278 input[type="email"] {
	min-height: 48px !important;
	padding: 12px 14px !important;
}

body.starlight-landing-page #popmake-1278 textarea {
	min-height: 126px !important;
	padding: 14px !important;
	resize: vertical;
}

body.starlight-landing-page #popmake-1278 input[type="text"]:focus,
body.starlight-landing-page #popmake-1278 input[type="email"]:focus,
body.starlight-landing-page #popmake-1278 textarea:focus {
	background: rgba(255, 255, 255, .11) !important;
	border-color: rgba(168, 85, 247, .72) !important;
	box-shadow: 0 0 0 3px rgba(139, 92, 246, .22) !important;
	outline: none !important;
}

body.starlight-landing-page #popmake-1278 .wpforms-submit-container {
	padding: 4px 0 0 !important;
}

body.starlight-landing-page #popmake-1278 button.wpforms-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 50px !important;
	padding: 13px 24px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	line-height: 1.2 !important;
	color: #ffffff !important;
	background: linear-gradient(135deg, #8b5cf6, #a855f7) !important;
	border: 0 !important;
	border-radius: 999px !important;
	box-shadow: 0 18px 42px rgba(124, 58, 237, .34) !important;
	transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

body.starlight-landing-page #popmake-1278 button.wpforms-submit:hover,
body.starlight-landing-page #popmake-1278 button.wpforms-submit:focus,
body.starlight-landing-page #popmake-1278 button.wpforms-submit:focus-visible {
	color: #ffffff !important;
	box-shadow: 0 22px 52px rgba(124, 58, 237, .42) !important;
	filter: brightness(1.05);
	transform: translateY(-1px);
	outline: none !important;
}

body.starlight-landing-page #popmake-1278 .wpforms-error,
body.starlight-landing-page #popmake-1278 em.wpforms-error {
	color: #fca5a5 !important;
}

body.starlight-landing-page #popmake-1278 .pum-close {
	top: 12px !important;
	right: 12px !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 38px !important;
	height: 38px !important;
	padding: 0 !important;
	color: #ffffff !important;
	background: rgba(255, 255, 255, .10) !important;
	border: 1px solid rgba(255, 255, 255, .16) !important;
	border-radius: 999px !important;
	box-shadow: none !important;
}

body.starlight-landing-page #popmake-1278 .pum-close:hover,
body.starlight-landing-page #popmake-1278 .pum-close:focus-visible {
	color: #ffffff !important;
	background: rgba(168, 85, 247, .24) !important;
	outline: 2px solid rgba(168, 85, 247, .58);
	outline-offset: 2px;
}

@media (max-width: 680px) {
	body.starlight-landing-page #popmake-1278 .pum-close {
		top: 10px !important;
		right: 10px !important;
		width: 30px !important;
		height: 30px !important;
		font-size: 20px !important;
		line-height: 1 !important;
	}
}

@media (max-width: 480px) {
	body.starlight-landing-page #popmake-1278.pum-container {
		width: calc(100vw - 24px) !important;
		max-width: calc(100vw - 24px) !important;
		max-height: calc(100vh - 24px) !important;
		padding: 22px 16px !important;
		border-radius: 22px !important;
	}

	body.starlight-landing-page #popmake-1278 button.wpforms-submit {
		width: 100% !important;
	}
}
