.txpr-app {
	--txpr-primary: #151a2d;
	--txpr-accent: #635bff;
	--txpr-bg: #f4f6fb;
	box-sizing: border-box;
	min-height: 680px;
	padding: 24px 14px;
	color: var(--txpr-primary);
	background: radial-gradient(circle at 15% 0, rgba(99, 91, 255, .12), transparent 28%), var(--txpr-bg);
	font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}
.txpr-app * { box-sizing: border-box; }
.txpr-shell {
	max-width: 760px;
	margin: auto;
	overflow: hidden;
	background: rgba(255, 255, 255, .97);
	border: 1px solid rgba(21, 26, 45, .07);
	border-radius: 28px;
	box-shadow: 0 24px 70px rgba(28, 36, 73, .12);
}
.txpr-header {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 78px;
	padding: 18px 32px;
}
.txpr-header img { max-width: 180px; max-height: 42px; }
.txpr-brand { font-size: 20px; font-weight: 750; letter-spacing: -.02em; }

.txpr-progress { padding: 16px 28px 11px; border-block: 1px solid #eceef5; }
.txpr-progress ol { display: flex; margin: 0; padding: 0; list-style: none; }
.txpr-progress li {
	position: relative;
	flex: 1;
	color: #737d90;
	font-size: 11px;
	font-weight: 700;
	text-align: center;
}
.txpr-progress li::before {
	position: absolute;
	z-index: 0;
	top: 13px;
	left: -50%;
	width: 100%;
	height: 2px;
	background: #dfe3eb;
	content: "";
}
.txpr-progress li:first-child::before { display: none; }
.txpr-step-dot {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	margin: 0 auto 6px;
	background: #fff;
	border: 2px solid #cbd1dc;
	border-radius: 50%;
	transition: border-color .2s, box-shadow .2s, background .2s;
}
.txpr-step-dot i { display: none; font-style: normal; }
.txpr-progress .is-current { color: var(--txpr-primary); }
.txpr-progress .is-current .txpr-step-dot {
	border-color: var(--txpr-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--txpr-accent) 10%, transparent);
}
.txpr-progress .is-complete { color: var(--txpr-primary); }
.txpr-progress .is-complete::before { background: var(--txpr-accent); }
.txpr-progress .is-complete .txpr-step-dot {
	color: #fff;
	background: var(--txpr-accent);
	border-color: var(--txpr-accent);
}
.txpr-progress .is-complete b { display: none; }
.txpr-progress .is-complete i { display: block; }
.txpr-progress > [data-progress-accessible] {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	background: none !important;
	border: 0 !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
}

