<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes draw {
  0%   {max-width: 0; opacity: 0;}
  100% {max-width: 41.5%; opacity: 1;}
}

footer {
	display: flex;
	font-family: 'Bahnschrift', sans-serif;
	position: relative;
}

footer a {
	color: inherit;
	transition: 150ms;
}

footer a:hover {font-weight: 500;}

.footer_cont {
	color: var(--TextOnGradientColor);
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 50px 40px;
	display: flex;
	flex-direction: column;
}

.footer_tagline {
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 30px;
	justify-content: center;
	margin: 0 0 50px 0; 
}

.footer_tagline.animate_observer {animation-play-state: paused;}

.footer_tagline_mango {margin: 0 40px;}

.footer_tagline.animate_observer .footer_tagline_mango {
	opacity: 0;
	animation: reveal 1s 200ms ease-out forwards;
	animation-play-state: inherit;
	animation-timing-function: cubic-bezier(.22,.61,.36,1);
}

.footer_tagline hr {
	border: none;
	border-radius: 20px;
	width: 100%;
	height: 4px;
	margin-top: 3px;
	background: var(--LineOnGradientFill);
}

.footer_tagline.animate_observer hr {
	max-width: 0;
	animation: draw 1s 200ms ease-out forwards;
	animation-play-state: inherit;
	animation-timing-function: cubic-bezier(.22,.61,.36,1);
}

footer .home_btn {
	position: relative;
	margin: 0 auto 50px auto;
	font-size: 35px;
	display: block;
}

footer ul {
	font-weight: 300;
}

.footer_block_cont {
	display: flex;
	margin-bottom: 10px;
	font-size: 15px;
	column-gap: 20px;
}

.footer_block_cont.animate_observer {
	opacity: 0;
	animation: reveal 1s 200ms forwards;
	animation-play-state: paused;
}

.block {
	width: 15%;
}

.block, .mailing_block {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	position: relative;
}

.block li {
	margin-bottom: 5px;
}

.mailing_block {
	width: 40%;
}






/* Email List Form */

.email_list_form {
	width: 100%;
	height: 44px;
	display: flex;
	transition: 150ms;
	outline: solid var(--BtnOnGradientOutline);
	outline-width: 0;
	border-radius: 10px;
	font-family: 'Bahnschrift', sans-serif;
	font-weight: 300;
}

.email_list_form.disabled {opacity: 0.7;}

.email_list_form:hover {outline-width: 8px;}
.email_list_form.disabled:hover {outline-width: 0;}

.email_list_form &gt; * {font: inherit;}

.email_list_form input {
	height: 100%;
	width: 100%;
	outline: none;
	border: 2px solid currentColor;
	border-radius: 10px 0 0 10px;
	background: none;
	padding: 0 20px;
	color: var(--TextOnGradientColor);
}

.email_list_form button {
	background: var(--TextOnGradientColor);
	border-radius: 0 10px 10px 0;
	padding: 0 40px;
	font-weight: 500;
	color: var(--ThemeLandingBtnColor);
	transition: 200ms;
	outline: none;
	display: flex;
	align-items: center;
}

.email_list_form button:hover {padding: 0 50px;}
.email_list_form.disabled button:hover {padding: 0 40px; cursor: unset;}

.email_list_form.sent button::after {
	font-family: 'Icons';
	content: '\F633';
	vertical-align: text-bottom;
	margin-left: 5px;
}

.email_list_form.failed button::after {
	font-family: 'Icons';
	content: '\F333';
	vertical-align: text-bottom;
	margin-left: 5px;
}

.email_list_loader {
	height: 17px;
	width: 17px;
	border: 2px solid;
	border-radius: 50%;
	border-color: var(--ThemeLandingBtnColor);
	border-top-color: #fff;
	transform: rotate(3600deg);
	animation: 1500ms spin linear infinite;
	margin-left: 10px;
}

/* End Email List */







.socials {
	display: flex;
	column-gap: 40px;
	padding-left: 20px;
}

.socials &gt; * {
	background-color: currentColor;
	height: 25px;
	width: 25px;
	display: block;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	opacity: 0.7;
	transition: 200ms;
}

.socials &gt; *:hover {
	opacity: 1;
}

.youtube_link {-webkit-mask-image: url("/assets/youtube.svg");}
.reddit_link {-webkit-mask-image: url("/assets/reddit.svg");}
.twitter_link {-webkit-mask-image: url("/assets/twitter-x.svg");}
.trustpilot_link {-webkit-mask-image: url("/assets/trustpilot.svg");}
.producthunt_link {-webkit-mask-image: url("/assets/producthunt.svg");}





/* Copyright */

.copyright {
	padding: 20px;
	text-align: center;
}

.copyright::before {
	font-family: 'Icons';
	content: '\F7DB';
	margin-right: 10px;
	vertical-align: text-bottom;
}

.copyright.animate_observer {
	opacity: 0;
	animation: reveal 1s 200ms forwards;
	animation-play-state: paused;
}

/* End Copyright */
</pre></body></html>