/* Thank You page — standalone panel without header/footer */
.thankyou-section {
	min-height: 100vh;
	display: grid;
	place-items: center;
	padding: 24px 0;
	background: radial-gradient(
			520px 320px at -10% -20%,
			rgba(255, 68, 85, 0.1),
			transparent 60%
		),
		radial-gradient(
			520px 320px at 110% 120%,
			rgba(58, 209, 161, 0.08),
			transparent 60%
		);
}

.thankyou-container {
	width: 100%;
	max-width: 760px;
	background: var(--panel);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	box-shadow: var(--shadow);
	padding: 22px 18px;
	text-align: center;
}

.thankyou-title {
	margin: 0 0 8px;
	font-family: Rajdhani, Inter, sans-serif;
	font-size: clamp(26px, 5.6vw, 40px);
	letter-spacing: 0.04em;
}

.thankyou-message {
	margin: 0 auto 16px;
	color: #cfd3db;
	max-width: 70ch;
}

/* CTA button styled to match the site look */
.cta-button {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.02em;
	background: transparent;
	color: var(--ink);
	border: 1px solid rgba(255, 255, 255, 0.18);
	transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s,
		border-color 0.18s;
}
.cta-button:hover {
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
	border-color: rgba(255, 255, 255, 0.28);
}

/* Focus styles for accessibility */
.cta-button:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(58, 209, 161, 0.25);
}

/* Responsive */
@media (max-width: 480px) {
	.thankyou-container {
		padding: 18px 14px;
	}
}
