/* ============================================================
   TXU Events - Registration Flow (Editorial)
   ============================================================ */

.txu-register {
	max-width: 880px !important;
	margin: 0 auto;
	padding: 0 2rem 5rem;
}

/* Header section */
.txu-register-header {
	padding: 1rem 0 3rem;
	text-align: center;
	border-bottom: 1px solid var(--txu-rule);
	margin-bottom: 3rem;
}
.txu-register-header .txu-kicker {
	display: inline-block;
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.18em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 0.75rem;
}
.txu-register-event-title {
	font-family: var(--txu-font-display); font-weight: 700;
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: var(--txu-navy-900);
	margin: 0 0 0.875rem;
}
.txu-register-event-meta {
	font-size: 0.9375rem;
	color: var(--txu-ink-soft);
	font-variant-numeric: tabular-nums;
}
.txu-meta-sep { margin: 0 0.5rem; color: var(--txu-ink-muted); }

/* ============================================================
   Stepper / Progress indicator
   ============================================================ */

.txu-stepper {
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 1rem;
	margin: 0 0 3.5rem;
	padding: 0;
	position: relative;
}
.txu-stepper::before {
	content: '';
	position: absolute;
	top: 18px;
	left: 18px; right: 18px;
	height: 1px;
	background: var(--txu-rule);
	z-index: 0;
}
.txu-step {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	position: relative;
	z-index: 1;
	cursor: default;
}
.txu-step-num {
	width: 36px; height: 36px;
	border-radius: 50%;
	display: grid; place-items: center;
	background: var(--txu-paper);
	border: 1.5px solid var(--txu-rule);
	color: var(--txu-ink-muted);
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1, 'ss01' 1, 'cv11' 1;
	font-weight: 700;
	font-size: 0.9375rem;
	font-variant-numeric: tabular-nums;
	transition: all 280ms var(--txu-ease-out);
}
.txu-step.is-active .txu-step-num {
	background: var(--txu-navy-900);
	border-color: var(--txu-navy-900);
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 0 0 4px rgba(10,29,59,0.08);
}
.txu-step.is-complete .txu-step-num {
	background: var(--txu-gold-500);
	border-color: var(--txu-gold-500);
	color: var(--txu-navy-900);
	position: relative;
	/* Collapse the original number text node so only the checkmark shows. */
	font-size: 0;
	line-height: 0;
}
/* SVG checkmark drawn by the pseudo, sized by mask-size and centered by
 * mask-position — the pseudo itself fills the entire disc via `inset: 0`,
 * so the icon's optical center is locked to the disc's optical center
 * regardless of font metrics, grid quirks, or browser. */
.txu-step.is-complete .txu-step-num::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: var(--txu-navy-900);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
	        mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 18px 18px no-repeat;
}
.txu-step-label {
	font-weight: 600; font-size: 0.6875rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--txu-ink-muted);
	text-align: center;
	transition: color 280ms var(--txu-ease-out);
}
.txu-step.is-active .txu-step-label { color: var(--txu-navy-900); }
.txu-step.is-complete .txu-step-label { color: var(--txu-gold-600); }
.txu-step.txu-step-skip { opacity: 0.35; }

/* ============================================================
   Step panes
   ============================================================ */

.txu-step-pane {
	display: none;
}
.txu-step-pane.is-active {
	display: block;
	animation: txuStepIn 400ms var(--txu-ease-out);
}
@keyframes txuStepIn {
	from { opacity: 0; transform: translateX(20px); }
	to   { opacity: 1; transform: translateX(0); }
}

.txu-pane-title {
	font-family: var(--txu-font-display); font-weight: 600;
	font-size: 1.75rem;
	letter-spacing: -0.015em;
	color: var(--txu-navy-900);
	margin: 0 0 0.5rem;
}
.txu-pane-intro {
	color: var(--txu-ink-soft);
	margin: 0 0 2rem;
	font-size: 0.9375rem;
}

/* ============================================================
   Form fields
   ============================================================ */

.txu-field-row {
	margin-bottom: 1.25rem;
}
.txu-field-row-two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.txu-field {
	display: flex;
	flex-direction: column;
}
.txu-field-label {
	font-weight: 600;
	font-size: 0.8125rem;
	color: var(--txu-ink);
	margin-bottom: 0.4375rem;
	letter-spacing: 0.01em;
}
.txu-required { color: var(--txu-danger); }

.txu-field input[type="email"],
.txu-field input[type="text"],
.txu-field input[type="tel"] {
	width: 100%;
	padding: 0.75rem 0.875rem;
	font-family: var(--txu-font-body);
	font-size: 1rem;
	color: var(--txu-ink);
	background: #fff;
	border: 1px solid var(--txu-rule);
	border-radius: 2px;
	transition: border-color 200ms var(--txu-ease-out), box-shadow 200ms var(--txu-ease-out);
}
.txu-field input:focus {
	outline: none;
	border-color: var(--txu-navy-900);
	box-shadow: 0 0 0 3px rgba(10,29,59,0.08);
}
.txu-field.has-error input {
	border-color: var(--txu-danger);
	background: #fff5f5;
}
.txu-field-error {
	color: var(--txu-danger);
	font-size: 0.8125rem;
	margin-top: 0.375rem;
	min-height: 1.2em;
	line-height: 1.45;
}

/* ============================================================
   Error modal — replaces native alert()
   ============================================================ */
.txu-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: grid;
	place-items: center;
	padding: 1.25rem;
	animation: txuModalIn 220ms var(--txu-ease-out);
}
.txu-modal[hidden] { display: none; }

.txu-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 29, 59, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	cursor: pointer;
}

.txu-modal-card {
	position: relative;
	width: 100%;
	max-width: 460px;
	background: #fff;
	border-radius: 4px;
	padding: 2.25rem 2rem 1.75rem;
	box-shadow: 0 24px 64px rgba(10, 29, 59, 0.32), 0 2px 0 var(--txu-paper-dark);
	text-align: center;
	animation: txuModalCardIn 320ms var(--txu-ease-out);
	border-top: 3px solid var(--txu-gold-500);
}

