/*!
 * USA Landing Page
 * Scoped to body.usa-landing
 */

body.usa-landing {
	margin: 0;
	background: #11100f;
	color: #fff;
	font-family: "Figtree", sans-serif;
}

html {
	scroll-padding-top: 50px;
}

body.usa-landing [id] {
	scroll-margin-top: 50px;
}

body.usa-landing *,
body.usa-landing *::before,
body.usa-landing *::after {
	box-sizing: border-box;
}

body.usa-landing img {
	max-width: 100%;
	height: auto;
	display: block;
}

body.usa-landing .d-none {
	display: none !important;
}

body.usa-landing .d-block {
	display: block !important;
}

@media (min-width: 768px) {
	body.usa-landing .d-md-none {
		display: none !important;
	}

	body.usa-landing .d-md-flex {
		display: flex !important;
	}

	body.usa-landing .d-md-grid {
		display: grid !important;
	}
}

body.usa-landing a {
	color: inherit;
}

body.usa-landing .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.usa-landing .usa-wrapper {
	width: min(calc(100% - 32px), 1200px);
	margin-inline: auto;
}

body.usa-landing .usa-header-shell {
	position: sticky;
	top: 0;
	z-index: 1000;
}

body.admin-bar.usa-landing .usa-header-shell {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar.usa-landing .usa-header-shell {
		top: 46px;
	}
}

body.usa-landing .promo-topbar {
	position: static !important;
	top: auto;
	padding-block: 10px;
}

body.usa-landing .promo-topbar__inner {
	width: min(100%, 1200px);
	padding-inline: 16px;
}

body.usa-landing .promo-topbar--coupon-campaign .promo-topbar__inner {
	width: 100%;
	max-width: none;
}

body.usa-landing .usa-header {
	background: #161514;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1002;
}

body.usa-landing .usa-header__inner {
	min-height: 84px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
}

body.usa-landing .usa-header__logo {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
}

body.usa-landing .usa-header__logo img {
	width: 73px;
	height: auto;
}

body.usa-landing .usa-header__nav--desktop {
	display: flex;
	justify-content: center;
	min-width: 0;
}

body.usa-landing .usa-header__menu {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
}

body.usa-landing .usa-header__menu-link {
	color: #a8a8a8 !important;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none !important;
	transition: color 0.2s ease;
}

body.usa-landing .usa-header__menu-link:hover,
body.usa-landing .usa-header__menu-link:focus-visible {
	color: #fff !important;
}

body.usa-landing .usa-header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-self: end;
}

body.usa-landing .usa-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 10px 20px;
	border-radius: 8px;
	background: linear-gradient(92.95deg, #f3981f 0%, #e57625 100%) !important;
	background-size: 100% 100%;
	color: #141313 !important;
	font-size: 14px;
	font-weight: 600 !important;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	border: 0 !important;
	box-shadow: 0px 2px 21px 0px rgba(243, 152, 31, 0.39) !important;
	transition:
		box-shadow 0.25s ease,
		background 0.25s ease,
		transform 0.25s ease;
}

body.usa-landing .usa-header__cta:hover,
body.usa-landing .usa-header__cta:focus-visible {
	background: linear-gradient(92.95deg, #ffab3c 0%, #ee8436 100%) !important;
	box-shadow: 0px 2px 24px 0px rgba(243, 152, 31, 0.5) !important;
	transform: translateY(-1px);
}

body.usa-landing .usa-header__toggle {
	display: none;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	position: relative;
}

body.usa-landing .usa-header__toggle span {
	display: block;
	position: absolute;
	left: 0;
	width: 20px;
	height: 2px;
	border-radius: 999px;
	background: #f3981f !important;
	transform-origin: center;
	transition:
		top 0.22s ease,
		transform 0.22s ease,
		opacity 0.18s ease;
}

body.usa-landing .usa-header__toggle span:nth-child(1) {
	top: 2px;
}

body.usa-landing .usa-header__toggle span:nth-child(2) {
	top: 9px;
}

body.usa-landing .usa-header__toggle span:nth-child(3) {
	top: 16px;
}

body.usa-landing .usa-header__toggle.is-open span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}

