.preloader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #111111;
	transition: opacity 0.5s ease;
}

.preloader.is_hidden {
	opacity: 0;
	pointer-events: none;
}

.preloader img {
	width: 60px;
	height: 60px;
	animation: slide-top 0.5s cubic-bezier(0.165, 0.840, 0.440, 1.000) infinite alternate-reverse;
}

@media (max-width: 767.98px) {
	.preloader img {
		width: 40px;
		height: 40px;
	}
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
}

@media (prefers-reduced-motion: reduce) {
	.preloader img {
		animation: none;
	}
}

.hero {
	display: flex;
	align-items: center;
	min-height: 100vh;
	text-align: center;
	padding-top: 100px;
}

.hero_image {
	animation: fade_in 1s ease both;
}

@keyframes fade_in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero_image {
		animation: none;
	}
}

.hero_image img {
	width: 95%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

.hero_sub {
	font-weight: 300;
	font-size: 32px;
	color: var(--dark-text-soft);
	margin-top: var(--space-xs);
	overflow: hidden;
}

.hero_sub_line {
	display: inline-block;
	animation: mask_up 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

@keyframes mask_up {
	from {
		transform: translateY(110%);
	}
	to {
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero_sub_line {
		animation: none;
	}
}

@media (max-width: 1399.98px) {
	.hero_image img {
		width: 75%;
	}

	.hero_sub {
		font-size: 26px;
	}
}

@media (max-width: 1280.98px) {
	.hero {
		min-height: 0;
		padding-bottom: var(--space-xl);
		padding-top: 200px;
	}

	.hero_image img {
		width: 90%;
	}

	.hero_sub {
		font-size: 20px;
	}
}

@media (max-width: 767.98px) {
	.hero {
		padding-top: 150px;
	}

	.hero_image img {
		width: 100%;
	}

	.hero_sub {
		font-size: 16px;
	}
}

.hero_ctas {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

@media (max-width: 767.98px) {
	.hero_ctas {
		flex-direction: column;
		align-items: stretch;
		width: 220px;
		max-width: 100%;
		margin-inline: auto;
	}
}

.button_play {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	font-family: var(--font-body), sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: var(--dark-accent);
	background: transparent;
	border: 2px dashed var(--dark-accent);
	border-radius: 20px;
	padding: 10px 24px;
	text-decoration: none;
	transition: 0.3s all;
}

.button_play:hover {
	color: var(--dark-text);
	border-color: var(--dark-text);
	transform: scale(1.05);
}

.button_play img {
	width: 30px;
	height: auto;
	filter: invert(81%) sepia(34%) saturate(611%) hue-rotate(58deg) brightness(96%) contrast(87%);
	transition: 0.3s all;
}

.button_play:hover img {
	filter: invert(100%) sepia(0%) saturate(7480%) hue-rotate(183deg) brightness(99%) contrast(103%);
}

@media (max-width: 1399.98px) {
	.button_play {
		font-size: 16px;
		border-radius: 15px;
		padding: 9px 20px;
	}
}

@media (max-width: 767.98px) {
	.button_play {
		font-size: 13px;
		justify-content: center;
		padding: 12px 24px;
	}

	.hero .button_accent {
		font-size: 15px;
		text-align: center;
	}

	.button_play img {
		width: 25px;
	}
}

@media (max-width: 375.98px) {
	.hero .button_accent {
		font-size: 13px;
	}

	.button_play {
		padding: 7px 16px;
		border-radius: 10px;
	}
}

.control {
	position: relative;
	margin-top: var(--space-2xl);
}

.orb_control {
	top: 18%;
	left: 88%;
}

@media (max-width: 991.98px) {
	.orb_control {
		left: 65%;
	}
}

.hero_note {
	font-size: var(--fs-note);
	color: var(--dark-text-muted);
	margin-top: var(--space-xs);
}

@media (max-width: 991.98px) {
	h1.section_title .br {
		display: none;
	}

	.hero_note {
		margin-top: 10px
	}
}

@media (max-width: 767.98px) {
	.hero_note {
		width: 50%;
		text-align: center;
		margin-inline: auto;
	}
}

.control_rule {
	position: relative;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: var(--space-sm);
}

.control_line {
	position: absolute;
	width: 100%;
	height: 1px;
	background: #555555;
}

.control_dot {
	position: relative;
	top: -17px;
	width: 14px;
	height: 14px;
	border-radius: var(--radius-circle);
}

.control_dot_yellow {
	background: var(--dark-accent-2);
}

.control_dot_green {
	background: var(--dark-accent);
}

.control_grid {
	display: grid;
	grid-template-columns: 700fr 480fr;
	gap: var(--space-sm);
	margin-top: var(--space-xs);
}

@media (max-width: 991.98px) {
	.control_grid {
		grid-template-columns: 3fr 2fr;
	}
}

@media (max-width: 767.98px) {
	.control_grid {
		grid-template-columns: 1fr;
	}

	.control_dot {
		top: -14px;
		width: 10px;
		height: 10px;
	}
}

.control_visual {
	height: 600px;
}

@media (max-width: 1920.98px) {
	.control_visual {
		height: 450px;
	}
}

@media (max-width: 991.98px) {
	.control_visual {
		height: 400px;
	}
}

@media (max-width: 375.98px) {
	.control_visual {
		height: 300px;
	}
}

.control_visual video,
.control_visual_canvas {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
	/* filter: hue-rotate(22deg)  sepia(20%) brightness(110%); */
}

.control_card {
	background: var(--dark-accent);
	border-radius: var(--radius);
	padding: 25px;
}

.card_video {
	height: 400px;
	background: #DCF5C2;
	border-radius: 20px;
	overflow: hidden;
	transform: translateZ(0);
}

@media (max-width: 1920.98px) {
	.card_video {
		height: 270px;
	}

	.control_card {
		padding: 15px;
	}
}

@media (max-width: 991.98px) {
	.card_video {
		height: 200px;
		border-radius: 15px;
	}
}

@media (max-width: 767.98px) {
	.card_video {
		height: 270px;
	}
}

.card_video video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}

.control_copy {
	font-size: var(--fs-body-lg);
	color: #355A30;
	margin-top: 15px;
}

@media (max-width: 767.98px) {
	.control_copy {
		text-align: center;
		margin-bottom: 10px;
	}

	.control_card {
		padding: 10px;
	}
}

.divider {
	height: 1px;
	background: #555555;
	margin-top: var(--space-sm);
}

.control_lead {
	font-size: var(--fs-title-sm);
	color: var(--dark-text-soft);
	margin-top: var(--space-sm);
}

.control_stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.2222%;
	margin-top: var(--space-sm);
}

@media (max-width: 991.98px) {
	.control_stats {
		grid-template-columns: repeat(2, 1fr);
		gap: var(--space-sm);
	}
}

@media (max-width: 375.98px) {
	.control_stats {
		grid-template-columns: repeat(1, 1fr);
	}
}

.stat {
	position: relative;
	top: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #292929;
	border-radius: var(--radius);
	padding: var(--space-md);
	transition: 0.3s all;
}

.stat:hover {
	top: -10px;
}

.stat_check {
	position: absolute;
	top: 10px;
	right: -15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: var(--dark-accent);
	border-radius: var(--radius-circle);
}

.stat_check svg {
	width: 24px;
	height: 24px;
}

.stat_value {
	font-weight: 600;
	font-size: 40px;
	color: var(--dark-text);
}

@media (max-width: 991.98px) {
	.stat_value {
		font-size: 32px;
	}

	.stat_check {
		width: 25px;
		height: 25px;
	}

	.stat_check svg {
		width: 18px;
		height: 18px;
	}
}

@media (max-width: 767.98px) {
	.stat_value {
		font-size: 24px;
	}
}

@media (max-width: 375.98px) {
	.stat_check {
		right: 10px;
	}
}

.stat_label {
	font-size: 16px;
	text-transform: uppercase;
	color: var(--dark-text-soft);
}

@media (max-width: 1399.98px) {
	.stat_label {
		font-size: 14px;
	}
}

@media (max-width: 767.98px) {
	.stat_label {
		font-size: 13px;
	}
}

@media (max-width: 375.98px) {
	.stat_label {
		font-size: 10px;
	}
}

.problem {
	margin-top: var(--space-2xl);
	text-align: center;
}

.problem .section_title {
	text-align: center;
}

.problem_text {
	max-width: 700px;
	font-size: var(--fs-body-lg);
	margin-top: var(--space-sm);
	margin-inline: auto;
}

@media (max-width: 991.98px) {
	.problem_text {
		max-width: 500px;
	}

	.problem .section_title .br {
		display: none;
	}
}

.problem_card {
	width: 450px;
	background: var(--dark-card);
	border-radius: var(--radius);
	padding: var(--space-md);
	margin-top: var(--space-lg);
	margin-inline: auto;
	text-align: left;
}

@media (max-width: 767.98px) {
	.problem_card {
		width: 80%;
	}
}

@media (max-width: 375.98px) {
	.problem_card {
		width: 100%;
	}
}

.problem_card_title {
	font-size: var(--fs-body-sm);
	color: var(--light-text);
}

.problem_list {
	list-style: none;
	margin-top: var(--space-sm);
}

.problem_item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 12px;
	padding-bottom: 12px;
	color: var(--light-text-soft);
	border-bottom: 1px solid #c0c0c0;
}

.problem_item:first-child {
	padding-top: 0;
}

.problem_check {
	flex-shrink: 0;
	width: 14px;
	height: 14px;
	border: 1.5px solid currentColor;
	background-color: #d9d9d9;
	border-radius: 3px;
}

.problem_strike {
	font-size: var(--fs-body-lg);
	background-image: linear-gradient(rgba(224, 21, 6, 0.548), rgba(224, 21, 6, 0.548));
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: 0% 4px;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	transition: background-size 0.5s linear;
}

.problem_list.is_in .problem_strike {
	background-size: 100% 4px;
}

.problem_item:nth-child(2) .problem_strike {
	transition-delay: 0.7s;
}

.problem_item:nth-child(3) .problem_strike {
	transition-delay: 1s;
}

.problem_item:nth-child(4) .problem_strike {
	transition-delay: 1.3s;
}

.problem_item:nth-child(5) .problem_strike {
	transition-delay: 1.6s;
}

.problem_item:nth-child(6) .problem_strike {
	transition-delay: 2s;
}

@media (prefers-reduced-motion: reduce) {
	.problem_strike {
		transition: none;
	}
}

.problem_cta_mask {
	overflow: hidden;
	margin-top: var(--space-sm);
}

.problem_cta {
	display: flex;
	align-items: center;
	gap: 15px;
}

@media (max-width: 375.98px) {
	.problem_cta {
		gap: 10px;
	}
}

.has_mask_js .problem_cta {
	transform: translateY(110%);
}

.problem_list.is_in ~ .problem_cta_mask .problem_cta {
	transform: translateY(0);
	transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: 2.3s;
}

@media (prefers-reduced-motion: reduce) {
	.has_mask_js .problem_cta {
		transform: none;
		transition: none;
	}
}

.problem_badge {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--light-text);
	color: var(--dark-accent);
	border-radius: var(--radius-circle);
}