@keyframes txuModalIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@keyframes txuModalCardIn {
	from { opacity: 0; transform: translateY(12px) scale(0.97); }
	to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* Close X */
.txu-modal-x {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	width: 32px;
	height: 32px;
	display: grid;
	place-items: center;
	background: transparent;
	border: none;
	color: var(--txu-ink-muted);
	border-radius: 50%;
	transition: background-color 180ms var(--txu-ease-out), color 180ms var(--txu-ease-out);
	cursor: pointer;
	padding: 0;
}
.txu-modal-x svg {
	width: 16px; height: 16px;
	stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round;
}
.txu-modal-x:hover {
	background: var(--txu-paper-dark);
	color: var(--txu-ink);
}

/* Icon disc */
.txu-modal-icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	display: grid;
	place-items: center;
	background: var(--txu-gold-100);
	border-radius: 50%;
	color: var(--txu-gold-600);
}
.txu-modal-icon svg {
	width: 26px; height: 26px;
	stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round;
}
/* Info variant - swap colors */
.txu-modal-icon[data-icon="info"] {
	background: var(--txu-navy-100);
	color: var(--txu-navy-900);
}

.txu-modal-kicker {
	display: inline-block;
	font-weight: 700;
	font-size: 0.6875rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--txu-gold-600);
	margin: 0 0 0.5rem;
}

.txu-modal-title {
	font-family: var(--txu-font-display);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: var(--txu-navy-900);
	margin: 0 0 0.875rem;
}

.txu-modal-message {
	color: var(--txu-ink-soft);
	font-size: 0.9375rem;
	line-height: 1.6;
	margin: 0 0 1.75rem;
	white-space: pre-wrap;
}

.txu-modal-actions {
	display: flex;
	gap: 0.625rem;
	justify-content: center;
	flex-wrap: wrap;
}

.txu-modal-primary,
.txu-modal-secondary {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	font-family: inherit;
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	border-radius: 2px;
	transition: background-color 200ms var(--txu-ease-out),
	            color 200ms var(--txu-ease-out),
	            border-color 200ms var(--txu-ease-out),
	            transform 180ms var(--txu-ease-out);
}
.txu-modal-primary {
	background: var(--txu-navy-900);
	color: #fff;
	border: 1.5px solid var(--txu-navy-900);
}
.txu-modal-primary:hover {
	background: var(--txu-gold-600);
	border-color: var(--txu-gold-600);
	transform: translateY(-1px);
}
.txu-modal-primary .txu-modal-arrow {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2;
	fill: none;
	transition: transform 200ms var(--txu-ease-out);
}
.txu-modal-primary:hover .txu-modal-arrow { transform: translateX(3px); }
.txu-modal-secondary {
	background: transparent;
	color: var(--txu-navy-900);
	border: 1.5px solid var(--txu-rule);
}
.txu-modal-secondary:hover {
	border-color: var(--txu-navy-700);
}
.txu-modal-secondary svg {
	width: 14px; height: 14px;
	stroke: currentColor; stroke-width: 2; fill: none;
	transition: transform 200ms var(--txu-ease-out);
}
.txu-modal-secondary:hover svg {
	transform: translateX(-3px);
}

@media (max-width: 480px) {
	.txu-modal-card { padding: 2rem 1.5rem 1.5rem; }
	.txu-modal-title { font-size: 1.25rem; }
	.txu-modal-actions { flex-direction: column-reverse; }
	.txu-modal-primary,
	.txu-modal-secondary { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
	.txu-modal,
	.txu-modal-card { animation: none; }
}
/* Longer-form duplicate-registration error: render as a soft info block */
.txu-field.has-error.is-long-error .txu-field-error {
	display: block;
	background: #fff5f5;
	border-left: 3px solid var(--txu-danger);
	padding: 0.625rem 0.875rem;
	margin-top: 0.5rem;
	font-size: 0.875rem;
}

.txu-signin-hint {
	font-size: 0.875rem;
	color: var(--txu-ink-muted);
	margin: 1rem 0 0;
}
.txu-signin-hint a {
	color: var(--txu-navy-900);
	font-weight: 600;
	text-decoration: underline;
}

/* ============================================================
   Step nav (back / next buttons)
   ============================================================ */

.txu-step-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--txu-rule);
}

.txu-btn-back, .txu-btn-next {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.875rem 1.5rem;
	font-family: var(--txu-font-body);
	font-weight: 600; font-size: 0.875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	border: 1.5px solid var(--txu-navy-900);
	transition: all 250ms var(--txu-ease-out);
}
.txu-btn-back {
	background: transparent;
	color: var(--txu-navy-900);
	border-color: var(--txu-rule);
}
.txu-btn-back:hover { border-color: var(--txu-navy-700); color: var(--txu-navy-900); }
.txu-btn-next {
	background: var(--txu-navy-900);
	color: #fff;
}
.txu-btn-next:hover:not(:disabled) {
	background: var(--txu-gold-600);
	border-color: var(--txu-gold-600);
}
.txu-btn-next:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}
.txu-btn-back svg, .txu-btn-next svg {
	width: 14px; height: 14px;
	stroke: currentColor; stroke-width: 2; fill: none;
	transition: transform 250ms var(--txu-ease-out);
}
.txu-btn-next:hover:not(:disabled) svg { transform: translateX(3px); }
.txu-btn-back:hover svg { transform: translateX(-3px); }

/* ============================================================
   Step 2: Ticket selector
   ============================================================ */

