/* ==========================================================================
   Service X (Coming Soon)
   ========================================================================== */

/* ===== Background ===== */
.service-x {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - 200px);
	overflow: hidden;
}

.service-x__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background: linear-gradient(160deg, #0a1235 0%, #152a6d 40%, #1a3578 60%, #0e1c50 100%);
}

.service-x__particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.service-x__particle {
	position: absolute;
	border-radius: 50%;
	background: rgb(255 255 255 / 6%);
	animation: service-x-particle-float 20s infinite ease-in-out;
}

.service-x__particle:nth-child(1) {
	width: 300px;
	height: 300px;
	top: -5%;
	left: -5%;
	animation-delay: 0s;
	animation-duration: 25s;
}

.service-x__particle:nth-child(2) {
	width: 200px;
	height: 200px;
	top: 60%;
	right: -3%;
	animation-delay: -5s;
	animation-duration: 20s;
}

.service-x__particle:nth-child(3) {
	width: 150px;
	height: 150px;
	bottom: 10%;
	left: 20%;
	animation-delay: -10s;
	animation-duration: 22s;
}

.service-x__particle:nth-child(4) {
	width: 100px;
	height: 100px;
	top: 30%;
	left: 50%;
	animation-delay: -15s;
	animation-duration: 18s;
}

@keyframes service-x-particle-float {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
		opacity: 0.04;
	}

	25% {
		transform: translate(30px, -20px) scale(1.05);
		opacity: 0.08;
	}

	50% {
		transform: translate(-20px, 30px) scale(0.95);
		opacity: 0.06;
	}

	75% {
		transform: translate(10px, 10px) scale(1.02);
		opacity: 0.1;
	}
}

/* ===== Content ===== */
.service-x__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 24px 60px;
	text-align: center;
	position: relative;
	z-index: 1;
}

/* Section Icon */
.service-x__icon {
	width: 32px;
	height: 32px;
	margin-bottom: 16px;
	opacity: 0;
	animation: service-x-fade-in-up 0.8s ease forwards 0.2s;
}

/* Coming Soon Title */
.service-x__title {
	font-family: "Times New Roman", "Noto Serif JP", serif;
	font-size: clamp(2.2rem, 6vw, 4rem);
	font-weight: 300;
	letter-spacing: 0.15em;
	margin-bottom: 12px;
	background: linear-gradient(135deg, #fff 0%, #b8c6e0 50%, #fff 100%);
	background-clip: text;
	-webkit-text-fill-color: transparent;
	opacity: 0;
	animation: service-x-fade-in-up 0.8s ease forwards 0.4s;
}

.service-x__subtitle {
	font-size: clamp(0.85rem, 2vw, 1rem);
	font-weight: 300;
	letter-spacing: 0.2em;
	color: rgb(255 255 255 / 50%);
	margin-bottom: 48px;
	opacity: 0;
	animation: service-x-fade-in-up 0.8s ease forwards 0.6s;
}

/* ===== Divider ===== */
.service-x__divider {
	width: 40px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgb(255 255 255 / 40%), transparent);
	margin: 0 auto 48px;
	opacity: 0;
	animation: service-x-fade-in-up 0.8s ease forwards 0.7s;
}

/* ===== Message ===== */
.service-x__message {
	max-width: 600px;
	opacity: 0;
	animation: service-x-fade-in-up 0.8s ease forwards 0.8s;
}

.service-x__badges {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

.service-x__badge {
	padding: 8px 20px;
	border-radius: 40px;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	color: #fff;
	background: linear-gradient(135deg, rgb(21 42 109 / 90%), rgb(26 53 120 / 90%));
	border: 1px solid rgb(255 255 255 / 15%);
}

.service-x__message-text {
	font-size: 0.95rem;
	line-height: 2;
	color: rgb(255 255 255 / 70%);
	letter-spacing: 0.05em;
}

/* ===== Animation ===== */
@keyframes service-x-fade-in-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== SP ===== */
@media (width <= 750px) {
	.service-x__content {
		padding: 24px 20px 40px;
	}

	.service-x__message-text {
		font-size: 0.85rem;
		line-height: 1.9;
	}
}
