/* =========================================================
   Standard Coming Soon — static layout
   Dynamic colors/fonts injected as CSS vars from Customizer.
   ========================================================= */

* , *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body.cs-body {
	margin: 0;
	font-family: var(--cs-font-body, sans-serif);
	color: var(--cs-text, #fff);
	background: var(--cs-bg, #0f172a);
	background-attachment: fixed;
	-webkit-font-smoothing: antialiased;
}

.cs-wrap {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	overflow: hidden;
	text-align: var(--cs-align, center);
}

/* Background video */
.cs-bg-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* Overlay */
.cs-overlay {
	position: absolute;
	inset: 0;
	background: var(--cs-overlay, rgba(11,16,32,.55));
	z-index: 1;
}

/* Particles */
.cs-particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* Content */
.cs-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--cs-content-width, 720px);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: var(--cs-align, center);
	gap: 22px;
}
.cs-left .cs-content { align-items: flex-start; }

.cs-logo img { max-height: 110px; width: auto; }
.cs-sitetitle {
	font-family: var(--cs-font-heading);
	font-size: 26px;
	font-weight: 700;
	letter-spacing: 1px;
}

.cs-headline {
	font-family: var(--cs-font-heading);
	font-size: var(--cs-heading-size, 56px);
	line-height: 1.1;
	font-weight: 800;
	margin: 0;
	color: var(--cs-text);
}
.cs-sub {
	font-size: 18px;
	line-height: 1.7;
	color: var(--cs-muted, #c7d2e5);
	margin: 0;
	max-width: 620px;
}

/* Countdown */
.cs-countdown {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: var(--cs-align, center);
}
.cs-left .cs-countdown { justify-content: flex-start; }
.cs-unit {
	background: var(--cs-card, rgba(255,255,255,.1));
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	padding: 16px 10px;
	min-width: 84px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cs-num {
	font-family: var(--cs-font-heading);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	color: var(--cs-accent, #38bdf8);
	font-variant-numeric: tabular-nums;
}
.cs-lbl {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--cs-muted);
	margin-top: 8px;
}
.cs-expired {
	font-size: 20px;
	font-weight: 600;
	color: var(--cs-accent);
}

/* Progress */
.cs-progress-wrap { width: 100%; max-width: 460px; }
.cs-progress-top {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	color: var(--cs-muted);
	margin-bottom: 8px;
}
.cs-progress {
	height: 10px;
	border-radius: 50px;
	background: var(--cs-card, rgba(255,255,255,.12));
	overflow: hidden;
}
.cs-progress-fill {
	height: 100%;
	width: var(--cs-accent-pct, 70%);
	background: var(--cs-accent, #38bdf8);
	border-radius: 50px;
	transition: width 1s ease;
}

/* Subscribe */
.cs-subscribe { width: 100%; max-width: 480px; }
.cs-sub-label {
	display: block;
	font-size: 15px;
	color: var(--cs-muted);
	margin-bottom: 10px;
}
.cs-sub-row {
	display: flex;
	gap: 8px;
	background: var(--cs-card, rgba(255,255,255,.1));
	backdrop-filter: blur(8px);
	padding: 6px;
	border-radius: 50px;
	border: 1px solid rgba(255,255,255,.18);
}
.cs-sub-row input[type=email] {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 18px;
	font-family: inherit;
	font-size: 15px;
	color: var(--cs-text);
	outline: none;
}
.cs-sub-row input[type=email]::placeholder { color: var(--cs-muted); opacity: .8; }
.cs-sub-row button {
	border: none;
	background: var(--cs-accent, #38bdf8);
	color: var(--cs-accent-text, #04121f);
	font-family: var(--cs-font-heading);
	font-weight: 600;
	font-size: 15px;
	padding: 12px 26px;
	border-radius: 50px;
	cursor: pointer;
	transition: transform .15s, filter .15s;
}
.cs-sub-row button:hover { transform: translateY(-1px); filter: brightness(1.08); }
.cs-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cs-sub-msg { font-size: 14px; margin: 10px 2px 0; min-height: 18px; }
.cs-sub-msg.ok { color: #4ade80; }
.cs-sub-msg.err { color: #f87171; }

/* Social */
.cs-social {
	display: flex;
	gap: 12px;
	justify-content: var(--cs-align, center);
}
.cs-left .cs-social { justify-content: flex-start; }
.cs-social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--cs-card, rgba(255,255,255,.1));
	border: 1px solid rgba(255,255,255,.18);
	color: var(--cs-text);
	transition: transform .15s, background .15s;
}
.cs-social a:hover { transform: translateY(-3px); background: var(--cs-accent); color: var(--cs-accent-text); }

/* Contact */
.cs-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 22px;
	justify-content: var(--cs-align, center);
	font-size: 15px;
}
.cs-left .cs-contact { justify-content: flex-start; }
.cs-contact a { color: var(--cs-muted); text-decoration: none; }
.cs-contact a:hover { color: var(--cs-accent); }

/* Responsive */
@media (max-width: 600px) {
	.cs-headline { font-size: calc(var(--cs-heading-size, 56px) * 0.62); }
	.cs-sub { font-size: 16px; }
	.cs-unit { min-width: 68px; padding: 12px 6px; }
	.cs-num { font-size: 30px; }
	.cs-sub-row { flex-direction: column; border-radius: 18px; }
	.cs-sub-row button { border-radius: 12px; }
	.cs-sub-row input[type=email] { text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
	.cs-particles { display: none; }
	.cs-progress-fill { transition: none; }
}