.txu-ticket-list {
	display: flex;
	flex-direction: column;
	gap: 1px;
	background: var(--txu-rule);
	border: 1px solid var(--txu-rule);
	margin-bottom: 2rem;
}
.txu-ticket-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.25rem 1.5rem;
	background: #fff;
	transition: background-color 200ms var(--txu-ease-out);
}
.txu-ticket-option:hover { background: var(--txu-paper-hover); }
.txu-ticket-option.is-sold-out {
	opacity: 0.55;
}
.txu-ticket-info { flex: 1; }
.txu-ticket-name {
	font-family: var(--txu-font-display); font-weight: 600;
	font-size: 1.125rem;
	color: var(--txu-navy-900);
}
.txu-ticket-desc {
	color: var(--txu-ink-soft);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}
.txu-ticket-availability {
	font-family: var(--txu-font-mono);
	font-size: 0.75rem;
	color: var(--txu-ink-muted);
	margin-top: 0.5rem;
	font-variant-numeric: tabular-nums;
}
.txu-sold-out-badge {
	display: inline-block;
	padding: 0.125rem 0.5rem;
	background: var(--txu-danger);
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.txu-ticket-price-col {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.75rem;
}
.txu-ticket-price {
	font-family: var(--txu-font-mono);
	font-weight: 500; font-size: 1.0625rem;
	color: var(--txu-navy-900);
	font-variant-numeric: tabular-nums;
}
.txu-ticket-price.free { color: var(--txu-success); }

.txu-qty-stepper {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid var(--txu-rule);
	background: #fff;
	border-radius: 2px;
	overflow: hidden;
}
.txu-qty-btn {
	width: 36px; height: 36px;
	display: grid;
	place-items: center;
	background: transparent;
	border: none;
	color: var(--txu-navy-900);
	cursor: pointer;
	transition: background-color 150ms var(--txu-ease-out), color 150ms var(--txu-ease-out);
	padding: 0;
}
.txu-qty-btn svg {
	width: 14px; height: 14px;
	stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round;
}
.txu-qty-btn:hover:not(:disabled) {
	background: var(--txu-navy-900);
	color: #fff;
}
.txu-qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.txu-qty-value {
	min-width: 36px;
	display: grid;
	place-items: center;
	border-left: 1px solid var(--txu-rule);
	border-right: 1px solid var(--txu-rule);
	background: var(--txu-paper);
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1, 'ss01' 1;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--txu-navy-900);
	padding: 0 0.5rem;
}

/* Selected state for ticket card with qty > 0 */
.txu-ticket-option.is-selected {
	background: var(--txu-paper);
	box-shadow: inset 3px 0 0 var(--txu-gold-500);
}

/* Total quantity strip beneath the ticket list */
.txu-qty-summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin: 1.5rem 0 0;
	padding: 0.875rem 1.125rem;
	background: var(--txu-paper-dark);
	border-left: 3px solid var(--txu-gold-500);
	border-radius: 2px;
	transition: border-left-color 200ms var(--txu-ease-out), background-color 200ms var(--txu-ease-out);
}
.txu-qty-summary.is-at-max {
	border-left-color: var(--txu-navy-900);
	background: var(--txu-navy-100);
}
.txu-qty-summary-label {
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--txu-ink-soft);
}
.txu-qty-summary-count {
	display: inline-flex;
	align-items: baseline;
	gap: 0.25rem;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--txu-navy-900);
}
.txu-qty-summary-divider {
	color: var(--txu-ink-muted);
	font-weight: 400;
	margin: 0 0.0625rem;
}

/* ============================================================
   Coupon row
   ============================================================ */

.txu-coupon-row {
	margin: 0 0 2rem;
	padding: 1rem 0;
	border-bottom: 1px solid var(--txu-rule);
}
.txu-coupon-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: transparent;
	border: none;
	color: var(--txu-navy-900);
	font-weight: 600;
	font-size: 0.875rem;
	cursor: pointer;
	padding: 0.25rem 0;
	transition: color 200ms;
}
.txu-coupon-toggle:hover { color: var(--txu-gold-600); }
.txu-coupon-toggle svg {
	width: 16px; height: 16px;
	stroke: currentColor; stroke-width: 1.75; fill: none;
}
.txu-coupon-input-wrap {
	margin-top: 1rem;
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.txu-coupon-input-wrap input {
	flex: 1;
	min-width: 200px;
	padding: 0.625rem 0.875rem;
	font-family: var(--txu-font-mono);
	font-weight: 500;
	font-size: 0.9375rem;
	border: 1px solid var(--txu-rule);
	background: #fff;
}
.txu-btn-coupon-apply {
	padding: 0.625rem 1.25rem;
	background: var(--txu-navy-900);
	color: #fff;
	border: none;
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 200ms;
}
.txu-btn-coupon-apply:hover:not(:disabled) { background: var(--txu-gold-600); }
.txu-btn-coupon-apply:disabled { opacity: 0.5; cursor: not-allowed; }
.txu-coupon-feedback {
	flex-basis: 100%;
	margin-top: 0.5rem;
	font-size: 0.8125rem;
	min-height: 1.2em;
}
.txu-coupon-feedback.is-success { color: var(--txu-success); }
.txu-coupon-feedback.is-error { color: var(--txu-danger); }

/* ============================================================
   Order summary
   ============================================================ */

.txu-order-summary {
	background: var(--txu-paper-dark);
	padding: 1.5rem;
	margin-bottom: 1rem;
}
.txu-order-line {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 0.375rem 0;
	font-size: 0.9375rem;
}
.txu-order-amount {
	font-family: var(--txu-font-mono);
	font-weight: 500;
	font-variant-numeric: tabular-nums;
	color: var(--txu-navy-900);
}
.txu-order-total {
	border-top: 1px solid var(--txu-rule);
	margin-top: 0.5rem;
	padding-top: 0.75rem;
	font-family: var(--txu-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--txu-navy-900);
}
.txu-order-total .txu-order-amount {
	font-family: var(--txu-font-mono);
	font-size: 1.375rem;
}

/* ============================================================
   Step 3: Attendees
   ============================================================ */

.txu-attendee-card {
	background: #fff;
	border: 1px solid var(--txu-rule);
	padding: 1.5rem;
	margin-bottom: 1.5rem;
}
.txu-attendee-header {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--txu-rule);
}
.txu-attendee-name {
	font-family: var(--txu-font-display);
	font-weight: 600;
	font-size: 1.125rem;
	color: var(--txu-navy-900);
}
.txu-attendee-name .txu-attendee-num {
	color: var(--txu-gold-600);
	font-family: var(--txu-font-mono);
	font-weight: 500;
	margin-right: 0.5rem;
}
.txu-attendee-ticket-label {
	font-size: 0.75rem;
	color: var(--txu-ink-muted);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.txu-same-as-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--txu-navy-900);
	margin-bottom: 1rem;
	cursor: pointer;
}
.txu-same-as-toggle input { margin: 0; }