.problem_badge svg {
	width: 28px;
	height: 28px;
}

@media (max-width: 375.98px) {
	.problem_badge {
		width: 35px;
		height: 35px;
	}

	.problem_badge svg {
		width: 21px;
		height: 21px;
	}
}

.problem_brand {
	font-size: var(--fs-body-lg);
	font-weight: 400;
	color: var(--light-text);
}

.problem_tag {
	font-size: var(--fs-body-sm);
	color: var(--light-text-soft);
}

.pay {
	position: relative;
	margin-top: var(--space-2xl);
}

.orb_pay {
	top: 0;
	left: 18%;
}

.pay_card {
	background: var(--dark-card);
	border-radius: var(--radius-xl);
	padding: var(--space-xl);
	aspect-ratio: 16 / 9.5;
	overflow: hidden;
}

.pay_grid {
	display: grid;
	grid-template-columns: 5fr 7fr;
	gap: var(--space-xl);
	height: 100%;
}

@media (max-width: 1535.98px) {
	.pay_card {
		aspect-ratio: unset;
	}

	.pay_grid {
		grid-template-columns: 6fr 7fr;
	}
}

@media (max-width: 767.98px) {
	.pay_card {
		padding: var(--space-lg);
		padding-bottom: 0;
	}

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

.pay_left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.pay_eyebrow {
	font-family: 'DM Mono';
	text-transform: uppercase;
	color: var(--dark-text-muted);
	font-size: 16px;
	font-weight: 500;
}

@media (max-width: 767.98px) {
	.pay_eyebrow {
		font-size: 12px;
	}
}

.pay_lead, .pay_body  {
	font-size: var(--fs-body-lg);
	color: var(--light-text-soft);
	margin-top: var(--space-sm);
}

.pay_icons {
	display: flex;
	align-items: center;
	gap: var(--space-xs);
	margin-top: var(--space-sm);
}

.pay_icons img {
	width: auto;
}

.pay_cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	margin-top: var(--space-lg);
}

