:root {
	--aurora-bg: #020d19;
	--aurora-blur: 1rem;

	/* text aurora */
	--aurora-clr-1: #77a2ff;
	--aurora-clr-2: #ffffff;
	--aurora-clr-3: #77a2ff;

	/* background aurora */
	--aurora-bg-clr-1: #77a2ff;
	--aurora-bg-clr-2: #588bf9;
	--aurora-bg-clr-3: #77a2ff;
	--aurora-background-blur: 4rem;
	--aurora-background-opacity: 0.25;
}

@layer base {
	body {
		background-color: #020d19;
		font-family: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
	}

	body,
		transition: opacity 0.55s ease;
}

.description p {
	padding-top: 8px;
}

.content-element:nth-child(2n) {
	background-color: #06101A;
	color: white;
	flex-direction: row-reverse;
	/* padding-right: 30px; */
	border-radius: 10px;
}

.content-element:nth-child(2n) .content-content{
	padding:16px;
}

.wrapper {
	width: 100%;
	max-width: 1342px;
	margin: 0 auto;
	padding-left: 0px;
	padding-right: 0px;
}
@media (max-width: 1472px) {
	.wrapper {
		padding-left: 25px;
		padding-right: 25px;
	}
}

@media (max-width: 640px) {
	.wrapper {
		padding-left: 15px;
		padding-right: 15px;
	}
}

/* =============================================
   HERO SECTION
   ============================================= */

#hero {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background-repeat: no-repeat;
	background-size: cover;
}

.hero-bg-wrap {
	background-repeat: no-repeat;
	background-size: cover;
}

#hero > * {
	position: relative;
	z-index: 2;
}

#hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, transparent 100%);
	pointer-events: none;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.7s ease-in-out;
}

#hero.is-scrolled::before {
	opacity: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.72) 38%, transparent 78%);
}

.redline {
	overflow: hidden;
}

.redline__bar {
	display: block;
	width: 2px;
	height: min(14vh, 120px);
	border-radius: 999px;
	background: linear-gradient(180deg, rgba(220, 0, 40, 0) 0%, rgba(220, 0, 40, 0.85) 18%, #dc0028 50%, rgba(220, 0, 40, 0.85) 82%, rgba(220, 0, 40, 0) 100%);
	box-shadow: 0 0 24px rgba(220, 0, 40, 0.35);
	transform: scaleY(0);
	transform-origin: top center;
	will-change: transform, opacity;
	opacity: 0.35;
}

@media (max-width: 768px) {
	.redline__bar {
		height: min(11vh, 82px);
	}
}

@media (max-width: 1024px) {
	#hero::before {
		display: none;
	}

	#hero {
		background-size: contain;
	}
}

@media (max-width: 768px) {
	#hero {
		background-image: none !important;
	}

}

@media (min-width: 768px) {

	.hero-bg-wrap {
		background-image: none !important;
	}
}

/* =============================================
   HEADER
   ============================================= */

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: transparent;
	backdrop-filter: blur(0px) saturate(1);
	-webkit-backdrop-filter: blur(0px) saturate(1);
	border-bottom: 1px solid transparent;
	transition:
		background 1.1s cubic-bezier(0.4, 0, 0.2, 1),
		backdrop-filter 1.1s cubic-bezier(0.4, 0, 0.2, 1),
		-webkit-backdrop-filter 1.1s cubic-bezier(0.4, 0, 0.2, 1),
		border-color 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}

#header.is-scrolled {
	backdrop-filter: blur(18px) saturate(1.4);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.header-inner {
	padding-top: 18px;
	padding-bottom: 18px;
}

/* Logo */
.header-logo .custom-logo-link {
	display: flex;
	align-items: center;
}

.header-logo .custom-logo {
	display: block;
	max-height: 40px;
	width: auto;
}

.header-logo a {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	letter-spacing: -0.02em;
	white-space: nowrap;
}

.header-logo a:hover {
	color: #77a2ff;
}

/* ---- Desktop nav ---- */
.header-nav-desktop {
	display: flex;
	align-items: center;
}

.header-nav-desktop .nav-menu {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-nav-desktop .nav-menu li a {
	color: rgba(255, 255, 255, 0.75);
	text-transform: uppercase;
	font-size: 0.7375rem;
	font-weight: 300;
	letter-spacing: 0.2em;
	position: relative;
	display: inline-block;
	padding-bottom: 4px;
	transition: color 0.4s ease;
}

.header-nav-desktop .nav-menu li a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: #ff3b30;
	transform: scaleX(0);
	transform-origin: bottom right;
	transition: transform 0.35s ease;
}