.txpr-step { display: none; padding: 42px 52px 48px; animation: txpr-in .35s ease both; }
.txpr-step.is-active { display: block; }
@keyframes txpr-in { from { opacity: 0; transform: translateY(8px); } }
.txpr-welcome, .txpr-success { text-align: center; }
.txpr-hero { width: 100%; height: 260px; margin-bottom: 30px; object-fit: cover; border-radius: 22px; }
.txpr-hero-placeholder {
	display: grid;
	place-items: center;
	height: 180px;
	margin-bottom: 30px;
	color: var(--txpr-accent);
	background: linear-gradient(145deg, color-mix(in srgb, var(--txpr-accent) 15%, #fff), #f1f3f8);
	border-radius: 22px;
}
.txpr-hero-placeholder span { font-size: 70px; }
.txpr-eyebrow {
	margin: 0 0 9px;
	color: var(--txpr-accent);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.txpr-step h1, .txpr-step h2 {
	margin: 0 0 15px;
	color: var(--txpr-primary);
	font-size: clamp(30px, 5vw, 45px);
	line-height: 1.06;
	letter-spacing: -.045em;
}
.txpr-lead { max-width: 570px; margin: 0 auto 30px; color: #5f697c; font-size: 17px; }
.txpr-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; margin: 26px 0 30px; text-align: left; }
.txpr-benefit { display: flex; gap: 10px; padding: 15px; background: #fff; border: 1px solid #e1e5ec; border-radius: 15px; }
.txpr-benefit-icon {
	display: grid;
	flex: none;
	place-items: center;
	width: 30px;
	height: 30px;
	color: var(--txpr-accent);
	background: color-mix(in srgb, var(--txpr-accent) 10%, #fff);
	border-radius: 9px;
}
.txpr-benefit-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.txpr-benefit strong, .txpr-benefit small { display: block; }
.txpr-benefit strong { font-size: 13px; }
.txpr-benefit small { margin-top: 3px; color: #667085; font-size: 11px; }

.txpr-products { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 28px; }
.txpr-product {
	position: relative;
	padding: 16px;
	background: #fff;
	border: 2px solid #e5e8ef;
	border-radius: 20px;
	text-align: left;
	cursor: pointer;
	transition: transform .2s, border-color .2s, box-shadow .2s;
}
.txpr-product:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(28, 36, 73, .08); }
.txpr-product:focus-within { outline: 3px solid color-mix(in srgb, var(--txpr-accent) 45%, transparent); outline-offset: 3px; }
.txpr-product.is-selected {
	background: color-mix(in srgb, var(--txpr-accent) 4%, #fff);
	border-color: var(--txpr-accent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--txpr-accent) 11%, transparent);
	transform: translateY(-2px);
}
.txpr-product input, .txpr-variant input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.txpr-product img, .txpr-product-placeholder { width: 100%; height: 142px; margin-bottom: 13px; object-fit: cover; background: #f1f3f8; border-radius: 13px; }
.txpr-product-placeholder { display: grid; place-items: center; color: #7f899b; font-size: 38px; }
.txpr-product strong, .txpr-product small { display: block; }
.txpr-product strong { margin-bottom: 5px; font-size: 16px; }
.txpr-product small { color: #5f697c; line-height: 1.4; }
.txpr-check {
	position: absolute;
	z-index: 2;
	top: 25px;
	right: 25px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	color: #fff;
	background: var(--txpr-accent);
	border-radius: 50%;
	font-weight: bold;
	opacity: 0;
	transform: scale(.7);
	transition: opacity .2s, transform .2s;
}
.is-selected .txpr-check { opacity: 1; transform: scale(1); }
.txpr-variant-picker { margin-top: 28px; padding: 22px; background: #f7f8fb; border-radius: 18px; }
.txpr-variant-picker h3 { margin: 0 0 4px; font-size: 19px; }
.txpr-variant-picker > p { margin: 0 0 14px; color: #5f697c; }
.txpr-variant-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.txpr-variant {
	position: relative;
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	margin: 0 !important;
	padding: 15px 16px;
	background: #fff;
	border: 2px solid #d9dee7;
	border-radius: 13px;
	cursor: pointer;
}
.txpr-variant:focus-within { outline: 3px solid color-mix(in srgb, var(--txpr-accent) 45%, transparent); outline-offset: 2px; }
.txpr-variant strong, .txpr-variant small { display: block; }
.txpr-variant small { color: #667085; }
.txpr-variant i { display: none; color: var(--txpr-accent); font-style: normal; font-weight: bold; }
.txpr-variant.is-selected { border-color: var(--txpr-accent); }
.txpr-variant.is-selected i { display: block; }

.txpr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.txpr-step > label, .txpr-grid label { display: block; margin: 18px 0; }
.txpr-step label > span:first-child:not(.txpr-upload-icon) { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 750; }
.txpr-step input:not([type=checkbox]):not([type=radio]):not([type=file]) {
	width: 100%;
	height: 54px;
	padding: 0 16px;
	color: var(--txpr-primary);
	background: #fff;
	border: 1.5px solid #cfd5df;
	border-radius: 13px;
	outline: 0;
	font: 16px inherit;
}
.txpr-step input:focus { border-color: var(--txpr-accent) !important; box-shadow: 0 0 0 4px color-mix(in srgb, var(--txpr-accent) 10%, transparent); }
.txpr-step input.is-invalid { border-color: #b42318 !important; }
.txpr-consent { display: flex !important; align-items: flex-start; gap: 11px; color: #475467; font-size: 14px; cursor: pointer; }
.txpr-consent input { flex: none; width: 20px; height: 20px; margin: 1px 0; accent-color: var(--txpr-accent); }
.txpr-consent input:focus-visible { outline: 3px solid color-mix(in srgb, var(--txpr-accent) 45%, transparent); outline-offset: 2px; }
.txpr-consent span { display: inline !important; margin: 0 !important; }
.txpr-consent a { color: var(--txpr-accent); }
.txpr-actions { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 34px; }

.txpr-dropzone {
	position: relative;
	display: flex !important;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 220px;
	margin-top: 25px !important;
	padding: 25px;
	background: #fafbfc;
	border: 2px dashed #bcc4d0;
	border-radius: 20px;
	text-align: center;
	cursor: pointer;
}
.txpr-dropzone:hover, .txpr-dropzone.is-dragging, .txpr-dropzone:focus-within {
	background: color-mix(in srgb, var(--txpr-accent) 4%, #fff);
	border-color: var(--txpr-accent);
}
.txpr-dropzone:focus-within { outline: 3px solid color-mix(in srgb, var(--txpr-accent) 35%, transparent); outline-offset: 3px; }
.txpr-dropzone input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.txpr-upload-icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 14px;
	color: var(--txpr-accent);
	background: color-mix(in srgb, var(--txpr-accent) 11%, #fff);
	border-radius: 50%;
	font-size: 25px;
	font-weight: bold;
}
.txpr-dropzone strong { font-size: 17px; }
.txpr-dropzone small { margin-top: 5px; color: #5f697c; }
.txpr-uploaded { display: none !important; align-items: center; gap: 14px; color: #087647; text-align: left; }
.txpr-uploaded b, .txpr-uploaded em, .txpr-uploaded small { display: block; }
.txpr-uploaded em { max-width: 280px; overflow: hidden; color: #344054; font-size: 13px; font-style: normal; text-overflow: ellipsis; }
.txpr-receipt-preview { display: grid; flex: none; place-items: center; width: 76px; height: 76px; overflow: hidden; background: #fff; border-radius: 10px; }
.txpr-receipt-preview img { width: 100%; height: 100%; object-fit: cover; }
.txpr-receipt-preview svg { width: 38px; fill: none; stroke: var(--txpr-accent); stroke-width: 1.5; }
.txpr-dropzone.has-file > *:not(input):not(.txpr-uploaded) { display: none; }
.txpr-dropzone.has-file .txpr-uploaded { display: flex !important; }
.txpr-upload-controls { display: flex; justify-content: center; gap: 18px; margin-top: -8px; }
.txpr-error { color: #b42318; background: #fef3f2; border-radius: 10px; font-size: 14px; }
.txpr-error:not(:empty) { margin-top: 15px; padding: 11px 12px; }
.txpr-error:focus { outline: 2px solid #b42318; outline-offset: 2px; }
.txpr-spinner { display: none; width: 18px; height: 18px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: txpr-spin .7s linear infinite; }
.is-loading .txpr-spinner { display: block; }
@keyframes txpr-spin { to { transform: rotate(360deg); } }

.txpr-confirmation-mark { width: 92px; height: 92px; margin: 5px auto 25px; color: #087647; }
.txpr-confirmation-mark svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.txpr-confirmation-mark circle { stroke-dasharray: 176; stroke-dashoffset: 176; animation: txpr-draw-circle .55s ease forwards; }
.txpr-confirmation-mark path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: txpr-draw-check .28s .5s ease forwards; }
@keyframes txpr-draw-circle { to { stroke-dashoffset: 0; } }
@keyframes txpr-draw-check { to { stroke-dashoffset: 0; } }
.txpr-success-image { width: 80%; max-width: 310px; max-height: 220px; margin-bottom: 25px; object-fit: contain; }
.txpr-registration-card {
	margin: 32px 0;
	padding: 28px;
	color: #fff;
	background: linear-gradient(145deg, var(--txpr-primary), color-mix(in srgb, var(--txpr-primary) 82%, var(--txpr-accent)));
	border-radius: 22px;
	box-shadow: 0 20px 50px rgba(21, 26, 45, .2);
	text-align: left;
}
.txpr-registration-card header { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 5px 15px; padding-bottom: 20px; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.txpr-registration-card header img { max-width: 130px; max-height: 38px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.txpr-registration-card header > span { grid-column: 1; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.txpr-registration-card header b { grid-row: 1 / 3; grid-column: 2; padding: 8px 11px; background: rgba(255, 255, 255, .13); border-radius: 999px; font-size: 12px; }
.txpr-registration-card header b i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; background: #55d99a; border-radius: 50%; }
.txpr-card-product { display: flex; align-items: center; gap: 18px; padding: 25px 0; }
.txpr-card-product img { width: 94px; height: 94px; object-fit: cover; background: rgba(255, 255, 255, .1); border-radius: 15px; }
.txpr-card-product small { opacity: .72; }
.txpr-card-product h3 { margin: 4px 0; color: #fff; font-size: 23px; line-height: 1.2; }
.txpr-card-product p { margin: 0; opacity: .84; }
.txpr-registration-card dl { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; margin: 0; }
.txpr-registration-card dl div { padding-top: 13px; border-top: 1px solid rgba(255, 255, 255, .15); }
.txpr-registration-card dt { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; opacity: .68; }
.txpr-registration-card dd { margin: 5px 0 0; font-weight: 700; }
.txpr-registration-card footer { display: flex; justify-content: space-between; gap: 15px; margin-top: 20px; padding-top: 17px; border-top: 1px solid rgba(255, 255, 255, .15); font-size: 12px; }
.txpr-registration-card footer span { opacity: .68; text-transform: uppercase; letter-spacing: .07em; }
.txpr-registration-card footer strong { text-align: right; }
.txpr-card-light { color: var(--txpr-primary); background: linear-gradient(145deg, #fff, #f5f6fa); border: 1px solid #dce1e9; }
.txpr-card-light .txpr-card-product h3 { color: var(--txpr-primary); }
.txpr-card-light header, .txpr-card-light dl div, .txpr-card-light footer { border-color: #dce1e9; }
.txpr-card-light header img { filter: none; }
.txpr-card-light header b { color: #087647; background: #e8f8f0; }
.txpr-success-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px; }
.txpr-secondary { color: var(--txpr-accent); font-weight: 750; text-decoration: none; }
.txpr-footer { display: flex; justify-content: space-between; padding: 18px 30px; color: #737d90; background: #fafbfc; border-top: 1px solid #eef0f4; font-size: 12px; }
.txpr-empty { grid-column: 1 / -1; padding: 45px 20px; color: #5f697c; background: #f8f9fb; border-radius: 16px; text-align: center; }

@media (max-width: 620px) {
	.txpr-app { min-height: 100vh; padding: 0; background: #fff; }
	.txpr-shell { min-height: 100vh; border: 0; border-radius: 0; box-shadow: none; }
	.txpr-header { height: 68px; }
	.txpr-progress { padding: 13px 10px 9px; }
	.txpr-step-label { font-size: 9px; }
	.txpr-step { padding: 30px 22px 38px; }
	.txpr-hero { height: 210px; }
	.txpr-hero-placeholder { height: 150px; }
	.txpr-step h1, .txpr-step h2 { font-size: 32px; }
	.txpr-benefits { grid-template-columns: 1fr; }
	.txpr-benefit { padding: 12px; }
	.txpr-products { grid-template-columns: 1fr; gap: 12px; }
	.txpr-product { display: grid; grid-template-columns: 82px 1fr; column-gap: 14px; align-items: center; }
	.txpr-product img, .txpr-product-placeholder { grid-row: 1 / 3; width: 100%; height: 82px; margin: 0; }
	.txpr-product strong { align-self: end; }
	.txpr-product small { align-self: start; }
	.txpr-variant-group, .txpr-grid { grid-template-columns: 1fr; }
	.txpr-grid { gap: 0; }
	.txpr-actions .txpr-button { flex: 1; padding-inline: 18px; }
	.txpr-registration-card { padding: 22px; }
	.txpr-registration-card dl { grid-template-columns: 1fr; gap: 12px; }
	.txpr-registration-card footer { display: block; }
	.txpr-registration-card footer strong { display: block; margin-top: 5px; text-align: left; }
	.txpr-success-actions { display: grid; }
	.txpr-success-actions .txpr-button { width: 100%; }
	.txpr-footer { padding: 15px 20px; }
}
@media (max-width: 390px) {
	.txpr-step-label { font-size: 0; }
	.txpr-step-label::after { content: attr(aria-label); font-size: 8px; }
	.txpr-progress li:nth-child(3) .txpr-step-label::after { content: "Details"; }
}
@media (prefers-reduced-motion: reduce) {
	.txpr-app *, .txpr-app *::before, .txpr-app *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
@media print {
	body * { visibility: hidden; }
	.txpr-registration-card, .txpr-registration-card * { visibility: visible; }
	.txpr-registration-card { position: absolute; top: 0; left: 0; width: 100%; box-shadow: none; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
	.txpr-success-actions, .txpr-header, .txpr-progress, .txpr-footer { display: none !important; }
}

/* Branding controls */
.txpr-app { color: var(--txpr-body); }
.txpr-step h1, .txpr-step h2, .txpr-variant-picker h3, .txpr-quick-actions h3 { color: var(--txpr-heading); }
.txpr-lead, .txpr-product small, .txpr-variant-picker > p, .txpr-dropzone small,
.txpr-benefit small, .txpr-footer, .txpr-quick-actions p { color: var(--txpr-muted); }
.txpr-app a:not(.txpr-button):not(.txpr-quick-action) { color: var(--txpr-link); }
.txpr-header { justify-content: center; }
.txpr-logo-left .txpr-header { justify-content: flex-start; }
.txpr-logo-right .txpr-header { justify-content: flex-end; }
.txpr-header img { width: min(var(--txpr-logo-width), 100%); max-width: none; height: auto; object-fit: contain; }
.txpr-card-light { color: var(--txpr-body); }
.txpr-card-light .txpr-card-product h3 { color: var(--txpr-heading); }
.txpr-registration-card header img { width: min(var(--txpr-logo-width), 130px); height: auto; }

.txpr-quick-actions { margin-top: 28px; text-align: center; }
.txpr-quick-actions hr { height: 1px; margin: 0 0 24px; background: #e2e6ed; border: 0; }
.txpr-quick-actions h3 { margin: 0 0 4px; font-size: 17px; letter-spacing: -.01em; }
.txpr-quick-actions > p { margin: 0 0 14px; font-size: 13px; }
.txpr-quick-actions > div { display: flex; align-items: stretch; justify-content: center; gap: 10px; }
.txpr-quick-layout-wrap > div { flex-wrap: wrap; }
.txpr-quick-layout-stack > div { flex-direction: column; }
.txpr-quick-layout-horizontal > div { flex-wrap: nowrap; overflow-x: auto; }
.txpr-quick-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 15px;
	gap: 8px;
	color: var(--txpr-secondary-text);
	background: var(--txpr-secondary-bg);
	border: 1px solid var(--txpr-secondary-border);
	border-radius: var(--txpr-secondary-radius);
	box-shadow: var(--txpr-secondary-shadow);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
}
.txpr-quick-action:hover, .txpr-quick-action:focus-visible {
	color: var(--txpr-secondary-hover-text);
	background: var(--txpr-secondary-hover-bg);
	border-color: var(--txpr-secondary-hover-border);
	outline: 3px solid color-mix(in srgb, var(--txpr-accent) 40%, transparent);
	outline-offset: 2px;
}
.txpr-quick-action svg { flex: none; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.txpr-quick-action-pills { border-radius: 999px; }
.txpr-quick-action-text { min-height: 0; padding: 6px; color: var(--txpr-link); background: transparent; border-color: transparent; box-shadow: none; }
.txpr-quick-action-buttons { border-radius: var(--txpr-secondary-radius); }

@media (max-width: 620px) {
	.txpr-header img { width: min(var(--txpr-logo-mobile-width), 100%); }
	.txpr-quick-actions > div { flex-direction: column; overflow: visible; }
	.txpr-quick-action { width: 100%; white-space: normal; }
	.txpr-registration-card header img { width: min(var(--txpr-logo-mobile-width), 110px); }
}