@media (max-width: 991.98px) {
	.pay_icons {
		flex-wrap: wrap;
	}

	.pay_icons img {
		width: 60px
	}

	.pay_cta {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 100%;
		margin-top: var(--space-lg);
	}

	.button_accent.pay_cta {
		font-size: 14px;
		padding: 10px 10px;
		border-radius: 10px;
	}

	.button_accent.pay_cta img {
		width: 24px;
	}
}

@media (max-width: 375.98px) {
	.button_accent.pay_cta {
		font-size: 13px;
        padding: 6px 10px;
	}

	.button_accent.pay_cta img {
		width: 18px;
	}
}

.pay_cta img {
	filter: brightness(0) invert(0.1);
}

.pay_right {
	position: relative;
	margin-left: 40px;
}

.pay_right img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: auto;
}

@media (max-width: 991.98px) {
	.pay_right {
		margin-left: 0;
	}

	.pay_right img {
		width: 130%;
		max-width: none;
		top: 20%;
		left: 0;
		transform: none;
	}
}

@media (max-width: 767.98px) {
	.pay_right {
		position: static;
	}

	.pay_right img {
		position: static;
		top: 0;
		width: 120%;
		object-fit: cover;
		object-position: top;
		aspect-ratio: 1443 / 1396;
	}
}

.dash {
	margin-top: var(--space-2xl);
	background-color: var(--dark-bg);
	background-image: linear-gradient(to bottom, #00000000, var(--dark-bg)), url('/assets/img/background.jpg');
	background-image: linear-gradient(to bottom, #00000000, var(--dark-bg)), 
					image-set(
                      url('/assets/img/background.webp') type("image/webp"),
                      url('/assets/img/background.jpg') type("image/jpeg")
                    );
	background-size: cover;
	background-position: center;
	border-top-left-radius: var(--radius-xl);
	border-top-right-radius: var(--radius-xl);
	padding-top: 90px;
	padding-bottom: var(--space-2xl);
	overflow: hidden;
}


@media (max-width: 991.98px) {
	.dash {
		padding-top: 60px;
	}
}

@media (max-width: 375.98px) {
	.dash {
		padding-top: 30px;
	}
}

.dash_inner {
	text-align: center;
}

.dash .section_title {
	text-align: center;
}

.dash_sub {
	max-width: 800px;
	color: var(--dark-text);
	font-size: var(--fs-body-lg);
	margin-top: var(--space-sm);
	margin-inline: auto;
}

.dash_cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--dark-bg);
	color: var(--dark-text);
	margin-top: var(--space-md);
}

.dash_cta img {
	filter: brightness(0) invert(1);
	width: 13px;
	transition: 0.3s all;
}

.dash_cta:hover img {
	filter: invert(0%) sepia(96%) saturate(16%) hue-rotate(246deg) brightness(98%) contrast(105%);
}

.dash_media {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-lg);
	margin-top: var(--space-xl);
	padding-inline: var(--space-xl);
}

.dash_media::after {
	content: '';
	position: absolute;
	z-index: 0;
	top: 35%;
	left: 0;
	width: 100%;
	height: 80%;
	background: #B55E24;
	background: linear-gradient(180deg, rgba(181, 94, 36, 0.36) 0%, rgba(115, 101, 93, 0.23) 100%, rgba(46, 41, 39, 1) 100%);
	border-radius: var(--radius);
	border-top: 1px solid #848484;
	border-bottom: 1px solid #606060;
}

@media (max-width: 739.98px) {
	.dash_media {
		gap: 20px;
		padding-inline: 20px;
	}

	.dash_media::after {
		top: 25%;
		height: 90%;
	}
}

.dash_phone {
	position: relative;
	z-index: 1;
	aspect-ratio: 9 / 16;
	/* height: 650px; */
	max-height: 650px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0px 9px 20px #0a0a0a;
}

/* @media (max-width: 1920.98px) {
	.dash_phone {
		height: 520px;
	}
} */

@media (max-width: 991.98px) {
	.dash_phone {
		width: auto;
		height: auto;
		flex: 300 1 0;
		aspect-ratio: 300 / 520;
	}
}

.dash_screen {
	position: relative;
	z-index: 1;
	aspect-ratio: 5 / 4;
	/* height: 650px; */
	max-height: 650px;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0px 9px 20px #0a0a0a;
}

/* @media (max-width: 1920.98px) {
	.dash_screen {
		height: 520px;
	}
} */

@media (max-width: 991.98px) {
	.dash_screen {
		width: auto;
		height: auto;
		flex: 640 1 0;
		aspect-ratio: 640 / 520;
	}
}

.dash_phone video,
.dash_screen video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.tools {
	margin-top: var(--space-md);
	overflow-x: hidden;
}

.tools_track {
	position: relative;
	display: flex;
	gap: 28px;
	margin-top: var(--space-md);
	margin-right: calc((100% - 100vw) / 2);
	padding-top: 7px;
	overflow-x: auto;
	cursor: grab;
	scrollbar-width: none;
	user-select: none;
	-webkit-user-select: none;
}

@media (max-width: 739.98px) {
	.tools_track {
		gap: 13px;
	}
}

.tools_track::-webkit-scrollbar {
	display: none;
}

.tools_track.is_dragging {
	cursor: grabbing;
}

.tools_card {
	flex: 0 0 550px;
}

@media (max-width: 1920.98px) {
	.tools_card {
		flex: 0 0 380px;
	}
}

@media (max-width: 991.98px) {
	.tools_card {
		flex-basis: calc(22.33vw + 211px);
	}
}

@media (max-width: 739.98px) {
	.tools_card {
		flex-basis: calc(66.67vw - 29px);
	}
}

.tools_card:last-child {
	margin-right: var(--space-lg);
}

.tools_card_img {
	width: 100%;
	height: 450px;
	border-radius: var(--radius);
	background-color: var(--light-text);
	background-image: var(--bg-jpg);
	background-image: image-set(
		var(--bg-webp) type("image/webp"),
		var(--bg-jpg) type("image/jpeg")
	);
	background-size: cover;
	background-position: center;
	transition: 0.3s all;
}

@media (hover: hover) {
	.tools_card:hover .tools_card_img {
		transform: translateY(-7px);
	}
}

@media (max-width: 1920.98px) {
	.tools_card_img {
		height: 315px;
	}
}

@media (max-width: 991.98px) {
	.tools_card_img {
		height: auto;
		aspect-ratio: 380 / 315;
	}
}

.tools_card_title {
	margin-top: var(--space-sm);
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-title-sm);
	color: var(--dark-text);
}

.tools_card_text {
	margin-top: var(--space-xs);
	font-size: var(--fs-body-sm);
	color: var(--dark-text-soft);
}