/* ============================================================
   Step 4: Payment
   ============================================================ */

.txu-payment-block { margin-bottom: 2rem; }
.txu-payment-coming-soon {
	text-align: center;
	padding: 2rem;
	background: var(--txu-paper-dark);
	border: 1px dashed var(--txu-rule);
}
.txu-payment-coming-soon svg {
	width: 48px; height: 48px;
	stroke: var(--txu-gold-500); stroke-width: 1.5; fill: none;
	margin: 0 auto 1rem;
	display: block;
}
.txu-payment-coming-soon h3 {
	font-family: var(--txu-font-display);
	font-size: 1.25rem;
	color: var(--txu-navy-900);
	margin: 0 0 0.5rem;
}
.txu-payment-coming-soon p {
	color: var(--txu-ink-soft);
	margin: 0;
	font-size: 0.9375rem;
}

/* Final submit button - extends the brand btn-register pattern */
.txu-btn-submit {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2rem;
	background: var(--txu-navy-900);
	color: #fff;
	border: none;
	font-family: var(--txu-font-body); font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.08em; text-transform: uppercase;
	cursor: pointer;
	transition: background-color 250ms, transform 250ms;
}
.txu-btn-submit:hover:not(:disabled) {
	background: var(--txu-gold-600);
	transform: translateY(-1px);
}
.txu-btn-submit:disabled { opacity: 0.55; cursor: not-allowed; }
.txu-btn-submit svg {
	width: 16px; height: 16px;
	stroke: currentColor; stroke-width: 2; fill: none;
}
.txu-btn-submit.is-loading {
	background: var(--txu-ink-muted);
}

/* Submit feedback */
.txu-submit-feedback {
	margin: 1rem 0;
	padding: 1rem;
	font-size: 0.9375rem;
	border-radius: 2px;
}
.txu-submit-feedback.is-error {
	background: #fff5f5;
	color: var(--txu-danger);
	border-left: 3px solid var(--txu-danger);
}
.txu-submit-feedback.is-info {
	background: var(--txu-paper-dark);
	color: var(--txu-ink-soft);
	border-left: 3px solid var(--txu-gold-500);
}

/* ============================================================
   Confirmation page
   ============================================================ */

.txu-confirmation { max-width: 720px; margin: 0 auto; padding: 3rem 2rem 6rem; }
.txu-confirm-hero {
	text-align: center;
	padding: 3rem 0;
}
.txu-confirm-check {
	width: 72px; height: 72px;
	border-radius: 50%;
	background: var(--txu-success);
	color: #fff;
	display: grid; place-items: center;
	margin: 0 auto 1.5rem;
	animation: txuConfirmPop 600ms var(--txu-ease-out);
}
/* Variant: payment still processing — gold pulse instead of green */
.txu-confirm-check-pending {
	background: var(--txu-gold-500);
	color: var(--txu-navy-900);
	animation: txuConfirmPop 600ms var(--txu-ease-out),
	           txuPendingPulse 2.4s ease-in-out 600ms infinite;
}
.txu-confirm-check svg {
	width: 36px; height: 36px;
	stroke: currentColor; stroke-width: 3; fill: none;
}
@keyframes txuConfirmPop {
	from { opacity: 0; transform: scale(0.6); }
	to   { opacity: 1; transform: scale(1); }
}
@keyframes txuPendingPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.5); }
	50%      { box-shadow: 0 0 0 12px rgba(201, 161, 74, 0); }
}
@media (prefers-reduced-motion: reduce) {
	.txu-confirm-check-pending { animation: txuConfirmPop 600ms var(--txu-ease-out); }
}

/* Pending payment info note — replaces the old "next release" banner */
.txu-confirm-pending-note {
	display: flex;
	gap: 0.875rem;
	align-items: flex-start;
	margin: 1.75rem 0;
	padding: 1.125rem 1.25rem;
	background: var(--txu-paper-dark);
	border-left: 3px solid var(--txu-gold-500);
	border-radius: 2px;
}
.txu-confirm-pending-note.is-warning {
	background: #fff5f5;
	border-left-color: var(--txu-danger);
}
.txu-confirm-pending-note-icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	background: var(--txu-gold-100);
	color: var(--txu-gold-600);
	border-radius: 50%;
}
.txu-confirm-pending-note.is-warning .txu-confirm-pending-note-icon {
	background: rgba(139, 30, 30, 0.10);
	color: var(--txu-danger);
}
.txu-confirm-pending-note-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 1.8;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.txu-confirm-pending-note strong {
	display: block;
	color: var(--txu-navy-900);
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.005em;
	margin-bottom: 0.375rem;
}
.txu-confirm-pending-note p {
	margin: 0;
	color: var(--txu-ink-soft);
	font-size: 0.875rem;
	line-height: 1.55;
}
.txu-confirm-pending-note .txu-confirm-pending-help {
	margin-top: 0.625rem;
	padding-top: 0.625rem;
	border-top: 1px dashed var(--txu-rule);
	font-size: 0.8125rem;
	color: var(--txu-ink-muted);
}
.txu-confirm-title {
	font-family: var(--txu-font-display); font-weight: 700;
	font-size: 2.5rem;
	color: var(--txu-navy-900);
	margin: 0 0 0.75rem;
}
.txu-confirm-subtitle {
	color: var(--txu-ink-soft);
	font-size: 1.0625rem;
}

