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

body.usa-landing .usa-discount__box {
	position: relative;
	overflow: hidden;
	padding: 32px 24px;
	border: 1px solid #63350d;
	border-radius: 16px;
	background: linear-gradient(90deg, #271f17 0%, #362313 100%);
}

body.usa-landing .usa-discount__glow {
	content: "";
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(255, 122, 0, 0.08), transparent 50%);
	animation: usa-discount-spin 20s linear infinite;
	pointer-events: none;
}

body.usa-landing .usa-discount__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

body.usa-landing .usa-discount__eyebrow {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-color: #63350d;
	background: #201812;
	color: #ff9242;
}

body.usa-landing .usa-discount__title {
	text-transform: uppercase;
	white-space: nowrap;
}

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

body.usa-landing .usa-discount__lead {
	max-width: 781px;
	margin: 16px auto 0;
	text-align: center;
}

body.usa-landing .usa-discount__code-pill {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
	height: 43px;
	min-height: 43px;
	padding: 13px 17px;
	border: 0;
	border-radius: 8px;
	background: #1d1d1b;
	color: #f5f0e6;
	cursor: pointer;
	overflow: hidden;
	transition:
		box-shadow 0.35s ease,
		transform 0.35s ease,
		background-color 0.35s ease;
}

body.usa-landing .usa-discount__code-pill::before {
	content: "";
	position: absolute;
	inset: 0;
	border: 1px dashed #f3981f;
	border-radius: inherit;
	pointer-events: none;
	transition:
		border-color 0.35s ease,
		opacity 0.35s ease;
}

body.usa-landing .usa-discount__code-pill:hover,
body.usa-landing .usa-discount__code-pill:focus-visible {
	background: rgba(243, 152, 31, 0.08);
	box-shadow: 0 10px 24px -12px rgba(243, 152, 31, 0.7);
	transform: translateY(-1px);
	outline: none;
}

body.usa-landing .usa-discount__code-pill:hover::before,
body.usa-landing .usa-discount__code-pill:focus-visible::before {
	border-color: #ffab3c;
}

body.usa-landing .usa-discount__code-pill.is-copied {
	background: rgba(243, 152, 31, 0.12);
}

body.usa-landing .usa-discount__code-prefix,
body.usa-landing .usa-discount__code-value {
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

body.usa-landing .usa-discount__code-prefix {
	font-weight: 400;
	color: #f5f0e6;
}

body.usa-landing .usa-discount__code-value {
	font-weight: 700;
	color: #ff9242;
}

@keyframes usa-discount-spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 767px) {
	body.usa-landing .usa-discount {
		padding: 30px 0;
	}

	body.usa-landing .usa-discount__box {
		padding: 30px 16px;
	}

	body.usa-landing .usa-discount__glow {
		top: 8%;
		left: 10%;
		width: 80%;
		height: 80%;
		background: radial-gradient(
			circle,
			rgba(255, 122, 0, 0.08),
			transparent 50%
		);
		animation-duration: 24s;
	}

	body.usa-landing .usa-discount__title {
		font-size: 48px;
		line-height: 1;
		white-space: normal;
	}

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

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

	body.usa-landing .usa-discount__code-pill {
		height: 43px;
		min-height: 43px;
	}

	body.usa-landing .usa-discount__eyebrow {
		display: inline-flex;
		max-width: 100%;
		margin-bottom: 20px;
		padding: 10px 16px;
		font-size: 11px;
		line-height: 1.45;
		letter-spacing: 0.08em;
		border-radius: 999px;
		text-wrap: balance;
	}
}