.tools_nav {
	display: flex;
	gap: 35px;
	margin-top: var(--space-md);
}

.tools_arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 2px solid var(--dark-card);
	border-radius: var(--radius-circle);
	background: none;
	color: var(--dark-card);
	cursor: pointer;
	transition: 0.2s all;
}

.tools_arrow:hover {
	background-color: var(--light-bg)
}

@media (max-width: 1399.98px) {
	.tools_arrow {
		width: 48px;
		height: 48px;
	}
}

@media (max-width: 375.98px) {
	.tools_arrow {
		width: 38px;
		height: 38px;
	}
}

.tools_arrow svg {
	width: 25px;
	color: var(--dark-card);
	transition: 0.2s all;
}

.tools_arrow:hover svg {
	color: var(--light-text);
}

@media (max-width: 991.98px) {
	.tools_arrow svg {
		width: 20px;
	}
}

@media (max-width: 375.98px) {
	.tools_arrow svg {
		width: 16px;
	}
}

.suite {
	margin-top: var(--space-2xl);
	text-align: center;
}

.suite_sub {
	max-width: 800px;
	margin-top: var(--space-sm);
	font-size: var(--fs-body-lg);
	margin-inline: auto;
}

.suite_win {
	width: 1000px;
	margin-top: var(--space-xl);
	margin-inline: auto;
	background: #161616;
	border: 1px solid #2e2e2e;
	border-radius: var(--radius);
	overflow: hidden;
	text-align: left;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
	transition: 1s all cubic-bezier(0.86, 0, 0.07, 1);
}

.has_mask_js .suite_win {
	clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
}

.suite_win.is_in {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

@media (prefers-reduced-motion: reduce) {
	.has_mask_js .suite_win {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
		transition: none;
	}
}

@media (max-width: 991.98px) {
	.suite_win {
		width: 100%;
		max-width: 700px;
	}
}

.suite_bar {
	display: flex;
	align-items: center;
	gap: 16px;
	height: 56px;
	padding: 0 20px;
	border-bottom: 1px solid #2e2e2e;
}

@media (max-width: 375.98px) {
	.suite_bar {
		height: 46px;
    	padding: 0 12px;
	}
}

.suite_dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.suite_dot {
	width: 10px;
	height: 10px;
	border-radius: var(--radius-circle);
	background: #3e3e3e;
}

.suite_url {
	display: inline-flex;
	align-items: center;
	height: 24px;
	padding: 0 12px;
	background: #0f0f0f;
	border-radius: var(--radius);
	font-size: 12px;
	color: #838383;
}

.suite_main {
	display: grid;
	grid-template-columns: 3fr 7fr;
}

@media (max-width: 767.98px) {
	.suite_main {
		grid-template-columns: 1fr;
		gap: 0px;
		padding: 0px;
	}
}

.suite_tabs {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px;
}

@media (max-width: 991.98px) {
	.suite_tabs {
		padding: 10px;
	}
}

@media (max-width: 767.98px) {
	.suite_tabs {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 0px;
		padding: 0;
	}
}

.suite_label {
	font-family: var(--eyebrow);
	letter-spacing: 1px;
	font-size: 11px;
	text-transform: uppercase;
	color: #838383;
}

.suite_label_soon {
	margin-top: 20px;
}

@media (max-width: 767.98px) {
	.suite_label {
		display: none;
	}
}

.suite_tab {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 8px;
	background: none;
	border: none;
	border-radius: 8px;
	text-align: left;
	cursor: pointer;
	transition: 0.2s all;
}

.suite_tab:hover {
	background-color: rgb(23, 36, 23);
}

@media (max-width: 767.98px) {
	.suite_tab {
		position: relative;
		flex-wrap: wrap;
		row-gap: 8px;
		padding: 14px;
		border-radius: 0px;
		align-items: flex-start;
		border-right: 1px solid #2c2c2c;
		border-bottom: 1px solid #2c2c2c;
	}

	.suite_tab:nth-of-type(3n) {
		border-right: none;
	}

	.suite_tab:nth-last-of-type(-n+3) {
		border-bottom: none;
	}
}

@media (max-width: 375.98px) {
	.suite_tab {
		padding: 8px;
	}
}

.suite_tab_icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 33px;
	height: 33px;
	background: #2b2b2b;
	border-radius: 5px;
}

@media (max-width: 375.98px) {
	.suite_tab_icon {
		width: 25px;
		height: 25px;
	}

	.suite_tab_icon img {
		width: 15px;
		height: 15px;
	}
}

.suite_tab_name {
	font-family: var(--font-body), sans-serif;
	font-weight: 400;
	font-size: var(--fs-body-sm);
	color: var(--dark-text);
}

@media (max-width: 767.98px) {
	.suite_tab_name {
		order: 1;
		width: 100%;
	}
}

.suite_tab_soon .suite_tab_name {
	color: var(--dark-text-soft);
}

.suite_tab.is_active .suite_tab_name {
	color: var(--dark-accent);
}

.suite_badge {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 35px;
	height: 17px;
	margin-left: auto;
	border-radius: var(--radius-xl);
	font-size: 10px;
	font-weight: 700;
	background: #345b2e;
	color: #22ff00;
}

.suite_badge_soon {
	background: #5b542e;
	color: #ffea00;
}

.suite_roadmap {
	display: block;
	width: 100%;
	padding: 12px;
	margin-top: 32px;
	background: #2b2b2b;
	border-radius: 10px;
	color: var(--dark-text);
	text-align: center;
	text-decoration: none;
	transition: 0.3s all;
	transform: translateZ(0);
}

.suite_roadmap:hover {
	background-color: var(--light-bg);
	color: var(--light-text);
}

@media (max-width: 991.98px) {
	.suite_roadmap {
		font-size: 14px;
	}
}

@media (max-width: 767.98px) {
	.suite_tabs .suite_roadmap {
		display: none;
	}
}

.suite_roadmap_phone {
	display: none;
}

@media (max-width: 767.98px) {
	.suite_roadmap_phone {
		display: block;
		margin-top: 0;
		padding: 20px;
		border-radius: 0px;
		font-size: 18px;
		background-color: var(--dark-card);
		color: var(--dark-bg);
		font-weight: 500;
	}

	.suite_roadmap_phone img {
		filter: none !important;
	}
}

@media (max-width: 375.98px) {
	.suite_roadmap_phone {
		padding: 15px;
		font-size: 13px;
	}
}

.suite_roadmap img {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	margin-left: 8px;
	filter: brightness(0) invert(1);
	transition: 0.3s all;
}