.txu-confirm-tickets {
	margin: 3rem 0;
	display: flex; flex-direction: column; gap: 1rem;
}
.txu-confirm-ticket-card {
	background: #fff;
	border: 1px dashed var(--txu-rule);
	padding: 1.5rem;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 1.5rem;
	align-items: center;
	position: relative;
}
.txu-confirm-ticket-card::before,
.txu-confirm-ticket-card::after {
	content: '';
	position: absolute;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--txu-paper);
	border: 1px dashed var(--txu-rule);
	top: 50%;
	transform: translateY(-50%);
}
.txu-confirm-ticket-card::before { left: -9px; }
.txu-confirm-ticket-card::after  { right: -9px; }
.txu-confirm-ticket-info h4 {
	font-family: var(--txu-font-display); font-weight: 600;
	font-size: 1.125rem;
	color: var(--txu-navy-900);
	margin: 0 0 0.25rem;
}
.txu-confirm-ticket-info .txu-attendee-label {
	font-size: 0.875rem;
	color: var(--txu-ink-soft);
	margin: 0 0 0.5rem;
}
.txu-confirm-ticket-code {
	font-family: var(--txu-font-mono);
	font-size: 0.75rem;
	color: var(--txu-ink-muted);
	letter-spacing: 0.06em;
	font-variant-numeric: tabular-nums;
}
.txu-confirm-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}
.txu-confirm-actions a {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.25rem;
	border: 1.5px solid var(--txu-navy-900);
	color: var(--txu-navy-900);
	background: transparent;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 200ms var(--txu-ease-out);
}
.txu-confirm-actions a:hover {
	background: var(--txu-navy-900);
	color: #fff;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 700px) {
	.txu-register { padding: 0 1.25rem 4rem; }
	.txu-stepper { gap: 0.25rem; }
	.txu-step-label { font-size: 0.5625rem; letter-spacing: 0.1em; }
	.txu-step-num { width: 32px; height: 32px; font-size: 0.875rem; }
	.txu-field-row-two { grid-template-columns: 1fr; }
	.txu-ticket-option { flex-direction: column; align-items: stretch; }
	.txu-ticket-price-col { flex-direction: row; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
	.txu-step-pane, .txu-confirm-check {
		animation: none !important;
	}
}

/* ============================================================
   Stripe Elements
   ============================================================ */

.txu-stripe-mount {
	background: #fff;
	border: 1px solid var(--txu-rule);
	padding: 1.25rem;
	min-height: 140px;
}

.txu-stripe-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
}

@keyframes txuSpin {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

.txu-stripe-errors {
	margin-top: 0.75rem;
	min-height: 1.2em;
	font-size: 0.875rem;
	color: var(--txu-danger);
}

/* ============================================================
   Selectable ticket cards (1-per-registration mode)
   ============================================================ */

.txu-ticket-option {
	cursor: pointer;
	position: relative;
	padding-right: 4rem !important; /* room for the indicator */
}
.txu-ticket-option.is-sold-out {
	cursor: not-allowed;
}

/* Hide the actual radio input visually but keep it accessible. */
.txu-ticket-radio {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 0; height: 0;
}

/* The visual circle indicator on the right of each ticket card. */
.txu-ticket-radio-indicator {
	position: absolute;
	top: 50%; right: 1.5rem;
	transform: translateY(-50%);
	width: 28px; height: 28px;
	border-radius: 50%;
	border: 1.5px solid var(--txu-rule);
	background: #fff;
	display: grid; place-items: center;
	transition: all 200ms var(--txu-ease-out);
	flex-shrink: 0;
}
.txu-ticket-radio-indicator svg {
	width: 16px; height: 16px;
	stroke: #fff;
	stroke-width: 3;
	fill: none;
	opacity: 0;
	transform: scale(0.5);
	transition: opacity 200ms var(--txu-ease-out), transform 200ms var(--txu-ease-out);
}

/* Selected state */
.txu-ticket-option.is-selected {
	background: rgba(201, 161, 74, 0.05);
	box-shadow: inset 3px 0 0 var(--txu-gold-500);
}
.txu-ticket-option.is-selected .txu-ticket-radio-indicator {
	background: var(--txu-gold-500);
	border-color: var(--txu-gold-500);
}
.txu-ticket-option.is-selected .txu-ticket-radio-indicator svg {
	opacity: 1;
	transform: scale(1);
}
.txu-ticket-option.is-selected .txu-ticket-name {
	color: var(--txu-navy-900);
}

/* Keyboard focus state for accessibility */
.txu-ticket-radio:focus-visible + .txu-ticket-radio-indicator {
	box-shadow: 0 0 0 4px rgba(201, 161, 74, 0.25);
}

/* Sold-out indicator override */
.txu-ticket-option.is-sold-out .txu-ticket-radio-indicator {
	border-style: dashed;
	opacity: 0.4;
}

/* ============================================================
   QR codes (used on confirmation + my tickets)
   ============================================================ */
.txu-qr-wrap {
	text-align: center;
	color: var(--txu-ink-muted);
}
.txu-qr-canvas {
	display: inline-block;
	width: 140px;
	height: 140px;
	background: #fff;
	padding: 4px;
}
.txu-qr-canvas img,
.txu-qr-canvas canvas {
	display: block;
	width: 100%;
	height: 100%;
}
.txu-qr-caption {
	font-size: 0.625rem;
	color: var(--txu-ink-muted);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-top: 0.5rem;
}

/* ============================================================
   My Tickets - "Personal Events Journal" redesign
   Boarding-pass styled cards with navy date strip + QR right zone
   ============================================================ */
.txu-my-tickets {
	max-width: 980px;
	margin: 0 auto;
	padding: 2rem 2rem 5rem;
}

/* ---- Hero band ---- */
.txu-mt-hero {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2.5rem;
	align-items: end;
	padding: 1.5rem 0 2.5rem;
	margin-bottom: 2.5rem;
	border-bottom: 1px solid var(--txu-rule);
	position: relative;
}
.txu-mt-hero::after {
	content: '';
	position: absolute;
	left: 0; bottom: -1px;
	width: 64px; height: 2px;
	background: var(--txu-gold-500);
}
.txu-mt-hero.is-guest { grid-template-columns: 1fr; }

.txu-mt-hero-text { min-width: 0; }
.txu-mt-hero-text .txu-kicker {
	display: inline-block;
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 0.625rem;
}
.txu-mt-hero-title {
	font-family: var(--txu-font-display);
	font-weight: 700;
	font-size: clamp(1.875rem, 4.5vw, 2.75rem);
	line-height: 1.05;
	color: var(--txu-navy-900);
	letter-spacing: -0.025em;
	margin: 0 0 0.75rem;
}
.txu-mt-hero-meta {
	color: var(--txu-ink-soft);
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.5;
}
.txu-mt-hero-meta strong {
	color: var(--txu-navy-900);
	font-weight: 600;
}
.txu-mt-hero-sep {
	color: var(--txu-ink-muted);
	margin: 0 0.5rem;
}
.txu-mt-logout {
	color: var(--txu-navy-900);
	text-decoration: none;
	border-bottom: 1px solid currentColor;
	font-weight: 500;
}
.txu-mt-logout:hover { color: var(--txu-gold-600); }

/* ---- Stats counter ---- */
.txu-mt-stats {
	display: flex;
	align-items: stretch;
	gap: 1.5rem;
	padding: 0.5rem 1.5rem;
	background: #fff;
	border: 1px solid var(--txu-rule);
	border-radius: 2px;
	box-shadow: 0 1px 0 var(--txu-paper-dark);
}
.txu-mt-stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 0.5rem;
	min-width: 70px;
}
.txu-mt-stat-num {
	font-family: var(--txu-font-num);
	font-weight: 700;
	font-size: 1.875rem;
	line-height: 1;
	color: var(--txu-navy-900);
	letter-spacing: -0.02em;
	font-variant-numeric: tabular-nums;
	font-feature-settings: 'tnum' 1, 'ss01' 1, 'cv11' 1;
}
.txu-mt-stat-label {
	margin-top: 0.5rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--txu-ink-muted);
}
.txu-mt-stat-divider {
	width: 1px;
	background: var(--txu-rule);
	align-self: stretch;
}