body.usa-landing .usa-header__toggle.is-open span:nth-child(2) {
	opacity: 0;
}

body.usa-landing .usa-header__toggle.is-open span:nth-child(3) {
	top: 9px;
	transform: rotate(-45deg);
}

body.usa-landing .usa-mobile-menu {
	background: #161514;
	position: fixed;
	top: var(--usa-mobile-menu-top, 88px);
	right: var(--usa-scrollbar-compensation, 0px);
	bottom: 0;
	left: 0;
	z-index: 1001;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.24s ease,
		visibility 0.24s ease;
}

body.usa-landing .usa-mobile-menu__inner {
	min-height: calc(100dvh - var(--usa-mobile-menu-top, 88px));
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translateY(-56px);
	transition: transform 0.28s ease;
}

body.usa-landing .usa-header__nav--mobile {
	width: 100%;
	display: flex;
	justify-content: center;
}

body.usa-landing .usa-header__nav--mobile .usa-header__menu {
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 28px;
	width: 100%;
}

body.usa-landing .usa-header__nav--mobile .usa-header__menu-link {
	font-size: 28px;
	line-height: 1.1;
	font-weight: 600;
	letter-spacing: -0.02em;
}

body.usa-landing .usa-mobile-menu.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.usa-landing .usa-mobile-menu.is-active .usa-mobile-menu__inner {
	transform: translateY(0);
}

body.usa-landing .usa-landing__main {
	position: relative;
	overflow: clip;
	isolation: isolate;
}

body.usa-landing .usa-landing__main::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background: none;
}

body.usa-landing .usa-trust-bar {
	padding: 50px 0;
}