.suite_roadmap:hover img {
	filter: invert(0%) sepia(96%) saturate(16%) hue-rotate(246deg) brightness(98%) contrast(105%);
}

.suite_panel {
	position: relative;
}

.suite_panel_inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	overflow-y: auto;
	background-color: #1F1F1F;
	padding: 20px;
}

@media (max-width: 767.98px) {
	.suite_panel_inner {
		position: static;
		min-height: 400px;
		border-radius: 30px;
		border-bottom-left-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}

@media (max-width: 375.98px) {
	.suite_panel_inner {
		height: 360px;
		border-radius: 10px;
		gap: 10px;
	}
}

.suite_status {
	font-family: var(--eyebrow);
	letter-spacing: 9%;
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	color: var(--dark-accent);
}

@media (max-width: 375.98px) {
	.suite_status {
		letter-spacing: 6%;
		font-size: 10px;
	}
}

.suite_status_soon {
	color: var(--dark-accent-2);
}

.suite_status::before {
	content: "";
	width: 9px;
	height: 9px;
	border-radius: var(--radius-xl);
	margin-right: 4px;
	background-color: var(--dark-accent);
}

.suite_status_soon::before {
	background-color: var(--dark-accent-2);
}

.suite_title {
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-title-lg);
	letter-spacing: 0px;
	color: var(--dark-text);
}

.suite_text {
	font-size: var(--fs-body-lg);
	color: var(--dark-text-soft);
	width: 80%;
}

.suite_cta {
	align-self: flex-start;
	/* margin-top: 10px; */
}

@media (max-width: 991.98px) {
	.suite_text {
		width: 100%;
	}
}

.claim {
	position: relative;
	margin-top: var(--space-2xl);
}

.claim_row {
	position: relative;
	left: 0;
	max-width: 550px;
	margin-left: 50%;
	transition: 0.5s all;
}

.claim_row:hover {
	left: 10px;
}

@media (max-width: 739.98px) {
	.claim_row {
		margin-left: 30%;
	}
}

.claim_row::before {
	content: "Back to what\A you do best";
	position: absolute;
	top: 5px;
	right: 100%;
	margin-right: 20px;
	white-space: pre;
	font-family: var(--font-body), sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: normal;
	color: var(--dark-accent);
}

@media (max-width: 991.98px) {
	.claim_row::before {
		font-size: 16px;
	}
}

@media (max-width: 739.98px) {
	.claim_row::before {
		font-size: 14px;
	}
}

@media (max-width: 375.98px) {
	.claim_row::before {
		font-size: 10px;
		margin-right: 10px;
	}
}

.has_mask_js .claim_row::before {
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.claim_row.is_in::before {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	.has_mask_js .claim_row::before {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.claim_row + .claim_row {
	margin-top: var(--space-2xl);
}

.claim_row_right {
	margin-left: auto;
	margin-right: 50%;
	text-align: right;
}

@media (max-width: 739.98px) {
	.claim_row_right {
		margin-right: 30%;
	}
}

.claim_row_right::before {
	content: "In your\A hands";
	right: auto;
	left: 100%;
	margin-right: 0;
	margin-left: 20px;
}

.claim_text {
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-title-lg);
	color: var(--dark-text);
	letter-spacing: 0px;
}

.counter {
	padding-top: var(--space-2xl);
}

.counter_box {
	position: relative;
	aspect-ratio: 16 / 9;
	height: 1200px;
	margin-inline: auto;
	border-radius: var(--radius-xl);
	overflow: hidden;
}

@media (max-width: 1920.98px) {
	.counter_box {
		height: 800px;
	}
}

@media (max-width: 1535.98px) {
	.counter_box {
		height: 650px;
	}
}

@media (max-width: 1280.98px) {
	.counter_box {
		height: 100%;
		margin-inline: 20px;
	}
}

@media (max-width: 991.98px) {
	.counter_box {
		aspect-ratio: 1 / 1.05;
	}
}

.has_mask_js .counter_box {
	transform: scale(0.5);
}

@media (prefers-reduced-motion: reduce) {
	.has_mask_js .counter_box {
		transform: none;
	}
}

.counter_video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.counter_overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 10px, #0000009e 100%);
}

.counter_title {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 60px;
	font-size: 64px;
	font-weight: 400;
	line-height: 1.2;
	color: #ffffff;
}

@media (max-width: 1399.98px) {
	.counter_title {
		padding: 30px;
		font-size: 40px;
	}
}

@media (max-width: 739.98px) {
	.counter_title {
		padding: 20px;
		font-size: 24px;
	}
}

@media (max-width: 375.98px) {
	.counter_title {
		font-size: 20px;
	}
}

.why {
	margin-top: var(--space-2xl);
}

.why_sub {
	font-size: var(--fs-body-lg);
	margin-top: var(--space-xs);
	color: var(--dark-text-soft);
	width: 50%;
}

@media (max-width: 991.98px) {
	.why_sub {
		width: 70%;
	}
}

@media (max-width: 767.98px) {
	.why_sub {
		width: 100%;
	}
}

.why_table_wrap {
	margin-top: var(--space-md);
	border: 1px solid #1f1f1f;
	border-radius: var(--radius);
	overflow: hidden;
}

@media (max-width: 767.98px) {
	.why_table_wrap {
		overflow-x: auto;
	}
}

.why_table {
	width: 100%;
	font-size: var(--fs-body-sm);
	table-layout: fixed;
	border-collapse: collapse;
	background: #1f1f1f;
	text-align: left;
	font-weight: 400;
}

@media (max-width: 767.98px) {
	.why_table {
		min-width: 480px;
		font-size: 14px;
	}
}

@media (max-width: 375.98px) {
	.why_table {
		min-width: 450px;
		font-size: var(--fs-body-sm);
	}
}

.why_table th {
	padding: 15px;
	background: #161616;
	color: var(--dark-text-soft);
	border-bottom: 1px solid #2e2e2e;
}

.why_table td {
	padding: 18px;
	color: var(--dark-text-soft);
	border-bottom: 1px solid #2e2e2e;
}

@media (max-width: 991.98px) {
	.why_table th {
		padding: 10px;
		font-size: 12px;
	}

	.why_table td {
		padding: 15px;
	}
}

@media (max-width: 767.98px) {
	.why_table th, .why_table td {
		padding: 11px;
	}
}

@media (max-width: 375.98px) {
	.why_table th, .why_table td {
		padding: 8px;
	}
}



.why_table td:nth-child(3),
.why_table td:nth-child(4) {
	color: var(--dark-text-muted);
}

.why_table td:nth-child(2) {
	background-color: #282828;
	color: var(--dark-text);
}

.why_table th:first-child {
	width: 40%;
}

@media (max-width: 767.98px) {
	.why_table th:first-child {
		width: 30%;
	}
}

.why_table tr:last-child td {
	border-bottom: none;
}

.why_table td.no {
	color: #FF5353;
}

.why_table td.yes {
	color: var(--dark-accent)
}

.why_table tr:hover {
	background-color: #1b1b1b;
}

.why_table tr:hover td:nth-child(2) {
	background-color: #1b1b1b;
}

.why_links p {
	font-size: 16px;
	text-align: center;
	color: var(--dark-text-soft);
	padding-block: 20px;
}

@media (max-width: 767.98px) {
	.why_links p {
		font-size: 14px;
		padding-block: 15px;
	}
}

.partners {
	margin-block: 200px;
}

.partners_box {
	display: flex;
	margin-inline: auto;
	max-width: 970px;
	background: #ffffff;
	border-radius: var(--radius-xl);
	padding-block: 80px;
}

@media (max-width: 991.98px) {
	.partners {
		margin-block: 100px;
	}

	.partners_box {
		max-width: 768px;
		padding-block: 50px;
		align-items: flex-end;
	}
}

@media (max-width: 767.98px) {
	.partners_box {
		flex-direction: column;
		align-items: center;
		background: none;
		padding-block: 0;
	}
}

.partners_col {
	flex: 1;
	text-align: center;
	border-right: 1px solid rgba(7, 7, 13, 0.162);
}

.partners_col:last-child {
	border-right: none;
}

@media (max-width: 767.98px) {
	.partners_col {
		border-right: none;
		border-bottom: 1px solid rgba(7, 7, 13, 0.162);
		padding-block: 40px;
	}

	.partners_col:last-child {
		border-bottom: none;
	}
}

@media (max-width: 375.98px) {
	.partners_col {
		padding-block: 20px;
	}
}

.partners_media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: var(--space-sm);
}

