/* ─── Thank You Section ──────────────────────────── */
.thankyou-section {
	position: relative;
	background: var(--primary-red);
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--header-h) var(--section-padding);
	overflow: hidden;
}

/* ─── Watermark ──────────────────────────────────── */
.thankyou-watermark-wrap {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	z-index: 0;
}

.thankyou-watermark {
	font-size: clamp(140px, 20vw, 380px);
	font-weight: var(--font-weight-bold);
	text-transform: uppercase;
	white-space: nowrap;
	line-height: 1;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 8%, rgba(255, 255, 255, 0) 109%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.thankyou-watermark-blur {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 50%;
	backdrop-filter: blur(11.95px);
	-webkit-backdrop-filter: blur(11.95px);
	pointer-events: none;
	mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
	-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 40%);
}

/* ─── Content ────────────────────────────────────── */
.thankyou-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 32px;
}

.thankyou-icon {
	width: 64px;
	height: 64px;
	flex-shrink: 0;
}

.thankyou-title {
	font-size: clamp(52px, 6vw, 96px);
	font-weight: var(--font-weight-regular);
	color: var(--text-white);
	line-height: 1.05;
}

.thankyou-subtitle {
	font-size: clamp(18px, 2vw, 28px);
	font-weight: var(--font-weight-regular);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.5;
	max-width: 540px;
}

.thankyou-cta {
	display: inline-block;
	margin-top: 8px;
	padding: 16px 48px;
	background: var(--text-white);
	color: var(--primary-red);
	font-size: 18px;
	font-weight: var(--font-weight-bold);
	border-radius: var(--radius);
	transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.thankyou-cta:hover {
	opacity: 0.92;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.thankyou-cta:active {
	transform: translateY(0);
	box-shadow: none;
}

/* ─── Responsive ─────────────────────────────────── */
@media (max-width: 768px) {
	.thankyou-section {
		padding: var(--header-h) 24px 60px;
	}

	.thankyou-inner {
		gap: 24px;
	}

	.thankyou-cta {
		width: 100%;
		max-width: 320px;
		text-align: center;
	}
}

/* ─── Responsive: 1680px+ ────────────────────────── */
@media (min-width: 1680px) {
	.thankyou-inner {
		gap: 40px;
	}
	.thankyou-icon {
		width: 80px;
		height: 80px;
	}
	.thankyou-subtitle {
		max-width: 680px;
	}
}

/* ─── Responsive: 1920px+ ────────────────────────── */
@media (min-width: 1920px) {
	.thankyou-icon {
		width: 96px;
		height: 96px;
	}
	.thankyou-subtitle {
		max-width: 820px;
	}
	.thankyou-cta {
		font-size: 20px;
		padding: 20px 56px;
	}
}

/* ─── Responsive: 2400px+ ────────────────────────── */
@media (min-width: 2400px) {
	.thankyou-icon {
		width: 112px;
		height: 112px;
	}
	.thankyou-subtitle {
		max-width: 960px;
	}
	.thankyou-cta {
		font-size: 24px;
		padding: 24px 64px;
	}
}