body.usa-landing .usa-trust-bar .usa-wrapper {
	display: flex;
	justify-content: center;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot {
	min-width: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot .trustpilot-widget {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 180px;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot iframe {
	max-width: 100%;
	height: 85px !important;
}

body.usa-landing .usa-trust-bar .tp-widget-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-pi-partnership-mobile {
	padding-top: 30px;
	padding-bottom: 30px;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-pi-partnership-mobile .trust-mp-circles-img {
	height: 66px;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-icon {
	width: 23px;
	height: 23px;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot {
	font-size: 12px;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot .trustpilot-widget {
	font-size: 12px;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-customers p,
body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-rewards p {
	font-size: 13px;
	font-weight: 400;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-customers p span,
body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-rewards p span {
	font-size: 16px;
	font-weight: 500;
}

body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-pi-partnership-mobile .trust-mp-title {
	font-size: 18px;
	font-weight: 500;
	color: #f5f0e6;
}

@media (min-width: 768px) and (max-width: 991px) {
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-grid {
		grid-template-columns: 1fr;
		gap: 13px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined.d-block.d-md-none {
		display: block !important;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats.d-none.d-md-grid,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership.d-none.d-md-flex {
		display: none !important;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-icon {
		width: 30px;
		height: 30px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot {
		font-size: 10px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-trustpilot .trustpilot-widget {
		font-size: 10px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-customers p,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-rewards p {
		font-size: 16px;
		font-weight: 500;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-customers p span,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-stat-rewards p span {
		font-size: 24px;
		font-weight: 600;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-pi-partnership-mobile .trust-mp-circles-img {
		height: 68px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-combined .trust-pi-partnership-mobile .trust-mp-title {
		font-size: 24px;
		line-height: 1;
	}
}

@media (min-width: 992px) {
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: stretch;
		gap: 35px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership {
		height: 170px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-trustpilot {
		display: flex;
		align-items: center;
		justify-content: center;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-icon {
		width: 30px;
		height: 30px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-trustpilot {
		font-size: 10px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-trustpilot .trustpilot-widget {
		font-size: 10px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-customers p,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-rewards p {
		font-size: 16px;
		font-weight: 500;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-customers p span,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-card-stats .trust-stat-rewards p span {
		font-size: 24px;
		font-weight: 600;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership {
		position: relative;
		padding: 20px 42px;
		gap: 15px;
		border-color: rgba(255, 255, 255, 0.12) !important;
		outline: 1px solid transparent;
		outline-offset: 0;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		transition:
			box-shadow 0.3s ease !important,
			outline-color 0.3s ease !important;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership::after {
		content: none;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership:hover,
	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership:focus-visible {
		border-color: rgba(255, 255, 255, 0.12) !important;
		outline-color: #f3981f;
		box-shadow: 0 8px 22px rgba(243, 152, 31, 0.12);
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership .trust-mp-circles-img {
		height: 68px;
	}

	body.usa-landing .usa-trust-bar .trust-cards-wrap.is-partnership-inline .trust-pi-partnership .trust-mp-title {
		font-size: 24px;
		line-height: 1;
		font-weight: 500;
		color: #f5f0e6;
	}
}

@media (max-width: 1239px) {
	body.usa-landing .usa-landing__main::before {
		background: none;
	}
}

body.usa-landing .usa-explain,
body.usa-landing .usa-stories {
	padding: 50px 0;
}

body.usa-landing .usa-faq__list {
	--ts-faq-question-color-active: #ff9242;
	--ts-faq-icon-color-active: #ff9242;
}

body.usa-landing .usa-faq .ts-faq__answer b {
	color: #fff;
	font-weight: 700;
}

body.usa-landing .usa-explain__grid {
	display: grid;
	gap: 32px;
}

body.usa-landing .usa-section-head__eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	gap: 8px;
	border-radius: 999px;
}

body.usa-landing .usa-section-head__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

body.usa-landing .usa-badge {
	display: inline-flex;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	gap: 8px;
	border-radius: 999px;
}

body.usa-landing .usa-badge--caps {
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

body.usa-landing .usa-badge--wide {
	font-weight: 500;
	letter-spacing: 2.16px;
}

body.usa-landing .usa-badge--regular {
	text-transform: none;
	letter-spacing: 0;
}

body.usa-landing .usa-badge--soft {
	padding: 12px 15px;
	border: 1px solid transparent;
}

body.usa-landing .usa-badge--plain {
	padding: 0;
	border: 0;
	background: transparent;
}

body.usa-landing .usa-badge--orange {
	color: #f3981f;
}

body.usa-landing .usa-badge--orange.usa-badge--soft {
	border-color: rgba(255, 122, 0, 0.25);
	background: rgba(255, 122, 0, 0.08);
}

body.usa-landing .usa-badge--green {
	color: #5fd693;
}

body.usa-landing .usa-badge--green.usa-badge--soft {
	border-color: rgba(95, 214, 147, 0.25);
	background: rgba(95, 214, 147, 0.12);
}

body.usa-landing .usa-badge__dot {
	display: block;
	flex: 0 0 auto;
}

body.usa-landing .usa-launch-card__pulse,
body.usa-landing .usa-hero__pill-dot {
	animation: usa-launch-pulse 1.8s ease-out infinite;
}

@keyframes usa-launch-pulse {
	0% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(243, 152, 31, 0.45);
	}

	70% {
		opacity: 0.45;
		transform: scale(0.9);
		box-shadow: 0 0 0 10px rgba(243, 152, 31, 0);
	}

	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(243, 152, 31, 0);
	}
}

body.usa-landing .usa-display-title {
	margin: 0;
	color: #fff;
	font-size: 58px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

body.usa-landing .usa-display-title__accent {
	display: block;
	color: #f3981f;
}

body.usa-landing .usa-copy-lead {
	margin: 0;
	color: #a8a8a8;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
}

body.usa-landing .usa-copy-lead strong,
body.usa-landing .usa-copy-lead b {
	color: #f5f0e6;
	font-weight: 600;
}

body.usa-landing .usa-section-head__title {
	margin: 0;
	color: #fff;
}

body.usa-landing .usa-explain__copy p {
	margin: 0;
	color: #a8a8a8;
	font-size: 18px;
	line-height: 1.6;
}

body.usa-landing .usa-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 18px 28px;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none !important;
	line-height: 1;
	white-space: nowrap;
	transition:
		box-shadow 0.25s ease,
		background 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

body.usa-landing .usa-button--primary {
	background: linear-gradient(92.95deg, #f3981f 0%, #e57625 100%);
	color: #141313 !important;
	box-shadow: 0 20px 40px -10px rgba(255, 107, 71, 0.4);
}

body.usa-landing .usa-button--primary:hover,
body.usa-landing .usa-button--primary:focus-visible {
	background: linear-gradient(92.95deg, #ffab3c 0%, #ee8436 100%);
	box-shadow: 0px 2px 24px 0px rgba(243, 152, 31, 0.5);
	transform: translateY(-1px);
}

body.usa-landing .usa-button--secondary {
	color: #fff !important;
	border: 1px solid #393532;
	background: #282320;
}

body.usa-landing .usa-button--secondary:hover,
body.usa-landing .usa-button--secondary:focus-visible {
	background: linear-gradient(92.95deg, rgba(255, 171, 60, 0.16) 0%, rgba(238, 132, 54, 0.16) 100%), #282320;
	border-color: rgba(243, 152, 31, 0.45);
	box-shadow: 0px 2px 24px 0px rgba(243, 152, 31, 0.18);
	transform: translateY(-1px);
}

body.usa-landing .usa-button__label {
	display: inline-flex;
	align-items: center;
}

body.usa-landing .usa-button__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	flex: 0 0 auto;
	padding-left: 8px;
	color: inherit;
	transition: transform 0.2s ease;
}

body.usa-landing .usa-button__arrow svg {
	display: block;
	width: 13px;
	height: 11px;
}

body.usa-landing .usa-button:hover .usa-button__arrow,
body.usa-landing .usa-button:focus-visible .usa-button__arrow {
	transform: translateX(3px);
}

@keyframes usa-reveal-in {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

html.usa-reveal-ready body.usa-landing .usa-reveal-on-load,
body.usa-landing .usa-reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	will-change: opacity, transform;
}

body.usa-landing .usa-reveal-on-load.is-in {
	animation: usa-reveal-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

body.usa-landing .usa-reveal-on-load[data-reveal-delay="1"] {
	animation-delay: 0.05s;
}

body.usa-landing .usa-reveal-on-load[data-reveal-delay="2"] {
	animation-delay: 0.12s;
}

body.usa-landing .usa-reveal-on-load[data-reveal-delay="3"] {
	animation-delay: 0.2s;
}

body.usa-landing .usa-reveal-on-load[data-reveal-delay="4"] {
	animation-delay: 0.28s;
}

body.usa-landing .usa-reveal-on-load[data-reveal-delay="5"] {
	animation-delay: 0.36s;
}

body.usa-landing .usa-reveal-on-load[data-reveal-delay="6"] {
	animation-delay: 0.18s;
}

body.usa-landing .usa-reveal-on-scroll {
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.usa-landing .usa-reveal-on-scroll.is-in {
	opacity: 1;
	transform: translateY(0);
}

body.usa-landing .usa-math-card,
body.usa-landing .usa-flow-card {
	border-radius: 24px;
	background:
		linear-gradient(180deg, rgba(243, 152, 31, 0.08), rgba(243, 152, 31, 0)),
		#191817;
}

body.usa-landing .usa-flow-card__step h3 {
	margin: 0;
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
}

body.usa-landing .usa-explain__title {
	margin: 0;
	color: #fff;
	font-size: 56px;
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

body.usa-landing .usa-explain__lead {
	margin: 16px 0 0;
	max-width: 760px;
	color: #a8a8a8;
	font-size: 18px;
	line-height: 1.6;
}

body.usa-landing .usa-section-head {
	display: grid;
	justify-items: start;
	gap: 16px;
	margin-bottom: 32px;
}

body.usa-landing .usa-section-head__lead {
	margin: 0;
	max-width: 760px;
	color: #a8a8a8;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.6;
}

body.usa-landing .usa-section-head--center {
	text-align: center;
	justify-items: center;
}

body.usa-landing .usa-section-head--center .usa-section-head__eyebrow {
	justify-content: center;
}

body.usa-landing .usa-section-head--center .usa-section-head__lead {
	margin-inline: auto;
	text-align: center;
}

body.usa-landing .usa-faq {
	position: relative;
	isolation: isolate;
	padding: 50px 0;
}

body.usa-landing .usa-faq::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

body.usa-landing .usa-faq .usa-wrapper,
body.usa-landing .usa-faq__head,
body.usa-landing .usa-faq__list {
	position: relative;
	z-index: 1;
}

body.usa-landing .usa-faq__title-accent {
	color: #f3981f;
}

@media (min-width: 992px) {
	body.usa-landing .usa-faq::before {
		background:
			radial-gradient(
				ellipse 700px 320px at calc(50% - 600px + 260px) 60%,
				rgba(243, 152, 31, 0.1),
				transparent 90%
			),
			radial-gradient(
				ellipse 700px 320px at calc(50% - 600px + 940px) 60%,
				rgba(255, 191, 0, 0.1),
				transparent 90%
			);
	}
}

@media (max-width: 991px) {
	body.usa-landing .usa-faq::before {
		background:
			radial-gradient(
				ellipse 420px 220px at 30% 30%,
				rgba(243, 152, 31, 0.1),
				transparent 90%
			),
			radial-gradient(
				ellipse 420px 220px at 70% 30%,
				rgba(255, 191, 0, 0.1),
				transparent 90%
			);
	}
}

@media (min-width: 768px) {
	body.usa-landing .usa-faq__title-accent {
		display: block;
	}
}

body.usa-landing .usa-explain__copy {
	display: grid;
	gap: 18px;
}

body.usa-landing .usa-math-card,
body.usa-landing .usa-flow-card {
	padding: 24px;
}

body.usa-landing .usa-math-card__label,
body.usa-landing .usa-math-card__vs {
	margin: 0;
	color: #f5f0e6;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.usa-landing .usa-math-card__row {
	display: grid;
	grid-template-columns: 1fr auto auto;
	align-items: center;
	gap: 12px;
	margin-top: 18px;
}

body.usa-landing .usa-math-card__side p,
body.usa-landing .usa-math-card__footer {
	margin: 0;
}

body.usa-landing .usa-math-card__tag {
	display: inline-block;
	margin-bottom: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	color: #c9c2b8;
	font-size: 0.75rem;
	font-weight: 700;
}

body.usa-landing .usa-math-card__tag--accent {
	background: rgba(243, 152, 31, 0.16);
	color: #ffb04d;
}

body.usa-landing .usa-math-card__arrow,
body.usa-landing .usa-math-card__result {
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
}

body.usa-landing .usa-math-card__result--accent {
	color: #ffb04d;
}

body.usa-landing .usa-math-card__vs,
body.usa-landing .usa-math-card__footer {
	margin-top: 18px;
}

body.usa-landing .usa-math-card__footer {
	color: #c9c2b8;
	line-height: 1.6;
}

body.usa-landing .usa-flow-card {
	display: grid;
	gap: 18px;
}

body.usa-landing .usa-flow-card__step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 16px;
	align-items: start;
}

body.usa-landing .usa-flow-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(92.95deg, #f3981f 0%, #e57625 100%);
	color: #141313;
	font-weight: 700;
}

body.usa-landing .usa-flow-card__step p,
body.usa-landing .usa-flow-card__checks li {
	margin: 6px 0 0;
	color: #c9c2b8;
	line-height: 1.6;
}

body.usa-landing .usa-flow-card__divider {
	color: #ffb04d;
	font-size: 1.25rem;
	font-weight: 700;
	padding-left: 12px;
}

body.usa-landing .usa-flow-card__checks {
	margin: 8px 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 14px;
}

body.usa-landing .usa-flow-card__checks li::before {
	content: "✓";
	margin-right: 10px;
	color: #9df084;
	font-weight: 700;
}

body.usa-landing .usa-stories .review-slider-component {
	--rs-card-bg: #191817;
	--rs-radius: 24px;
	--rs-slide-width-mobile: 320px;
	--rs-slide-width-desktop: 760px;
	--rs-text-color: #f5f0e6;
	margin-top: 18px;
}

body.usa-landing .usa-footer-trusted {
	padding: 25px 0;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	background:
		linear-gradient(322.21deg, #191817 0%, #191817 100%) padding-box,
		linear-gradient(269.86deg, rgba(116, 116, 116, 0.2) 0.01%, rgba(255, 255, 255, 0.2) 99.99%) border-box;
}

body.usa-landing .usa-footer-trusted__wrapper,
body.usa-landing .usa-footer__wrapper {
	width: min(calc(100% - 28px), 1274px);
	max-width: none;
	margin: 0 auto;
	padding: 0;
}

body.usa-landing .usa-footer-trusted__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 20px;
	max-width: 770px;
	margin: 0 auto;
}

body.usa-landing .usa-footer-trusted__content img {
	flex-shrink: 0;
	width: 188px;
}

body.usa-landing .usa-footer-trusted__content p {
	margin: 0;
	color: #fff;
	font-size: 1.25rem;
	font-weight: 400;
	line-height: 1.42;
	text-align: center;
	text-wrap: pretty;
}

body.usa-landing .usa-footer {
	padding: 27px 0 36px;
	background: #191817;
}

body.usa-landing .usa-footer p {
	margin: 0 0 20px;
	color: #b3afa9;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.57;
}

body.usa-landing .usa-footer p:last-child {
	margin-bottom: 0;
}

body.usa-landing .usa-footer__top-row {
	margin-bottom: 24px;
}

body.usa-landing .usa-footer__brand,
body.usa-landing .usa-footer__payment,
body.usa-landing .usa-footer__copy {
	margin-bottom: 24px;
}

body.usa-landing .usa-footer__brand {
	display: flex;
	justify-content: center;
}

body.usa-landing .usa-footer__brand-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

body.usa-landing .usa-footer__brand-logo {
	display: block;
	width: auto;
	height: 52px;
}

body.usa-landing .usa-footer__payment p {
	margin-bottom: 8px;
	color: #fff;
	font-weight: 400;
	text-align: center;
}

body.usa-landing .usa-footer__copy p {
	text-align: center;
}

body.usa-landing .usa-footer__payment-image {
	display: block;
	width: 100%;
	max-width: 256px;
	margin: 0 auto;
}

@media (min-width: 1240px) {
	body.usa-landing .usa-explain,
	body.usa-landing .usa-stories {
		padding: 50px 0;
	}

	body.usa-landing .usa-explain__grid {
		grid-template-columns: minmax(0, 1.1fr) minmax(360px, 420px);
		align-items: start;
	}

	body.usa-landing .usa-footer-trusted {
		padding: 20px 0;
	}

	body.usa-landing .usa-footer-trusted__content {
		flex-direction: row;
		gap: 30px;
	}

	body.usa-landing .usa-footer-trusted__content p {
		text-align: left;
	}

	body.usa-landing .usa-footer {
		padding: 70px 0;
	}

	body.usa-landing .usa-footer__top-row {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 55px;
	}

	body.usa-landing .usa-footer__copy {
		order: 1;
		margin-bottom: 0;
	}

	body.usa-landing .usa-footer__copy p {
		text-align: left;
	}

	body.usa-landing .usa-footer__brand {
		order: 2;
		margin-bottom: 0;
	}

	body.usa-landing .usa-footer__payment {
		order: 3;
		margin-bottom: 0;
	}

	body.usa-landing .usa-footer__payment p {
		text-align: right;
	}

	body.usa-landing .usa-footer__payment-image {
		max-width: 246px;
		margin-inline: auto 0;
	}

	body.usa-landing .usa-footer__brand-logo {
		height: 54px;
	}
}

@media (max-width: 767px) {
	body.usa-landing .usa-landing__main::before {
		background: none;
	}

	body.usa-landing .usa-explain,
	body.usa-landing .usa-stories {
		padding: 30px 0;
	}

	body.usa-landing .usa-faq {
		padding: 30px 0;
	}

	body.usa-landing .usa-badge {
		font-size: 10px;
	}

	body.usa-landing .usa-section-head__lead {
		font-size: 14px;
	}

	body.usa-landing .usa-display-title {
		font-size: 48px;
		line-height: 1;
	}

	body.usa-landing .usa-display-title__accent {
		display: inline;
	}

	body.usa-landing .usa-copy-lead {
		font-size: 14px;
	}

	body.usa-landing .usa-faq__title-accent {
		display: inline;
	}

	body.usa-landing .usa-math-card,
	body.usa-landing .usa-flow-card {
		padding: 20px;
		border-radius: 20px;
	}

	body.usa-landing .usa-math-card__row {
		grid-template-columns: 1fr;
		flex-direction: column;
		align-items: flex-start;
	}

	body.usa-landing .usa-flow-card__divider {
		padding-left: 6px;
	}

	body.usa-landing .usa-stories .review-slider-component {
		--rs-radius: 18px;
	}

	body.usa-landing .usa-header__inner {
		min-height: 58px;
		grid-template-columns: auto 1fr auto;
		gap: 12px;
	}

	body.usa-landing .usa-header__logo img {
		width: auto;
		height: 40px;
	}

	body.usa-landing .usa-header__nav--desktop {
		display: none;
	}

	body.usa-landing .usa-header__actions {
		display: contents;
	}

	body.usa-landing .usa-header__cta {
		height: 32px;
		padding: 10px 20px;
		border-radius: 8px;
		font-size: 12px;
		font-weight: 600 !important;
		grid-column: 2;
		justify-self: center;
	}

	body.usa-landing .usa-header__toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		flex-shrink: 0;
	}

	body.usa-landing .usa-header__logo {
		justify-self: start;
	}

	body.usa-landing .usa-header__toggle {
		grid-column: 3;
		justify-self: end;
	}

	body.usa-landing .usa-mobile-menu__inner {
		padding-top: 28px;
	}

	body.usa-landing .usa-header__nav--mobile .usa-header__menu {
		gap: 24px;
	}

	body.usa-landing .usa-header__nav--mobile .usa-header__menu-link {
		font-size: 24px;
	}

}

@media (min-width: 768px) and (max-width: 991px) {
	body.usa-landing .usa-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	body.usa-landing .usa-header__nav--desktop {
		display: none;
	}

	body.usa-landing .usa-header__toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
	}

	body.usa-landing .usa-header__actions {
		display: contents;
	}

	body.usa-landing .usa-header__cta {
		height: 44px;
		padding: 10px 20px;
		font-size: 15px;
		grid-column: 2;
		justify-self: center;
	}

	body.usa-landing .usa-header__toggle {
		grid-column: 3;
		justify-self: end;
	}

	body.usa-landing .usa-mobile-menu__inner {
		padding-top: 36px;
	}

	body.usa-landing .usa-header__nav--mobile .usa-header__menu-link {
		font-size: 26px;
	}
}

body.has-scroll-lock {
	overflow: hidden;
	padding-right: var(--usa-scrollbar-compensation, 0px);
}

@media (prefers-reduced-motion: reduce) {
	body.usa-landing .usa-button,
	body.usa-landing .usa-button__arrow,
	body.usa-landing .usa-reveal-on-load,
	body.usa-landing .usa-reveal-on-scroll {
		animation: none;
		transition: none;
	}

	body.usa-landing .usa-reveal-on-load,
	body.usa-landing .usa-reveal-on-scroll {
		opacity: 1;
		transform: none;
	}
}

@media (max-width: 991px) {
}