@media (max-width: 991.98px) {
	.partners_media {
		width: 40%;
		margin-inline: auto;
	}
}

@media (max-width: 767.98px) {
	.partners_media {
		width: 50%;
	}
}

@media (max-width: 375.98px) {
	.partners_media {
		width: 40%;
	}
}

.partners_title {
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-title-sm);
	padding-bottom: 3px;
	color: var(--light-text);
}

.partners_sub {
	font-size: var(--fs-body-sm);
	color: var(--light-text-soft);
}

.howto {
	margin-top: var(--space-2xl);
}

.howto h2 {
	text-align: center;
}

.howto_sub {
	width: 50%;
	margin-bottom: var(--space-lg);
	font-size: var(--fs-body-lg);
	margin-inline: auto;
	text-align: center;
	color: var(--light-text-soft);
}

.howto_grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-md);
}

@media (max-width: 767.98px) {
	.howto_grid {
		gap: 10px;
	}

	.howto_sub {
		width: 100%;
	}
}

.howto_feature {
	position: relative;
	top: 0;
	flex: 0 0 calc((100% - 2 * var(--space-md)) / 3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 350px;
	background: #ffffff;
	border-radius: var(--radius);
	padding: 30px;
	transition: 0.3s all;
}

@media (max-width: 991.98px) {
	.howto_feature {
		flex-basis: calc((100% - var(--space-md)) / 2);
	}
}

@media (max-width: 767.98px) {
	.howto_feature {
		flex-basis: 100%;
		min-height: 0;
	}
}

.howto_feature:hover {
	top: -10px;
}

@media (max-width: 767.98px) {
	.howto_feature:hover {
		top: 0;
	}
}

.howto_number {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: var(--radius-circle);
	background: var(--light-text);
	color: #ffffff;
	font-family: var(--font-heading), sans-serif;
	font-weight: 400;
	font-size: 28px;
	letter-spacing: 0;
}

@media (max-width: 1399.98px) {
	.howto_number {
		font-size: 20px;
		width: 35px;
		height: 35px;
	}
}

@media (max-width: 375.98px) {
	.howto_number {
		font-size: 10px;
		width: 25px;
		height: 25px;
	}
}

.howto_media {
	margin-bottom: var(--space-sm);
}

@media (max-width: 767.98px) {
	.howto_media img {
		width: 60px;
		height: 60px;
	}
}

@media (max-width: 375.98px) {
	.howto_media img {
		width: 40px;
		height: 40px;
	}
}

.howto_feature h4 {
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-title-sm);
	color: var(--light-text);
	text-align: center;
	margin-bottom: 10px
}

.howto_feature p {
	font-family: var(--font-body), sans-serif;
	font-size: var(--fs-body-sm);
	color: var(--light-text-soft);
	text-align: center;
}

.howto_video {
	overflow: hidden;
	border-radius: var(--radius);
	background: #ffcd44;
}

.howto_video video {
	display: block;
	width: 100%;
	height: 100%;
}

.howto_video_wide {
	height: 640px;
	margin-top: var(--space-md);
}

.howto_video_tablet {
	display: none;
}

@media (max-width: 1280.98px) {
	.howto_video_wide {
		height: 540px;
		margin-top: var(--space-md);
	}
}

@media (max-width: 991.98px) {
	.howto_video_wide {
		display: none;
	}

	.howto_video video {
		transform: scale(1.3);
    	object-fit: contain;
	}

	.howto_video_tablet {
		display: block;
		flex-basis: calc((100% - var(--space-md)) / 2);
	}
}

@media (max-width: 767.98px) {
	.howto_video_wide {
		display: block;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.howto_video_tablet {
		display: none;
	}
}

.testimonials_inner {
	position: relative;
	height: 95vh;
}

@media (max-width: 1535.98px) {
	.testimonials_inner {
		height: 65vh;
	}
}

@media (max-width: 375.98px) {
	.testimonials_inner {
		height: 50vh;
	}
}

.testimonial_cont {
	width: 70%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
}

@media (max-width: 1399.98px) {
	.testimonial_cont {
		width: 50%;
	}
}

@media (max-width: 991.98px) {
	.testimonial_cont {
		width: 70%;
	}
}

.testimonial_row {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	scroll-behavior: smooth;
}

.testimonial_text {
	position: absolute;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	color: var(--light-text);
	text-align: center;
	transition: opacity 0.2s ease-in-out;
}

.testimonial_text.active {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0.2s;
}

.testimonial_text h2 {
	font-size: 50px;
	font-weight: 300;
	color: var(--light-text);
}

@media (max-width: 1535.98px) {
	.testimonial_text h2 {
		font-size: 35px;
	}
}

@media (max-width: 739.98px) {
	.testimonial_text h2 {
		font-size: 26px;
	}
}

@media (max-width: 375.98px) {
	.testimonial_text h2 {
		font-size: 16px;
	}
}

.testimonial_user {
	position: absolute;
	right: 0;
	bottom: -150px;
}

.testimonial_user p {
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-body-sm);
	text-align: start;
	color: var(--light-text);
}