/* ---- Flash banners ---- */
.txu-mt-flash {
	padding: 1rem 1.25rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	border-radius: 2px;
}
.txu-mt-flash.is-success {
	background: rgba(45, 106, 79, 0.08);
	border-left: 3px solid var(--txu-success);
	color: var(--txu-success);
}
.txu-mt-flash.is-error {
	background: #fff5f5;
	border-left: 3px solid var(--txu-danger);
	color: var(--txu-danger);
}
.txu-mt-flash svg {
	width: 20px; height: 20px;
	stroke: currentColor; stroke-width: 2.5; fill: none;
	flex-shrink: 0;
}

/* ---- Magic-link sign-in card (guests) ---- */
.txu-mt-signin {
	background: #fff;
	border: 1px solid var(--txu-rule);
	padding: 2.75rem 2.5rem;
	max-width: 560px;
	margin: 0 auto;
	text-align: center;
	border-radius: 2px;
	box-shadow: 0 1px 0 var(--txu-paper-dark);
}
.txu-mt-signin-glyph {
	width: 56px; height: 56px;
	margin: 0 auto 1rem;
	display: grid; place-items: center;
	background: var(--txu-navy-900);
	color: var(--txu-gold-500);
	border-radius: 50%;
}
.txu-mt-signin-glyph svg {
	width: 24px; height: 24px;
	stroke: currentColor; stroke-width: 1.6; fill: none;
}
.txu-mt-signin h2 {
	font-family: var(--txu-font-display); font-weight: 700;
	font-size: 1.625rem;
	color: var(--txu-navy-900);
	letter-spacing: -0.02em;
	margin: 0 0 0.625rem;
}
.txu-mt-signin > p {
	color: var(--txu-ink-soft);
	margin: 0 0 1.75rem;
	font-size: 0.9375rem;
	line-height: 1.55;
}
.txu-mt-signin-row {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.txu-mt-signin-row input[type="email"] {
	flex: 1;
	min-width: 200px;
	padding: 0.875rem 1rem;
	font-family: var(--txu-font-body);
	font-size: 1rem;
	border: 1px solid var(--txu-rule);
	background: var(--txu-paper);
	border-radius: 2px;
}
.txu-mt-signin-row input[type="email"]:focus {
	outline: none;
	border-color: var(--txu-navy-900);
	box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.18);
}
.txu-mt-or {
	text-align: center;
	margin: 1.25rem 0 0;
	font-size: 0.8125rem;
	color: var(--txu-ink-muted);
}

/* Honeypot — visually + assistively hidden, but still in the DOM for bots to fill. */
.txu-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

/* Optional CAPTCHA widget block. */
.txu-mt-captcha {
	margin-top: 1rem;
	display: flex;
	justify-content: center;
}
.txu-mt-captcha .cf-turnstile { display: inline-block; }
.txu-mt-captcha-badge {
	margin: 0;
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--txu-ink-muted);
}

