.fo-cd,
.fo-cd * {
	box-sizing: border-box;
}

.fo-cd {
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 18px;
	text-align: center;
	font-family: inherit;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(10px);
	animation: fo-cd-in 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes fo-cd-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fo-cd__eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	letter-spacing: 0.03em;
	font-weight: 600;
}

.fo-cd__title {
	margin: 0 0 32px;
	font-weight: 600;
	font-size: clamp(22px, 4vw, 34px);
	line-height: 1.3;
	word-wrap: break-word;
}

.fo-cd__rows {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 36px;
}

.fo-cd__row + .fo-cd__row {
	padding-top: 28px;
	border-top: 1px solid rgba(20, 22, 26, 0.08);
}

.fo-cd__row-label {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.fo-cd__grid {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
}

.fo-cd__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 1 70px;
	min-width: 64px;
	max-width: 110px;
	padding: 16px 6px 12px;
	border-radius: 12px;
	border-top: 3px solid transparent;
}

.fo-cd__num {
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	font-size: clamp(26px, 5vw, 40px);
	line-height: 1;
	display: inline-block;
}

.fo-cd__num--pop {
	animation: fo-cd-pop 0.35s ease;
}

@keyframes fo-cd-pop {
	0% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.18);
	}
	100% {
		transform: scale(1);
	}
}

.fo-cd__label {
	margin-top: 6px;
	font-size: 11.5px;
	letter-spacing: 0.02em;
}

.fo-cd__sep {
	font-size: 22px;
	opacity: 0.25;
	transform: translateY(-8px);
}

.fo-cd__started {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
}

.fo-cd__cta {
	display: inline-block;
	padding: 14px 34px;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.fo-cd__cta:hover {
	transform: translateY(-1px);
}

@media (max-width: 480px) {
	.fo-cd__grid {
		gap: 8px;
	}

	.fo-cd__unit {
		min-width: 56px;
		padding: 12px 4px 10px;
	}

	.fo-cd__sep {
		display: none;
	}

	.fo-cd__rows {
		gap: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fo-cd {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.fo-cd__num--pop {
		animation: none;
	}
}