.header-nav-desktop .nav-menu li a:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}

.header-nav-desktop .nav-menu li a:hover,
.header-nav-desktop .nav-menu li.current-menu-item a {
	color: #ffffff;
}

.header-nav-desktop .nav-menu li a.is-over-light-section {
	color: #000000 !important;
}

.header-nav-desktop .nav-menu li a.js-nav-active {
	color: #77A2FF !important;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: #77A2FF;
	text-decoration-thickness: 2px;
	text-underline-offset: 6px;
}

/* ---- Hamburger ---- */
.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 36px;
	height: 36px;
	padding: 4px;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 00;
}

.nav-toggle span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: #ffffff;
	border-radius: 2px;
	transition:
		transform 0.25s ease,
		opacity 0.25s ease,
		background-color 0.25s ease;
}

.nav-toggle.is-over-light-section span {
	background-color: #000000;
}

/* ---- Mobile menu panel ---- */
.header-nav-mobile {
	position: fixed;
	top: 0;
	right: -100%;
	width: min(320px, 85vw);
	height: 100vh;
	background-color: #020d19;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding: 80px 32px 40px;
	transition: right 0.3s ease;
	z-index: 1050;
	overflow-y: auto;
}

.header-nav-mobile.is-open {
	right: 0;
}

.nav-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	color: #ffffff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	padding: 4px 8px;
	opacity: 0.7;
	transition: opacity 0.2s;
}

.nav-close:hover {
	opacity: 1;
}

.header-nav-mobile .nav-menu-mobile {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-transform: uppercase;
}

.header-nav-mobile .nav-menu-mobile li a {
	display: block;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 1.125rem;
	font-weight: 300;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	transition: color 0.2s ease;
	letter-spacing: 0.05em;
}

.header-nav-mobile .nav-menu-mobile li a:hover,
.header-nav-mobile .nav-menu-mobile li.current-menu-item a {
	color: #77a2ff;
}

.header-nav-mobile .nav-menu-mobile li a.js-nav-active {
	color: #77a2ff !important;
	text-decoration: underline;
	text-decoration-color: #77a2ff;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

/* ---- Overlay ---- */
.nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	z-index: 1040;
}

.nav-overlay.is-visible {
	display: block;
}

/* ---- Responsive: show hamburger, hide desktop nav ---- */
@media (max-width: 768px) {
	.header-nav-desktop {
		display: none;
	}

	.nav-toggle {
		display: flex;
	}
}

/* =============================================
   END HEADER
   ============================================= */

/* Carbon full-width inside flex parent */
.carbon-full {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	min-height: 220px;
	padding: 40px 0;
}

/* Children sit above the JS-injected white overlay div */
.carbon-full > *:not([style*='position:absolute']) {
	position: relative;
	z-index: 2;
}

.logo-slider {
	margin-top: 32px;
}

.logo-slider .logo-slide {
	padding: 0 14px;
	width: auto;
	display: flex !important;
	align-items: center;
	justify-content: center;
	height: 72px;
}

.logo-slider .slick-track {
	display: flex;
	align-items: center;
}

.logo-slider .logo-slide img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 140px;
	max-height: 46px;
	object-fit: contain;
	object-position: center;
	transition: filter 0.45s ease;
}

.logo-slider.is-on-light .logo-slide img {
	filter: brightness(0) saturate(100%);
}

:root {
	--about-services-light: 0;
}

.js-contact-map-bg {
	opacity: 0.7;
}

#about,
#services {
	position: relative;
}

#about::before,
#services::before {
	content: '';
	position: absolute;
	inset: 0;
	background: #ffffff;
	opacity: var(--about-services-light);
	pointer-events: none;
	z-index: 1;
}

#about > * {
	position: relative;
	z-index: 3;
}

#services > *:not(.aurora-background__blobs) {
	position: relative;
	z-index: 3;
}

#services.aurora-background {
	background: transparent;
}

#services .aurora-background__blobs {
	/* Keep section whitening in sync first; reveal blobs near the end */
	opacity: clamp(0, calc((var(--about-services-light) - 0.7) * 3.34), 1);
	z-index: 2;
}