/* ---- Empty state ---- */
.txu-mt-empty {
	text-align: center;
	padding: 3.5rem 2rem 4rem;
	background: #fff;
	border: 1px dashed var(--txu-rule);
	border-radius: 2px;
}
.txu-mt-empty-glyph {
	width: 88px; height: 88px;
	margin: 0 auto 1.25rem;
	display: grid; place-items: center;
	color: var(--txu-gold-500);
}
.txu-mt-empty-glyph svg {
	width: 100%; height: 100%;
	stroke: currentColor; stroke-width: 1.5; fill: none;
}
.txu-mt-empty .txu-kicker {
	display: inline-block;
	font-weight: 700; font-size: 0.6875rem;
	letter-spacing: 0.22em; text-transform: uppercase;
	color: var(--txu-gold-600);
	margin-bottom: 0.625rem;
}
.txu-mt-empty h2 {
	font-family: var(--txu-font-display); font-weight: 700;
	font-size: 1.625rem;
	color: var(--txu-navy-900);
	letter-spacing: -0.02em;
	margin: 0 0 0.625rem;
}
.txu-mt-empty p {
	color: var(--txu-ink-soft);
	margin: 0 auto 1.75rem;
	max-width: 420px;
	line-height: 1.55;
}

/* ---- Sections (Upcoming / Attended) ---- */
.txu-mt-section { margin-bottom: 3rem; }
.txu-mt-section-head {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	margin: 0 0 1.5rem;
}
.txu-mt-section-rule {
	display: inline-block;
	width: 20px;
	height: 2px;
	background: var(--txu-gold-500);
	flex-shrink: 0;
}
.txu-mt-section-title {
	font-family: var(--txu-font-display);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--txu-navy-900);
	letter-spacing: -0.02em;
	margin: 0;
}
.txu-mt-section-count {
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1, 'ss01' 1;
	font-variant-numeric: tabular-nums;
	font-weight: 600;
	font-size: 0.75rem;
	color: var(--txu-ink-muted);
	padding: 0.1875rem 0.5rem;
	background: var(--txu-paper-dark);
	border-radius: 999px;
	margin-left: auto;
	min-width: 28px;
	text-align: center;
}
.txu-mt-section-past { opacity: 0.78; }

/* ---- Boarding-pass ticket card ---- */
.txu-mt-ticket {
	display: grid;
	grid-template-columns: 88px 1fr 220px;
	background: #fff;
	border: 1px solid var(--txu-rule);
	margin-bottom: 1.25rem;
	border-radius: 2px;
	overflow: hidden;
	box-shadow: 0 1px 0 var(--txu-paper-dark);
	transition: box-shadow 240ms var(--txu-ease-out), transform 240ms var(--txu-ease-out);
	position: relative;
}
.txu-mt-ticket.is-active:hover {
	box-shadow: 0 10px 28px rgba(10, 29, 59, 0.08), 0 1px 0 var(--txu-paper-dark);
	transform: translateY(-1px);
}
.txu-mt-ticket.is-past { opacity: 0.85; }
.txu-mt-ticket.is-past:hover { opacity: 1; }

/* Left strip: navy stacked date */
.txu-mt-ticket-strip {
	background: var(--txu-navy-900);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 0.5rem;
	text-align: center;
	position: relative;
	gap: 0.125rem;
}
.txu-mt-ticket-strip::before,
.txu-mt-ticket-strip::after {
	content: '';
	position: absolute;
	right: -8px;
	width: 16px; height: 16px;
	background: var(--txu-paper);
	border-radius: 50%;
}
.txu-mt-ticket-strip::before { top: -8px; }
.txu-mt-ticket-strip::after  { bottom: -8px; }

.txu-mt-strip-month {
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1, 'ss01' 1;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--txu-gold-500);
}
.txu-mt-strip-day {
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1, 'ss01' 1, 'cv11' 1;
	font-variant-numeric: tabular-nums;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	color: #fff;
	margin: 0.125rem 0;
}
.txu-mt-strip-weekday {
	font-family: var(--txu-font-num);
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}
.txu-mt-strip-divider {
	display: block;
	width: 24px;
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin: 0.5rem 0 0.375rem;
}
.txu-mt-strip-time {
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1;
	font-variant-numeric: tabular-nums;
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--txu-gold-500);
	letter-spacing: 0.02em;
}

/* Middle: info zone */
.txu-mt-ticket-body {
	padding: 1.375rem 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	min-width: 0;
}

.txu-mt-ticket-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0.75rem;
}
.txu-mt-status-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4375rem;
}
.txu-mt-status {
	display: inline-flex;
	align-items: center;
	padding: 0.1875rem 0.625rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 999px;
	white-space: nowrap;
}
.txu-mt-status.is-confirmed { background: rgba(45, 106, 79, 0.12);  color: var(--txu-success); }
.txu-mt-status.is-pending   { background: rgba(201, 161, 74, 0.18); color: var(--txu-gold-600); }
.txu-mt-status.is-cancelled { background: var(--txu-paper-dark);    color: var(--txu-ink-muted); }
.txu-mt-status.is-refunded  { background: rgba(139, 30, 30, 0.10);  color: var(--txu-danger); }

.txu-mt-countdown {
	display: inline-flex;
	align-items: center;
	gap: 0.3125rem;
	padding: 0.1875rem 0.625rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	border-radius: 999px;
	white-space: nowrap;
	background: var(--txu-navy-900);
	color: #fff;
}
.txu-mt-countdown svg {
	width: 11px; height: 11px;
	stroke: currentColor; stroke-width: 2.2; fill: none;
}
.txu-mt-countdown.is-today,
.txu-mt-countdown.is-now {
	background: var(--txu-gold-500);
	color: var(--txu-navy-900);
	animation: txuPulse 1.8s ease-in-out infinite;
}
.txu-mt-countdown.is-tomorrow { background: var(--txu-gold-600); color: #fff; }
.txu-mt-countdown.is-soon     { background: var(--txu-navy-900); color: var(--txu-gold-500); }
.txu-mt-countdown.is-future   { background: var(--txu-paper-dark); color: var(--txu-ink-soft); }
@keyframes txuPulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(201, 161, 74, 0.6); }
	50%      { box-shadow: 0 0 0 5px rgba(201, 161, 74, 0); }
}

