.vtx-thank-you {
	background: transparent;
	color: var(--vtx-color-graphite-core-950, #404040);
	font-family: var(--font-body, "Be Vietnam Pro", system-ui, sans-serif);
	letter-spacing: 0;
}

.vtx-thank-you__inner {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 96px 24px;
}

.vtx-thank-you__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.vtx-thank-you__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.vtx-thank-you__icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--vtx-color-pulse-orange-600, #ff6214);
	color: #fff;
}

.vtx-thank-you__icon svg {
	width: 28px;
	height: 28px;
}

.vtx-thank-you__title {
	margin: 24px 0 0;
	color: var(--vtx-color-graphite-core-950, #404040);
	font-family: var(--font-heading, "Be Vietnam Pro", system-ui, sans-serif);
	font-size: var(--text-h1, 52px);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: var(--text-h1--line-height, 1.15);
	text-rendering: auto;
}

.vtx-thank-you__body {
	margin: 20px 0 0;
	color: var(--vtx-color-graphite-core-800, #5a5959);
	font-size: var(--text-body-lg, 18px);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 32px;
}

.vtx-thank-you__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
}

.vtx-thank-you__button {
	display: inline-flex;
	min-height: 48px;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 20px;
	text-decoration: none;
	transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease, color 420ms ease;
}

.vtx-thank-you__button svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
}

.vtx-thank-you__button--primary {
	background: var(--vtx-gradient-brand, linear-gradient(135deg, #ff4c2c 0%, #ff6214 23%, #ff8417 52%, #ffb217 77%, #ffda52 100%));
	box-shadow: var(--vtx-shadow-float, 0 18px 38px rgba(255, 98, 20, 0.18));
	color: #fff;
}

.vtx-thank-you__button--secondary {
	border: 1px solid transparent;
	background: rgba(255, 255, 255, 0.8);
	color: var(--vtx-color-graphite-core-950, #404040);
}

.vtx-thank-you__button:hover,
.vtx-thank-you__button:focus-visible {
	transform: translateY(-2px);
	text-decoration: none;
	outline: none;
}

.vtx-thank-you__button--primary:hover,
.vtx-thank-you__button--primary:focus-visible {
	color: #fff;
	box-shadow: var(--vtx-shadow-float, 0 18px 38px rgba(255, 98, 20, 0.18));
}

.vtx-thank-you__button--secondary:hover,
.vtx-thank-you__button--secondary:focus-visible {
	border-color: transparent;
	color: var(--vtx-color-graphite-core-950, #404040);
}

@media (min-width: 1024px) {
	.vtx-thank-you__inner {
		padding-right: 40px;
		padding-left: 40px;
	}

	.vtx-thank-you__grid {
		grid-template-columns: repeat(12, minmax(0, 1fr));
	}

	.vtx-thank-you__content {
		grid-column: 5 / span 4;
	}
}

@media (max-width: 767px) {
	.vtx-thank-you__inner {
		padding-top: 72px;
		padding-bottom: 72px;
	}
}