.linear {
	background: linear-gradient(to top, #77a2ff 0%, #ffffff 72%);
}

.line {
	background: linear-gradient(to right, #77a2ff 0%, #dc0028 72%);
	height: 2px;
	width: 100%;
}

.services {
	margin: 44px auto 0;
	width: 100%;
	max-width: 980px;
}

.services-nav {
	display: flex;
	flex-wrap: wrap;
	width: fit-content;
	max-width: 100%;
	margin: 0 auto;
}

.service-pill {
	border: 1px solid #000;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 12px;
	line-height: 1.3;
	color: #000;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.service-pill:hover,
.service-pill.is-active {
	background-color: #000;
	color: #fff;
}

#services:not(.is-light-content) .service-pill {
	border-color: rgba(255, 255, 255, 0.72);
	color: #ffffff;
}

#services:not(.is-light-content) .service-pill:hover,
#services:not(.is-light-content) .service-pill.is-active {
	background-color: #ffffff;
	color: #020d19;
}

#services.is-light-content .service-pill {
	border-color: #000;
	color: #000;
}

#services.is-light-content .service-pill:hover,
#services.is-light-content .service-pill.is-active {
	background-color: #000;
	color: #fff;
}

.service-info-wrap {
	margin: 20px auto 0;
	border: 1px solid rgba(0, 0, 0, 0.15);
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-radius: 12px;
	padding: 18px 20px;
	text-align: left;
	color: #0f172a;
	width: 100%;
	max-width: 100%;
	display: grid;
}

.service-info-panel {
	grid-area: 1 / 1;
	visibility: hidden;
}

.service-info-panel.is-active {
	visibility: visible;
}

.service-info-title {
	font-size: 18px;
	line-height: 1.2;
	font-weight: 700;
	margin-bottom: 10px;
	color: #000;
}

.service-info-panel p + p {
	margin-top: 10px;
}

@media (max-width: 768px) {
	.services {
		margin-top: 32px;
		margin-bottom: 32px;
	}

	.service-info-wrap {
		padding: 14px 16px;
		min-height: 110px;
	}
}

.aplications {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
}

.aplications-logos {
	display: flex;
	justify-content: center;
	align-items: center;
}

.aplications-logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.aplications-logo-item img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.service-info-panel ul {
	list-style: disc;
	padding-left: 20px;
}

.blog {
	background: linear-gradient(180deg, #c7d4f6 0%, #f4f4f4 48%, #ffffff 100%);
	padding: 72px 0 88px;
	color: #0f172a;
}

.blog-head {
	text-align: center;
	margin-bottom: 34px;
}

.blog-label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	opacity: 0.75;
	margin-bottom: 6px;
}

.blog-title {
	font-size: 40px;
	line-height: 1.12;
	font-weight: 700;
	color: #000;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}


.blog-card {
	background: rgba(255, 255, 255, 0.42);
	border: 1px solid rgba(15, 23, 42, 0.2);
	border-radius: 14px;
	overflow: hidden;
}

.blog-card-link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.blog-card-image-wrap {
	height: 200px;
	padding: 8px 8px 0;
}

.blog-card-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	border-radius: 6px;
}