.txu-mt-ticket-title {
	font-family: var(--txu-font-display);
	font-weight: 700;
	font-size: 1.375rem;
	line-height: 1.2;
	letter-spacing: -0.018em;
	color: var(--txu-navy-900);
	margin: 0;
}
.txu-mt-ticket-title a {
	color: inherit;
	text-decoration: none;
	transition: color 200ms;
}
.txu-mt-ticket-title a:hover { color: var(--txu-gold-600); }

.txu-mt-ticket-meta {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1.25rem;
	row-gap: 0.375rem;
	font-size: 0.8125rem;
	color: var(--txu-ink-soft);
}
.txu-mt-meta-item,
.txu-mt-join {
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
}
.txu-mt-meta-item svg,
.txu-mt-join svg {
	width: 13px; height: 13px;
	stroke: currentColor; stroke-width: 1.75; fill: none;
	flex-shrink: 0;
	color: var(--txu-gold-600);
}
.txu-mt-join {
	color: var(--txu-success);
	font-weight: 600;
	text-decoration: none;
	transition: color 200ms;
}
.txu-mt-join svg { color: var(--txu-success); }
.txu-mt-join:hover { color: var(--txu-navy-900); }
.txu-mt-join:hover svg { color: var(--txu-navy-900); }

/* Detail grid: attendee, ticket type, code */
.txu-mt-ticket-detail {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem 1.25rem;
	margin-top: 0.5rem;
	padding-top: 0.875rem;
	border-top: 1px dashed var(--txu-rule);
}
.txu-mt-ticket-detail > div { min-width: 0; }
.txu-mt-ticket-detail-label {
	display: block;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--txu-ink-muted);
	margin-bottom: 0.1875rem;
}
.txu-mt-ticket-detail-value {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--txu-ink);
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.txu-mt-ticket-code {
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1, 'ss01' 1, 'zero' 1;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: var(--txu-navy-900);
	background: none;
	padding: 0;
	display: inline-block;
	word-break: break-all;
	line-height: 1.3;
}
.txu-mt-checkin {
	grid-column: 1 / -1;
	display: inline-flex;
	align-items: center;
	gap: 0.4375rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--txu-success);
}
.txu-mt-checkin svg {
	width: 14px; height: 14px;
	stroke: currentColor; stroke-width: 2.5; fill: none;
}

/* Right: QR zone */
.txu-mt-ticket-qr {
	border-left: 1px dashed var(--txu-rule);
	padding: 1.25rem 1.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	background: var(--txu-paper);
	min-width: 0;
}
.txu-mt-qr-wrap {
	background: #fff;
	padding: 0.625rem;
	border: 1px solid var(--txu-rule);
	border-radius: 4px;
}
.txu-mt-qr-wrap .txu-qr-canvas {
	width: 130px !important;
	height: 130px !important;
	padding: 0;
	display: block;
}
.txu-mt-qr-caption {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--txu-ink-muted);
}
.txu-mt-qr-caption svg {
	width: 12px; height: 12px;
	stroke: currentColor; stroke-width: 1.8; fill: var(--txu-gold-500);
}

/* Past stamp */
.txu-mt-ticket-qr.is-past-stamp {
	border-left: 1px dashed var(--txu-rule);
}
.txu-mt-past-stamp {
	border: 2px solid var(--txu-ink-muted);
	color: var(--txu-ink-muted);
	padding: 0.75rem 1rem;
	transform: rotate(-8deg);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 0.7;
}
.txu-mt-past-stamp-text {
	font-family: var(--txu-font-display);
	font-weight: 700;
	font-size: 1.125rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1;
}
.txu-mt-past-stamp-year {
	font-family: var(--txu-font-num);
	font-feature-settings: 'tnum' 1;
	font-variant-numeric: tabular-nums;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	margin-top: 0.25rem;
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
	.txu-my-tickets { padding: 1.25rem 1.25rem 3.5rem; }

	.txu-mt-hero {
		grid-template-columns: 1fr;
		gap: 1.25rem;
		align-items: start;
	}
	.txu-mt-stats {
		align-self: start;
		padding: 0.375rem 1rem;
	}
	.txu-mt-stat { padding: 0.5rem 0.5rem; min-width: 64px; }
	.txu-mt-stat-num { font-size: 1.5rem; }

	.txu-mt-ticket {
		grid-template-columns: 76px 1fr;
		grid-template-areas:
			"strip body"
			"qr    qr";
	}
	.txu-mt-ticket-strip { grid-area: strip; }
	.txu-mt-ticket-body  { grid-area: body; padding: 1.125rem 1.25rem; }
	.txu-mt-ticket-qr {
		grid-area: qr;
		border-left: none;
		border-top: 1px dashed var(--txu-rule);
		flex-direction: row;
		justify-content: center;
		gap: 1rem;
		padding: 1rem 1.25rem;
	}
	.txu-mt-strip-day { font-size: 2.125rem; }

	.txu-mt-ticket-detail {
		grid-template-columns: 1fr 1fr;
	}
	.txu-mt-ticket-detail > div:nth-child(3) {
		grid-column: 1 / -1;
	}
}

@media (max-width: 500px) {
	.txu-mt-ticket-detail { grid-template-columns: 1fr; }
	.txu-mt-ticket-detail > div:nth-child(3) { grid-column: auto; }
	.txu-mt-ticket-top { flex-wrap: wrap; }
	.txu-mt-stats {
		width: 100%;
		justify-content: space-around;
	}
	.txu-mt-stat { min-width: 0; flex: 1; }
}

/* Override: bigger QR codes on confirmation + my tickets */
.txu-qr-canvas {
	width: 200px !important;
	height: 200px !important;
	padding: 8px;
}
