:where(.footer),
:where(.footer) *,
:where(.footer) *::before,
:where(.footer) *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:where(.footer) img,
:where(.footer) svg {
	display: block;
	max-width: 100%;
}

:where(.footer) a {
	color: inherit;
	text-decoration: none;
}

:where(.footer) ul {
	list-style: none;
}

.footer {
	--cyan: oklch(0.859 0.097 223);
	--color-primary: var(--cyan);
	--color-text-primary: oklch(0 0 0);

	--weight-regular: 400;
	--weight-bold: 700;

	--text-caption: 12px;
	--text-label: 15px;

	--space-xs: 4px;
	--space-md: 14.5px;
	--space-base: 29px;
	--space-lg: 58px;

	font-family: "Lexend", system-ui, sans-serif;
	font-size: 15px;
	font-weight: var(--weight-regular);
	line-height: 1.5;
	display: block;
	margin-top: 0;
	padding: 48px 32px 0 32px;
	border-top-left-radius: 69px;
	border-top-right-radius: 69px;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

@media (min-width: 1023px) {
	.footer {
		padding: 69px 64px 0 64px;
	}
}

.footer.glass-1 {
	background-color: oklch(1 0 0 / 64%);
	border-top: 2px solid oklch(1 0 0);
	border-bottom: 2px solid oklch(1 0 0);
	border-left: 0;
	border-right: 0;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

@media (min-width: 769px) {
	.footer.glass-1 {
		border-top-width: 4px;
		border-bottom-width: 4px;
	}
}

.footer .footer__inner {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding-bottom: 0;
}

@media (min-width: 1023px) {
	.footer .footer__inner {
		flex-direction: row;
		justify-content: space-between;
		gap: var(--space-lg);
	}
}

.footer .footer__brand {
	display: flex;
	flex-direction: column;
	gap: var(--space-base);
}

@media (min-width: 1023px) {
	.footer .footer__brand {
		flex: 0 0 auto;
		max-width: 320px;
	}
}

.footer .footer__logo {
	display: inline-block;
}

.footer .footer__logo img {
	display: block;
}

.footer .footer__tagline {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	font-size: var(--text-caption);
}

.footer .footer__tagline strong {
	font-weight: var(--weight-bold);
}

.footer .footer__contact {
	display: none;
	flex-direction: column;
	gap: var(--space-xs);
	font-size: var(--text-caption);
}

@media (min-width: 1023px) {
	.footer .footer__contact {
		display: flex;
	}
}

.footer .footer__contact strong {
	font-weight: var(--weight-bold);
}

.footer .footer__contact a {
	text-decoration: none;
}

.footer .footer__contact a:hover {
	color: var(--color-primary);
}

.footer .footer__social {
	display: flex;
	align-items: center;
	gap: var(--space-md);
}

.footer .footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-primary);
	transition: color 0.2s ease;
}

.footer .footer__social a:hover {
	color: var(--color-primary);
}

.footer .footer__social a svg {
	width: 20.8px;
	height: 20.8px;
}

.footer .footer__nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--space-lg) var(--space-base);
	flex: 1;
	max-width: 1000px;
}

@media (min-width: 1023px) {
	.footer .footer__nav {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: var(--space-base);
	}
}

.footer .footer__nav-heading {
	margin-bottom: var(--space-base);
}

.footer .footer__nav-heading h3 {
	font-size: var(--text-label);
	font-weight: var(--weight-bold);
	line-height: 1.1;
	letter-spacing: -0.02em;
	display: inline;
	background: linear-gradient(var(--color-primary), var(--color-primary)) no-repeat 0 100%;
	background-size: 100% 8.5px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.footer .footer__nav-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-md);
}

.footer .footer__nav-list a {
	color: var(--color-text-primary);
	text-decoration: underline;
	transition: color 0.2s ease;
	font-size: var(--text-caption);
}

.footer .footer__nav-list a:hover {
	font-weight: var(--weight-bold);
}

.footer .footer__bottom {
	padding: 16px 0 32px 0;
	font-size: var(--text-caption);
}

@media (min-width: 1023px) {
	.footer .footer__bottom {
		padding: 16px 0 48px 0;
	}
}

.footer .footer__bottom p {
	font-weight: var(--weight-bold);
	line-height: 1.625;
	margin: 0;
}
