/* Auralis compiled stylesheet. Generated from assets/src/scss via `npm run build`. */
.site-header {
	position: relative;
	z-index: 100;
}
.site-header__brand {
	display: flex;
	align-items: center;
}
.site-header .wp-block-navigation {
	flex-grow: 1;
}

.is-style-default-header {
	background-color: var(--wp--preset--color--base);
	border-bottom: 1px solid rgba(20, 21, 26, 0.08);
}

.is-style-sticky-header {
	position: sticky;
	top: 0;
	background-color: var(--wp--preset--color--base);
	transition: box-shadow var(--wp--custom--header--transition-duration, 0.35s) ease,
		background-color var(--wp--custom--header--transition-duration, 0.35s) ease;
}
body.is-scrolled .is-style-sticky-header {
	box-shadow: var(--wp--preset--shadow--medium);
}

.is-style-floating-header {
	position: absolute;
	top: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 2.5rem);
	max-width: var(--wp--style--global--wide-size, 1280px);
	border-radius: var(--wp--custom--radius--large);
	background-color: rgba(253, 253, 251, 0.6);
	backdrop-filter: blur(var(--wp--custom--header--blur, 18px));
	-webkit-backdrop-filter: blur(var(--wp--custom--header--blur, 18px));
	box-shadow: var(--wp--preset--shadow--medium);
	transition: all var(--wp--custom--header--transition-duration, 0.35s) ease;
}
body.is-scrolled .is-style-floating-header {
	position: fixed;
	top: 0;
	left: 0;
	transform: none;
	width: 100%;
	max-width: none;
	border-radius: 0;
	background-color: rgba(253, 253, 251, 0.92);
}

.is-style-card {
	background-color: var(--wp--preset--color--base);
	border-radius: var(--wp--custom--radius--medium);
	box-shadow: var(--wp--preset--shadow--small);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.is-style-card:hover {
	box-shadow: var(--wp--preset--shadow--medium);
	transform: translateY(-2px);
}

.is-style-card--highlight {
	box-shadow: var(--wp--preset--shadow--glow);
}
.is-style-card--highlight:hover {
	box-shadow: var(--wp--preset--shadow--glow);
	transform: translateY(-2px);
}

.wp-block-button__link {
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease,
		box-shadow 0.25s ease;
}
.wp-block-button__link:hover {
	transform: translateY(-1px);
}

.is-style-soft .wp-block-button__link {
	background-color: color-mix(in srgb, var(--wp--preset--color--accent) 15%, transparent);
	color: var(--wp--preset--color--accent);
}
.is-style-soft .wp-block-button__link:hover {
	background-color: color-mix(in srgb, var(--wp--preset--color--accent) 25%, transparent);
}

.is-style-rounded img,
.is-style-rounded.wp-block-image img {
	border-radius: var(--wp--custom--radius--large);
}

.auralis-plan-features {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.auralis-plan-features li {
	position: relative;
	padding-left: 1.5rem;
}
.auralis-plan-features li::before {
	content: "\2713";
	position: absolute;
	left: 0;
	font-weight: 700;
}

.auralis-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.auralis-reveal.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.auralis-reveal {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.auralis-back-to-top {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	z-index: 90;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	border: none;
	background-color: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--base);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
	box-shadow: var(--wp--preset--shadow--medium);
}
.auralis-back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.auralis-back-to-top:hover {
	transform: translateY(-2px);
}
.auralis-back-to-top svg {
	width: 1.1rem;
	height: 1.1rem;
}

@keyframes auralis-gradient-pan {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.has-indigo-glow-gradient-background {
	background-size: 200% 200%;
	animation: auralis-gradient-pan 18s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
	.has-indigo-glow-gradient-background {
		animation: none;
	}
}
