.header { background-color: transparent !important; }
body { background-color: #F7F7F7; }

/* fadeout page wrap */
.fadeout-page {
	position: relative;
	min-height: calc(100vh - 246px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 2rem 1.5rem;
	box-sizing: border-box;
	overflow: hidden;
}

/* background decoration container */
.fadeout-bg-deco {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

/* decoration circle/curve base */
.fadeout-deco {
	position: absolute;
	border-radius: 50%;
	opacity: 0.9;
}

/* COMING SOON label */
.fadeout-label {
	position: relative;
	z-index: 1;
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-align: center;
	color: #1dc28a;
	text-transform: uppercase;
}

/* main title */
.fadeout-title {
	position: relative;
	z-index: 1;
	margin: 0 0 2.5rem;
	text-align: center;
	font-size: clamp(1.75rem, 5vw, 4rem);
	font-weight: 700;
	color: #212121;
	line-height: 1.2;
}

.fadeout-title-line {
	display: block;
}

/* countdown container */
.fadeout-countdown {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	justify-content: center;
	gap: 1.75rem;
	margin-bottom: 2rem;
}

.fadeout-countdown-units {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
	margin-bottom: 2rem;
	text-align: center;
}

.flip-in {animation: flipIn 0.4s ease-out;}

@keyframes flipIn {
	from {
		transform: rotateX(90deg);
		opacity: 0;
	}
	to {
		transform: rotateX(0deg);
		opacity: 1;
	}
}

/* countdown card */
.fadeout-countdown-item {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 12rem;
	aspect-ratio: 1/0.85;
	padding: 1rem 0.75rem;
	background-color: #FFFFFF;
	border-radius: 12px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
	overflow: hidden;
}

.fadeout-countdown-item::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(to top, #F5F5F5, #FFFFFF);
}

.fadeout-countdown-num {
	display: block;
	font-size: 3.75rem;
	font-weight: 700;
	color: #212121;
	line-height: 1.2;
}

.fadeout-countdown-unit {
	min-width: 12rem;
	display: block;
	margin-top: 0.25rem;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: #757575;
	text-transform: uppercase;
}

/* description text */
.fadeout-desc {
	position: relative;
	z-index: 1;
	margin: 0 0 1.75rem;
	text-align: center;
	font-size: 0.9rem;
	line-height: 1.7;
	color: #424242;
}


/* page fade-in on load */
.fadeout-page.is-ready {
	animation: fadeoutPageIn 0.6s ease forwards;
}

.btm-quick-wrap { display: none; }

@keyframes fadeoutPageIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* optional: responsive tweaks */
@media (max-width: 1024px) {
	.fadeout-countdown-units,
	.fadeout-countdown { gap:0.75rem; min-width: 80%; } 
	.fadeout-countdown-unit,
	.fadeout-countdown-item { min-width: auto; }

	.fadeout-countdown-num { font-size: 3rem; }
}
@media (max-width: 480px) {
	.fadeout-countdown { margin-bottom: 1rem; }
	.fadeout-countdown-num { font-size: 2rem; }
	.fadeout-countdown-unit { font-size: 0.75rem; }
}