@media (max-width: 375.98px) {
	.testimonial_user {
		bottom: -60px;
	}
}

.testimonial_user p:nth-child(2) {
	color: var(--light-text-soft)
}

.testimonial_btn_next,
.testimonial_btn_prev {
	position: absolute;
	top: calc(50% - 30px);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border: 1px solid var(--light-text);
	border-radius: var(--radius-circle);
	background: var(--light-bg);
	transition: 0.2s all;
}

@media (max-width: 1399.98px) {
	.testimonial_btn_next,
	.testimonial_btn_prev {
		top: calc(50% - 23px);
		width: 46px;
		height: 46px;
	}

	.testimonial_btn_next img,
	.testimonial_btn_prev img {
		width: 22px;
	}
}

@media (max-width: 739.98px) {
	.testimonial_btn_next,
	.testimonial_btn_prev {
		top: calc(50% - 16px);
		width: 32px;
		height: 32px;
	}

	.testimonial_btn_next img,
	.testimonial_btn_prev img {
		width: 14px;
	}
}

.testimonial_btn_next {
	right: 0;
}

.testimonial_btn_prev {
	left: 0;
}

.testimonial_btn_next:hover,
.testimonial_btn_prev:hover {
	background-color: var(--light-text);
}

.testimonial_btn_next:hover img,
.testimonial_btn_prev:hover img {
	filter: invert(95%) sepia(100%) saturate(14%) hue-rotate(213deg) brightness(104%) contrast(104%);
}

.launchpad {
	margin-top: var(--space-2xl);
}

.launchpad_box {
	position: relative;
	max-width: 1600px;
	margin-inline: auto;
	border-radius: var(--radius);
	overflow: hidden;
}

@media (max-width: 1920.98px) {
	.launchpad_box {
		margin-inline: 50px;
		max-width: unset;
	}
}

@media (max-width: 1100px) {
	.launchpad_box {
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 739.98px) {
	.launchpad_box {
		margin-left: 16px;
		margin-right: 16px;
	}
}

.launchpad_content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 50%;
	padding: var(--space-xl);
	padding-right: var(--space-2xl);
	background: #ffffff;
	border-radius: var(--radius);
}

@media (max-width: 1100px) {
	.launchpad_content {
		width: 100%;
		padding-right: var(--space-xl);
		border-radius: 0;
	}
}

@media (max-width: 739.98px) {
	.launchpad_content {
		padding: var(--space-md);
		padding-right: var(--space-md);
	}
}

.launchpad_lead {
	font-size: var(--fs-body-lg);
	margin-top: var(--space-sm);
	color: var(--light-text-soft);
}

.launchpad_cards {
	display: flex;
	gap: var(--space-sm);
	margin-top: var(--space-md);
}

@media (max-width: 739.98px) {
	.launchpad_cards {
		flex-direction: column;	
	}
}

.launchpad_card {
	flex: 1;
	background: var(--dark-card);
	border-radius: var(--radius);
	padding: var(--space-md);
	transition: 0.3s all;
}

.launchpad_card:hover {
	transform: translateY(-10px);
}

.launchpad_card_title {
	font-family: var(--font-body), sans-serif;
	font-weight: 400;
	font-size: var(--fs-body-sm);
	color: var(--light-text);
}

.launchpad_card_text {
	margin-top: var(--space-xs);
	font-size: var(--fs-body-sm);
	color: var(--light-text-soft);
}

.launchpad_cta {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	align-self: flex-start;
	margin-top: var(--space-md);
	margin-bottom: var(--space-xl);
}

.launchpad_fine {
	margin-top: var(--space-lg);
	font-size: var(--fs-note);
	color: var(--light-text-soft);
}

@media (max-width: 375.98px) {
	.launchpad_fine {
		font-size: 10px;
	}
}

.launchpad_fine a {
	color: var(--light-text);
}

.launchpad_visual {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: calc(50% - 60px);
	z-index: 0;
}

@media (max-width: 1100px) {
	.launchpad_visual {
		position: static;
		order: -1;
		height: 400px;
	}
}

@media (max-width: 375.98px) {
	.launchpad_visual {
		height: 200px;
	}
}

.launchpad_visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

@media (max-width: 739.98px) {
	.launchpad_visual img {
		object-position: 60% 50%;
	}
}

.faq {
	margin-top: var(--space-2xl);
	position: sticky;
	top: 0;
	z-index: 1;
}

.faq_pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: var(--space-md);
}

.faq_pill {
	font-family: var(--font-body), sans-serif;
	font-size: var(--fs-body-lg);
	font-weight: 400;
	color: var(--light-text);
	padding-block: 25px;
	padding-inline: 30px;
	border: none;
	border-radius: var(--radius);
	background: #eeeeee;
	cursor: pointer;
	transition: 0.3s all;
}

.faq_pill:hover {
	transform: translateY(-5px);
	background-color: #CAFFC2;
}

@media (max-width: 1399.98px) {
	.faq_pill {
		padding-block: 20px;
		padding-inline: 25px;
	}
}

@media (max-width: 767.98px) {
    .faq_pill {
        padding-block: 15px;
        padding-inline: 21px;
	}
}

@media (max-width: 375.98px) {
	.faq_pill {
        font-size: 11px;
        padding-block: 11px;
        padding-inline: 11px;
	}
}

.faq_pill.is_active {
	background: #CAFFC2;
}

.faq_box {
	margin-top: var(--space-md);
	padding: var(--space-md);
	background: #ffffff;
	border-left: 2px solid #eeeeee;
	border-radius: var(--radius);
	min-height: 300px;
}

@media (max-width: 375.98px) {
	.faq_box {
		min-height: 200px;
	}
}

.faq_title {
	font-family: var(--font-heading), sans-serif;
	font-size: var(--fs-title-lg);
	color: var(--light-text);
}

.faq_answer {
	margin-top: var(--space-sm);
	font-size: var(--fs-body-lg);
	color: var(--light-text);
}

.cta {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 95vh;
	text-align: center;
	background-color: var(--dark-bg);
	margin-top: var(--space-2xl);
	border-top-left-radius: var(--radius-xl);
	border-top-right-radius: var(--radius-xl);
	overflow: hidden;
}