.blog-card-body {
	flex: 1 1 auto;
	padding: 10px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.blog-card-title {
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	color: #0b1220;
	margin-bottom: 6px;
}

.wpcf7 form span {
	width: 100%;
}

.blog-card-excerpt {
	font-size: 13px;
	line-height: 1.45;
	color: rgba(11, 18, 32, 0.8);
	margin-bottom: 14px;
}

.blog-card-read-more {
	display: inline-flex;
	align-items: center;
	align-self: flex-end;
	margin-top: auto;
	padding: 8px 12px;
	border: 1px solid rgba(15, 23, 42, 0.18);
	border-radius: 8px;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #0b1220;
	background: rgba(255, 255, 255, 0.7);
}


article.blog-card:hover .blog-card-read-more {
	background: #020D19;
	border-color: rgba(15, 23, 42, 0.3);
	color:white;
}

.blog-empty {
	text-align: center;
	font-size: 14px;
	opacity: 0.8;
}

.single-post-template {
	background: linear-gradient(180deg, #d2ddf8 0%, #ffffff 45%);
	color: #0f172a;
	min-height: calc(100vh - 120px);
}

.single-post-article {
	max-width: 980px;
}

.single-post-label {
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 10px;
	opacity: 0.7;
}

.single-post-title {
	font-size: 44px;
	line-height: 1.1;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}

.single-post-meta {
	font-size: 14px;
	opacity: 0.75;
	margin-bottom: 24px;
}

.single-post-cover-wrap {
	margin-bottom: 26px;
}

.single-post-cover {
	width: 100%;
	height: auto;
	max-height: 520px;
	object-fit: cover;
	border-radius: 12px;
}

.single-post-content {
	font-size: 18px;
	line-height: 1.7;
	color: #0b1220;
	max-width: 820px;
}

.single-post-content p + p {
	margin-top: 14px;
}

.single-post-back {
	display: inline-block;
	margin-top: 34px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid #0f172a;
	font-size: 14px;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.single-post-back:hover {
	background-color: #0f172a;
	color: #fff;
}

@media (max-width: 1024px) {
	.blog-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.blog {
		padding: 56px 0 64px;
	}

	.blog-title {
		font-size: 24px;
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}


	.single-post-title {
		font-size: 34px;
	}

	.single-post-content {
		font-size: 17px;
	}
}

strong {
	font-weight: 700 !important;
}

/* ── Contact section ───────────────────────────────────────────── */

.contact-card {
	background-color: #fff;
	border-radius: 20px;
	padding: 56px 52px;
	display: flex;
	gap: 48px;
	align-items: flex-start;
}

.contact-left {
	flex: 1 1 40%;
}

.contact-right {
	flex: 1 1 30%;
	display: flex;
	flex-direction: column;
	padding: 10px;
	background-color: #77a2ff;
	border-radius: 17px;
	width: 100%;
}

.contact-label {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(10, 20, 50, 0.6);
	margin-bottom: 18px;
}

.js-services-label {
	color: rgba(255, 255, 255, 0.8);
	transition: color 0.55s ease;
}

#services.is-light-content .js-services-label {
	color: rgba(10, 20, 50, 0.6);
}

.contact-heading {
	font-size: 60px;
	line-height: 1.12;
	font-weight: 800;
	color: #0b1220;
	margin-bottom: 18px;
}

.contact-heading-accent {
	color: #77a2ff;
	font-style: italic;
}

.contact-desc {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(11, 18, 32, 0.7);
	margin-bottom: 24px;
}

.contact-info {
	display: flex;
	gap: 10px;
}

.contact-info-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 1px solid rgba(0, 0, 0, 0.306);
	padding: 9px 5px 9px 9px;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 600;
	color: #0b1220;
	cursor: pointer;
	position: relative;
	width: fit-content;
}

.contact-info-copy-icon {
	width: 15px;
	height: 15px;
	opacity: 0;
	transition: opacity 0.18s ease;
	flex-shrink: 0;
}

.contact-info-item:hover .contact-info-copy-icon {
	opacity: 0.65;
}

.contact-info-item.copied .contact-info-copy-icon {
	opacity: 1;
}

.contact-info-item::after {
	content: 'Skopiowano';
	position: absolute;
	bottom: calc(100% + 6px);
	left: 0;
	background: #0b1220;
	color: #fff;
	padding: 4px 10px;
	border-radius: 5px;
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.contact-info-item.copied::after {
	opacity: 1;
}

/* CF7 / fallback form shared skin */
.contact-right .wpcf7 form,
.contact-fallback-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

.contact-right .wpcf7 input[type='text'],
.contact-right .wpcf7 input[type='email'],
.contact-right .wpcf7 input[type='tel'],
.contact-right .wpcf7 textarea,
.cf-input,
.cf-textarea {
	width: 100%;
	padding: 12px 14px;
	background-color: #c7d4f6;
	border: none;
	border-radius: 7px;
	font-size: 13px;
	color: #0b1220;
	outline: none;
	transition: background-color 0.2s ease;
}

.contact-right .wpcf7 input::placeholder,
.contact-right .wpcf7 textarea::placeholder,
.cf-input::placeholder,
.cf-textarea::placeholder {
	color: rgba(11, 18, 32, 0.55);
}

.contact-right .wpcf7 input:focus,
.contact-right .wpcf7 textarea:focus,
.cf-input:focus,
.cf-textarea:focus {
	background-color: #b0c3f0;
}

.contact-right .wpcf7 textarea,
.cf-textarea {
	resize: vertical;
	min-height: 110px;
}

.contact-right .wpcf7 input[type='submit'],
.cf-btn {
	align-self: flex-end;
	padding: 10px 24px;
	border-radius: 7px;
	background-color: #0b1220;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}

.contact-right .wpcf7 input[type='submit']:hover,
.cf-btn:hover {
	opacity: 0.82;
}

.cf-submit-row {
	display: flex;
	justify-content: flex-end;
}

.contact-submit-row {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 0 !important;
}

.contact-rodo {
	margin-top: 0;
	font-size: 11px;
	line-height: 1.5;
	opacity: 0.55;
	color: inherit;
	flex: 1;
}

.contact-rodo a {
	text-decoration: underline;
	color: inherit;
}

@media (max-width: 1280px) {

	.contact-heading {
		font-size: 48px;
	}
}

@media (max-width: 900px) {
	.contact-card {
		flex-direction: column;
		padding: 24px 24px;
	}

	.contact-heading {
		font-size: 24px;
	}
}



/* =============================================
   AURORA EFFECT
   ============================================= */

.aurora {
	display: inline;
	background: linear-gradient(
		90deg,
		var(--aurora-clr-1),
		var(--aurora-clr-2),
		var(--aurora-clr-3),
		var(--aurora-clr-2),
		var(--aurora-clr-1)
	);
	background-size: 300% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
	animation: aurora-flow 6s linear infinite;
}

@keyframes aurora-flow {
	0% {
		background-position: 0% center;
	}
	100% {
		background-position: 300% center;
	}
}

@keyframes aurora-1 {
	0% {
		top: 8%;
		right: 6%;
	}
	50% {
		top: 62%;
		right: 68%;
	}
	75% {
		top: 68%;
		right: 24%;
	}
	100% {
		top: 8%;
		right: 6%;
	}
}

@keyframes aurora-2 {
	0% {
		top: 10%;
		left: 6%;
	}
	60% {
		top: 58%;
		left: 70%;
	}
	85% {
		top: 64%;
		left: 28%;
	}
	100% {
		top: 10%;
		left: 6%;
	}
}

@keyframes aurora-3 {
	0% {
		bottom: 8%;
		left: 6%;
	}
	40% {
		bottom: 56%;
		left: 68%;
	}
	65% {
		bottom: 32%;
		left: 50%;
	}
	100% {
		bottom: 8%;
		left: 6%;
	}
}

@keyframes aurora-border {
	0% {
		border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
	}
	25% {
		border-radius: 47% 29% 39% 49% / 61% 19% 66% 26%;
	}
	50% {
		border-radius: 57% 23% 47% 72% / 63% 17% 66% 33%;
	}
	75% {
		border-radius: 28% 49% 29% 100% / 93% 20% 64% 25%;
	}
	100% {
		border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
	}
}

/* =============================================
   END AURORA EFFECT
   ============================================= */

/* =============================================
   AURORA BACKGROUND EFFECT (.aurora-bg)
   ============================================= */

.aurora-background {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: white;
}

/* push all direct children above the blobs */
.aurora-background > *:not(.aurora-background__blobs) {
	position: relative;
	z-index: 1;
}

.aurora-background__blobs {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	clip-path: inset(0);
	/* Hide blobs near top edge to avoid "cut" look at section boundary */
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 16%, rgba(0, 0, 0, 0.75) 34%, #000 48%);
	mask-image: linear-gradient(to bottom, transparent 0%, transparent 16%, rgba(0, 0, 0, 0.75) 34%, #000 48%);
}

.aurora-background__item {
	position: absolute;
	width: 45vmax;
	height: 45vmax;
	border-radius: 37% 29% 27% 27% / 28% 25% 41% 37%;
	filter: blur(var(--aurora-background-blur));
	mix-blend-mode: multiply;
	opacity: var(--aurora-background-opacity);
}

.aurora-background__item:nth-of-type(1) {
	background-color: var(--aurora-bg-clr-1);
	top: 8%;
	animation:
		aurora-border 6s ease-in-out infinite,
		aurora-1 12s ease-in-out infinite alternate;
}

.aurora-background__item:nth-of-type(2) {
	background-color: var(--aurora-bg-clr-2);
	right: 0;
	top: 0;
	animation:
		aurora-border 6s ease-in-out infinite,
		aurora-2 14s ease-in-out infinite alternate;
}

.aurora-background__item:nth-of-type(3) {
	background-color: var(--aurora-bg-clr-3);
	left: 0;
	bottom: 8%;
	animation:
		aurora-border 6s ease-in-out infinite,
		aurora-3 10s ease-in-out infinite alternate;
}

/* =============================================
   TEXT MASKING GSAP
   ============================================= */

.masking-gsap {
	overflow: hidden;
}

.masking-gsap .masking-line {
	display: block;
	overflow: hidden;
}

.masking-gsap .masking-line-inner {
	display: block;
	will-change: transform, opacity;
}

/* =============================================
   END AURORA BACKGROUND EFFECT
   ============================================= */

