/* =============================================================
   Coming Soon Page
   ============================================================= */

.cs-page *, .cs-page *::before, .cs-page *::after { box-sizing: border-box; }

.cs-page {
	font-family: 'Comic Relief', system-ui, sans-serif;
	background: #faf9f6;
}

/* Section that wraps the coming-soon content */
.cs-main {
	position: relative;
	overflow: hidden;
	padding: 6rem clamp(1.25rem, 5vw, 3rem) 7rem;
	text-align: center;
}

/* Background decorations */
.cs-main::before,
.cs-main::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}
.cs-main::before {
	width: 600px; height: 600px;
	background: #fef3c7;
	top: -200px; right: -200px;
	opacity: .55;
}
.cs-main::after {
	width: 400px; height: 400px;
	background: #dbeafe;
	bottom: -120px; left: -120px;
	opacity: .45;
}

.cs-inner {
	position: relative;
	z-index: 1;
	max-width: 580px;
	width: 100%;
	margin-inline: auto;
}

/* Badge */
.cs-badge {
	display: inline-flex;
	align-items: center;
	gap: .45rem;
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 50px;
	padding: .35rem 1rem;
	font-size: .75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #6b7280;
	margin-bottom: 1.75rem;
}
.cs-badge__dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #10b981;
	animation: cs-pulse 1.6s ease-in-out infinite;
}
@keyframes cs-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: .5; transform: scale(.7); }
}

/* Heading */
.cs-title {
	font-family: 'Comic Relief', system-ui, sans-serif;
	font-size: clamp(2.25rem, 8vw, 4rem);
	font-weight: 900;
	color: #1a1a2e;
	line-height: 1.1;
	letter-spacing: -.03em;
	margin: 0 0 1rem;
}
.cs-title span {
	color: #f59e0b;
}

.cs-sub {
	font-size: 1.05rem;
	color: #6b7280;
	line-height: 1.7;
	margin: 0 0 2.75rem;
}

/* Countdown */
.cs-countdown {
	display: flex;
	justify-content: center;
	gap: 1.25rem;
	margin-bottom: 2.75rem;
	flex-wrap: wrap;
}

.cs-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .3rem;
}

.cs-unit__num {
	min-width: 72px;
	height: 72px;
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Comic Relief', system-ui, sans-serif;
	font-size: 2rem;
	font-weight: 900;
	color: #1a1a2e;
	box-shadow: 0 2px 10px rgba(0,0,0,.05);
	transition: all .3s;
}

.cs-unit__label {
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #9ca3af;
}

/* Email form */
.cs-form {
	margin-bottom: 2rem;
}

.cs-form__pill {
	display: flex;
	align-items: center;
	background: #fff;
	border: 1.5px solid #e5e7eb;
	border-radius: 50px;
	padding: .4rem .4rem .4rem 1.35rem;
	gap: .5rem;
	max-width: 440px;
	margin-inline: auto;
	box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.cs-form__pill input[type="email"] {
	flex: 1;
	border: none;
	background: transparent;
	font-size: .95rem;
	font-family: 'Comic Relief', sans-serif;
	color: #374151;
	outline: none;
	min-width: 0;
}
.cs-form__pill input[type="email"]::placeholder { color: #9ca3af; }

.cs-form__btn {
	padding: .75rem 1.5rem;
	background: #7ed957;
	color: #000;
	border: none;
	border-radius: 50px;
	font-size: .9rem;
	font-weight: 700;
	font-family: 'Comic Relief', sans-serif;
	cursor: pointer;
	transition: background .18s;
	flex-shrink: 0;
	white-space: nowrap;
}
.cs-form__btn:hover { background: #5cbe33; color: #000; }

.cs-form__note {
	font-size: .77rem;
	color: #9ca3af;
	margin-top: .75rem;
}

/* Socials */
.cs-socials {
	display: flex;
	justify-content: center;
	gap: .75rem;
	margin-bottom: 2.5rem;
}

.cs-social {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	text-decoration: none;
	transition: box-shadow .18s, transform .18s;
}
.cs-social:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-2px); }

/* Responsive */
@media (max-width: 480px) {
	.cs-unit__num { min-width: 58px; height: 58px; font-size: 1.6rem; border-radius: 12px; }
	.cs-countdown { gap: .75rem; }
	.cs-form__pill { flex-direction: column; border-radius: 14px; padding: .75rem 1rem; align-items: stretch; }
	.cs-form__btn { border-radius: 8px; }
}