.cta_bg {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	background-color: var(--dark-bg);
	background-image: url('/assets/img/cta-img.jpg');
	background-image: image-set(
						url('/assets/img/cta-img.jpg') type("image/webp"),
						url('/assets/img/cta-img.jpg') type("image/jpeg")
						);
	background-repeat: no-repeat;
	background-size: cover;
	/* animation: cta-sheen 5s linear infinite alternate-reverse both, cta-move 30s linear infinite alternate-reverse both; */
}

@media (max-width: 1280.98px) {
	.cta_bg {
		background-position-y: unset;
		background-position-x: 50%;
	}
}

.cta_bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.322);
}

/* @keyframes cta-sheen {
	from { opacity: 0.5;}
	to { opacity: 1;}
}

@keyframes cta-move {
	from { background-position-x: 100%;}
	to { background-position: initial;}
} */

.cta .container {
	position: relative;
	z-index: 2;
}

.cta_window {
	width: 1000px;
	background-color: var(--light-bg);
	margin-inline: auto;
	padding-inline: 190px;
	padding-block: 60px;
	border-radius: var(--radius);
	text-align: center;
}

@media (max-width: 1399.98px) {
	.cta_window {
		width: 100%;
		max-width: 740px;
		padding-inline: 100px;
	}
}

@media (max-width: 739.98px) {
	.cta_window {
		max-width: 350px;
		padding-inline: 30px;
		padding-block: 30px;
	}
}

.cta_text {
	margin-top: var(--space-sm);
	font-size: var(--fs-body-lg);
	color: var(--light-text-soft);
}

.button_pill {
    position: relative;
    display: flex;
	flex-wrap: wrap;
    align-content: center;
    align-items: flex-end;
    justify-content: space-evenly;
    width: 290px;
    height: 95px;
    margin-top: var(--space-md);
    margin-inline: auto;
    border: 1px solid var(--light-text);
    border-radius: var(--radius);
    overflow: hidden;
}

@media (max-width: 767.98px) {
	.button_pill {
		width: auto;
        height: auto;
		align-items: center;
	    flex-direction: column;
		border: 1px solid #b9b9b9;
	}
}

@media (max-width: 375.98px) {
	.button_pill {
 		width: 192px;
        height: 150px;
	}
}

.cta_dot {
	position: absolute;
	z-index: 1;
	display: none;
	width: 20px;
	height: 20px;
	border-radius: var(--radius-circle);
	background: var(--dark-accent);
	pointer-events: none;
	transition: width 0.2s ease, height 0.2s ease;
}

.v_line {
	width: 1px;
	height: 60px;
	background: var(--light-text);
}

@media (max-width: 767.98px) {
	.v_line {
		width: 100%;
		height: 1px;
		background: #b9b9b9;
	}
}

.btn_container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	border: none;
	outline: none;
	background: transparent;
	font: inherit;
	color: inherit;
	text-decoration: none;
}

@media (max-width: 767.98px) {
	.btn_container {
		padding: 15px;
	}
}

@media (max-width: 375.98px) {
	.btn_container {
		padding: 5px;
	}
}

.btn_container span {
	font-size: 14px;
	color: var(--light-text);
	font-weight: 400;
	margin-top: 8px;
}

@media (max-width: 375.98px) {
	.btn_container span {
		font-size: 13px;
		font-weight: 400;
		margin-top: 5px;
	}
}

@media (max-width: 767.98px) {
	.btn_container img {
		width: 24px;
	}
}

.notice {
	position: absolute;
	bottom: 80px;
	left: 0;
	z-index: 3;
	color: #ffffff;
	font-size: 14px;
	width: 100%;
}

@media (max-width: 767.98px) {
	.notice {
		font-size: 10px;
	}
}

.temp_footer {
    position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
	width: 100%;
    display: flex;
    justify-content: center;
    white-space: nowrap;
    align-items: center;
    height: 60px;
}

@media (max-width: 739.98px) {
	.temp_footer {
		flex-wrap: wrap;
		height: auto;
		padding-block: 10px;
	}

	.temp_footer p:first-child {
		flex-basis: 100%;
		margin-bottom: 10px;
	}

	.temp_footer p:nth-of-type(2) {
		display: none;
	}
}

.temp_footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 25%;
    background-color: #dddddd;
}

@media (max-width: 1535.98px) {
	.temp_footer::before {
		width: 35%;
	}
}

@media (max-width: 991.98px) {
	.temp_footer::before {
		width: 70%;
	}
}

.temp_footer p {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 11px;
    color: #dddddd;
    margin-bottom: 0;
    padding-inline: 15px;
}

.temp_footer p:nth-of-type(2) {
	padding-left: 0px;
}

.temp_footer-link {
    font-family: "Lexend", sans-serif;
    font-weight: 400;
    letter-spacing: 0px;
    font-size: 11px;
    color: #dddddd;
    background-color: transparent;
    transition: 0.3s all;
	text-decoration: none;
}

.temp_footer-link:hover {
    color: var(--dark-accent);
}

#contact-us {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    transform: translateY(-100%);
    overflow: hidden;
    background-color: #0000004a;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(10px); 
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#contact-us.show {
    animation: slide-in-top 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    pointer-events: auto;
    transition: none;
}

#contact-us.hide {
    animation: slide-out-top 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    pointer-events: none;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slide-out-top {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

.contact_wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 20px;
}

.contact_form {
    width: 100%;
    max-width: 800px;
    background-color: white;
    border-radius: var(--radius);
    border: 1px dashed var(--dark-accent);
    outline: 20px solid white;
    padding: var(--space-lg);
    color: var(--light-text);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
	gap: 20px;
    align-items: center;
    text-align: center;
}

@media (max-width: 991.98px) {
	.contact_form {
		max-width: 640px;
		gap: 15px;
	}
}

@media (max-width: 739.98px) {
	.contact_form {
		width: 100%;
		grid-template-rows: repeat(3, min-content);
		max-width: unset;
		outline: 15px solid white;
		padding: 25px;
		gap: 30px;
		margin-inline: 20px;
	}
}

.contact_form section {
    display: grid;
    justify-items: center;
    justify-content: center;
}

.contact_form p {
    font-size: var(--fs-body-sm);
    color: var(--light-text-soft);
    width: 70%;
}

.contact_form h3 {
    color: var(--light-accent);
	font-size: var(--fs-title-sm);
	margin-bottom: 5px;
}

@media (max-width: 739.98px) {
	.contact_form p {
		width: 100%;
	}
}

.contact_mail {
    border: 1px solid #a8a8a8;
    border-radius: var(--radius-xl);
    padding: 14px 27px;
    color: var(--light-text-soft);
    text-decoration: none;
    transition: 0.3s all;
}

.contact_mail:hover {
    border-color: #87b3ff;
    color: #688ac5;
}
