/**
 * Coming Soon template styles.
 *
 * A centered, full-bleed dark hero that sits between the theme's white header
 * and footer — same visual language as the 404 page (#0a0b0b background,
 * #5a66fe accent, .btn button system). Loaded only on template-coming-soon.php
 * (see inc/assets.php).
 */

.coming-soon {
	position: relative;
	overflow: hidden;
	padding: 120px 0;
	background: #0a0b0b;
	color: #fff;
	text-align: center;
}

/* Soft brand glow behind the content. */
.coming-soon::before {
	content: "";
	position: absolute;
	top: -22%;
	left: 50%;
	width: 760px;
	height: 760px;
	max-width: 130%;
	transform: translateX(-50%);
	background: radial-gradient(circle, rgba(90, 102, 254, 0.28) 0%, rgba(90, 102, 254, 0) 70%);
	pointer-events: none;
}

.coming-soon .container {
	position: relative;
	z-index: 1;
}

.coming-soon__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 28px;
	padding: 8px 18px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 100px;
	background: rgba(90, 102, 254, 0.08);
	color: #c7cbff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.coming-soon__badge::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #5a66fe;
	box-shadow: 0 0 0 4px rgba(90, 102, 254, 0.25);
}

.coming-soon h1 {
	margin: 0 0 16px;
	font-size: 56px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.01em;
}

.coming-soon h1 span {
	color: #5a66fe;
}

.coming-soon__lead {
	max-width: 620px;
	margin: 0 auto 40px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 18px;
	line-height: 1.6;
}

.coming-soon__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

@media (max-width: 768px) {
	.coming-soon {
		padding: 80px 0;
	}

	.coming-soon h1 {
		font-size: 34px;
	}

	.coming-soon__lead {
		font-size: 16px;
	}

	.coming-soon__actions {
		flex-direction: column;
	}

	.coming-soon__actions .btn {
		width: 100%;
		justify-content: center;
	}
}
