/**
 * YourCount — launcher + modal (scoped under .yourcount-lc-entry / .yourcount-lc-overlay)
 */

.yourcount-lc-entry,
.yourcount-lc-overlay {
	font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	color: #0f172a;
	line-height: 1.55;
	box-sizing: border-box;
}

.yourcount-lc-entry *,
.yourcount-lc-entry *::before,
.yourcount-lc-entry *::after,
.yourcount-lc-overlay *,
.yourcount-lc-overlay *::before,
.yourcount-lc-overlay *::after {
	box-sizing: border-box;
}

/* --- Launch button --- */

.yourcount-lc-entry {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 0.5rem 0;
}

.yourcount-lc-launch {
	position: relative;
	display: inline-flex;
	align-items: stretch;
	justify-content: center;
	width: min(640px, 100%);
	padding: 0;
	border: none;
	cursor: pointer;
	text-align: left;
	background: transparent;
	border-radius: 18px;
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease;
	box-shadow:
		0 4px 6px -1px rgba(15, 23, 42, 0.08),
		0 24px 48px -24px rgba(79, 70, 229, 0.55);
}

.yourcount-lc-launch:hover {
	transform: translateY(-3px);
	box-shadow:
		0 12px 24px -12px rgba(14, 165, 233, 0.45),
		0 28px 56px -28px rgba(99, 102, 241, 0.55);
}

.yourcount-lc-launch:active {
	transform: translateY(-1px);
}

.yourcount-lc-launch:focus-visible {
	outline: 3px solid rgba(99, 102, 241, 0.55);
	outline-offset: 4px;
}

.yourcount-lc-launch__glow {
	position: absolute;
	inset: -2px;
	border-radius: 20px;
	background: linear-gradient(135deg, #22d3ee, #6366f1, #a855f7, #22d3ee);
	background-size: 280% 280%;
	animation: yourcountLcShift 10s ease infinite;
	opacity: 0.95;
	z-index: 0;
}

.yourcount-lc-launch__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 1rem;
	width: 100%;
	padding: 1.15rem 1.25rem;
	border-radius: 17px;
	margin: 2px;
	background: radial-gradient(120% 120% at 20% 20%, rgba(255, 255, 255, 0.14), transparent),
		linear-gradient(155deg, #0f172a 0%, #111827 42%, #0b1224 100%);
	color: #f8fafc;
	overflow: hidden;
}

.yourcount-lc-launch__inner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 60% at 85% 15%, rgba(56, 189, 248, 0.22), transparent 55%);
	pointer-events: none;
}

.yourcount-lc-launch__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	color: #e0e7ff;
}

.yourcount-lc-launch__text {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	position: relative;
	z-index: 1;
	min-width: 0;
	flex: 1;
}

.yourcount-lc-launch__label {
	font-size: clamp(1.05rem, 2.2vw, 1.2rem);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.yourcount-lc-launch__hint {
	font-size: 0.9rem;
	color: rgba(226, 232, 240, 0.82);
	font-weight: 500;
}

.yourcount-lc-launch__chev {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
	transition: transform 0.22s ease, background 0.22s ease;
}

.yourcount-lc-launch:hover .yourcount-lc-launch__chev {
	transform: translateX(4px);
	background: rgba(255, 255, 255, 0.14);
}

.yourcount-lc-entry__noscript {
	text-align: center;
	color: #64748b;
	font-size: 0.95rem;
	margin: 0.5rem 0 0;
}

@keyframes yourcountLcShift {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yourcount-lc-launch__glow {
		animation: none;
		background-position: 40% 40%;
	}

	.yourcount-lc-launch,
	.yourcount-lc-launch:hover {
		transition: none;
		transform: none;
	}
}

/* --- Modal overlay --- */

body.yourcount-lc-modal-open {
	overflow: hidden;
	touch-action: none;
}

.yourcount-lc-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(10px, 3vw, 28px);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.32s ease, visibility 0.32s ease;
}

.yourcount-lc-overlay.is-open {
	opacity: 1;
	visibility: visible;
}

.yourcount-lc-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

@supports not (backdrop-filter: blur(1px)) {
	.yourcount-lc-overlay__backdrop {
		background: rgba(15, 23, 42, 0.72);
	}
}

.yourcount-lc-overlay__dialog {
	position: relative;
	z-index: 1;
	width: min(640px, 100%);
	max-height: min(92vh, 880px);
	display: flex;
	align-items: stretch;
	transform: translateY(14px) scale(0.98);
	opacity: 0;
	transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.34s ease;
	filter: drop-shadow(0 30px 60px rgba(15, 23, 42, 0.35));
}

.yourcount-lc-overlay.is-open .yourcount-lc-overlay__dialog {
	transform: translateY(0) scale(1);
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.yourcount-lc-overlay__dialog {
		transition: none;
		transform: none;
		opacity: 1;
	}
}

.yourcount-lc-overlay__panel {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-height: inherit;
	border-radius: 22px;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
	border: 1px solid rgba(148, 163, 184, 0.35);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.65) inset,
		0 24px 60px rgba(15, 23, 42, 0.18);
}

.yourcount-lc-overlay__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.15rem 1.1rem 0.95rem;
	background: radial-gradient(100% 120% at 0% 0%, rgba(56, 189, 248, 0.12), transparent 45%),
		radial-gradient(80% 100% at 100% 0%, rgba(129, 140, 248, 0.16), transparent 50%),
		linear-gradient(135deg, #0f172a 0%, #111c2f 48%, #0b1224 100%);
	color: #f1f5f9;
	border-bottom: 1px solid rgba(148, 163, 184, 0.22);
	flex-shrink: 0;
}

.yourcount-lc-overlay__brand {
	min-width: 0;
}

.yourcount-lc-overlay__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-weight: 700;
	color: rgba(226, 232, 240, 0.72);
}

.yourcount-lc-overlay__maintitle {
	margin: 0 0 0.25rem;
	font-size: clamp(1.15rem, 2.6vw, 1.35rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: #ffffff;
}

.yourcount-lc-overlay__sub {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(226, 232, 240, 0.78);
	line-height: 1.45;
	max-width: 42ch;
}

.yourcount-lc-overlay__close {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.06);
	color: #e2e8f0;
	cursor: pointer;
	transition: background 0.18s ease, transform 0.18s ease;
}

.yourcount-lc-overlay__close:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-1px);
}

.yourcount-lc-overlay__close:focus-visible {
	outline: 2px solid rgba(125, 211, 252, 0.65);
	outline-offset: 2px;
}

.yourcount-lc-overlay__scroll {
	flex: 1;
	min-height: 0;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.yourcount-lc-overlay__stage {
	padding: 1rem 1.1rem 1.35rem;
}

@media (min-width: 640px) {
	.yourcount-lc-overlay__stage {
		padding: 1.15rem 1.35rem 1.5rem;
	}

	.yourcount-lc-overlay__head {
		padding: 1.25rem 1.25rem 1.05rem;
	}
}

/* --- Wizard content --- */

.yourcount-lc__bar_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.85rem;
}

.yourcount-lc__stepcount {
	font-size: 0.78rem;
	font-weight: 700;
	color: #64748b;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.yourcount-lc__bar {
	flex: 1;
	height: 8px;
	background: #e2e8f0;
	border-radius: 999px;
	overflow: hidden;
	min-width: 0;
}

.yourcount-lc__progress {
	height: 100%;
	background: linear-gradient(90deg, #22d3ee, #6366f1, #a855f7);
	background-size: 160% 100%;
	animation: yourcountLcBar 8s ease infinite;
	transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes yourcountLcBar {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.yourcount-lc__progress {
		animation: none;
	}
}

.yourcount-lc__card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 1.15rem 1rem 1rem;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

@media (min-width: 640px) {
	.yourcount-lc__card {
		padding: 1.35rem 1.2rem 1.15rem;
	}
}

.yourcount-lc__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.15rem, 2.6vw, 1.35rem);
	line-height: 1.22;
	font-weight: 800;
	letter-spacing: -0.03em;
	color: #0f172a;
}

.yourcount-lc__subtitle {
	margin: 0 0 1rem;
	color: #475569;
	font-size: 0.98rem;
}

.yourcount-lc__help {
	margin: 0 0 1rem;
	color: #64748b;
	font-size: 0.92rem;
}

.yourcount-lc__hintbox {
	border-radius: 12px;
	padding: 0.85rem 0.95rem;
	background: linear-gradient(135deg, rgba(224, 231, 255, 0.55), rgba(224, 242, 254, 0.55));
	border: 1px solid rgba(99, 102, 241, 0.18);
	margin-bottom: 0.25rem;
}

.yourcount-lc__muted {
	color: #64748b;
	font-size: 0.95rem;
	margin: 0;
}

.yourcount-lc__muted.small {
	font-size: 0.85rem;
	margin-top: 0.75rem;
}

.yourcount-lc__muted--nomargin {
	margin: 0;
}

.yourcount-lc__sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.yourcount-lc__bullets {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.yourcount-lc__bullets li {
	position: relative;
	padding-left: 1.65rem;
	margin-bottom: 0.65rem;
	color: #334155;
	font-size: 0.96rem;
	line-height: 1.45;
}

.yourcount-lc__bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.35rem;
	width: 1.05rem;
	height: 1.05rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #22d3ee, #6366f1);
	box-shadow: 0 2px 8px rgba(99, 102, 241, 0.35);
}

.yourcount-lc__bullets li::after {
	content: "✓";
	position: absolute;
	left: 0.2rem;
	top: 0.12rem;
	font-size: 0.62rem;
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
}

.yourcount-lc__card--results {
	padding-top: 1rem;
	border-style: dashed;
	border-color: rgba(99, 102, 241, 0.22);
	background: linear-gradient(180deg, #fafbff 0%, #ffffff 38%);
}

.yourcount-lc__leadintro {
	margin: 0 0 1rem;
	font-size: 0.98rem;
	color: #475569;
	line-height: 1.55;
}

.yourcount-lc__option {
	display: flex;
	gap: 0.75rem;
	align-items: flex-start;
	padding: 0.85rem 0.95rem;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	margin-bottom: 0.6rem;
	cursor: pointer;
	transition:
		border-color 0.18s ease,
		box-shadow 0.18s ease,
		transform 0.18s ease,
		background 0.18s ease;
	background: #ffffff;
}

.yourcount-lc__option:hover {
	border-color: rgba(99, 102, 241, 0.45);
	box-shadow: 0 10px 22px rgba(79, 70, 229, 0.08);
	transform: translateY(-1px);
	background: linear-gradient(180deg, #ffffff, #fafbff);
}

.yourcount-lc__option input {
	margin-top: 0.25rem;
	accent-color: #6366f1;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.yourcount-lc__option span {
	color: #1e293b;
	font-weight: 600;
	font-size: 0.95rem;
}

.yourcount-lc__results--rich {
	margin-top: 0.25rem;
}

.yourcount-lc__outcome {
	border-radius: 14px;
	padding: 1rem 1.05rem;
	margin-bottom: 1rem;
	background: linear-gradient(135deg, rgba(224, 231, 255, 0.65), rgba(224, 242, 254, 0.5));
	border: 1px solid rgba(99, 102, 241, 0.2);
}

.yourcount-lc__outcome-eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #4f46e5;
}

.yourcount-lc__outcome-lead {
	margin: 0 0 0.5rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #0f172a;
	line-height: 1.4;
}

.yourcount-lc__outcome-meta {
	margin: 0;
	font-size: 0.9rem;
	color: #64748b;
	line-height: 1.45;
}

.yourcount-lc__vs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
	margin-bottom: 1.1rem;
}

@media (max-width: 520px) {
	.yourcount-lc__vs {
		grid-template-columns: 1fr;
	}
}

.yourcount-lc__vs-card {
	border-radius: 14px;
	padding: 0.85rem 0.9rem;
	border: 1px solid #e2e8f0;
	background: #ffffff;
}

.yourcount-lc__vs-card--jdg {
	box-shadow: 0 8px 20px rgba(14, 165, 233, 0.08);
}

.yourcount-lc__vs-card--spzoo {
	box-shadow: 0 8px 20px rgba(99, 102, 241, 0.08);
}

.yourcount-lc__vs-head {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 800;
	font-size: 0.95rem;
	color: #0f172a;
	margin-bottom: 0.55rem;
}

.yourcount-lc__vs-icon {
	opacity: 0.55;
	font-size: 0.85rem;
}

.yourcount-lc__meter {
	height: 10px;
	border-radius: 999px;
	background: #e2e8f0;
	overflow: hidden;
}

.yourcount-lc__meter span {
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #0ea5e9, #06b6d4);
	transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.yourcount-lc__meter--alt span {
	background: linear-gradient(90deg, #6366f1, #a855f7);
}

.yourcount-lc__vs-foot {
	margin: 0.45rem 0 0;
	font-size: 0.78rem;
	font-weight: 600;
	color: #64748b;
}

.yourcount-lc__diffgrid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.65rem;
	margin-bottom: 1.15rem;
}

@media (max-width: 560px) {
	.yourcount-lc__diffgrid {
		grid-template-columns: 1fr;
	}
}

.yourcount-lc__diffcard {
	border-radius: 14px;
	padding: 0.85rem 0.95rem;
	border: 1px solid #e2e8f0;
	background: #fafafa;
}

.yourcount-lc__difftitle {
	margin: 0 0 0.55rem;
	font-size: 0.88rem;
	font-weight: 800;
	color: #0f172a;
}

.yourcount-lc__difflist {
	margin: 0;
	padding-left: 1.1rem;
	font-size: 0.86rem;
	color: #475569;
	line-height: 1.45;
}

.yourcount-lc__difflist li {
	margin-bottom: 0.4rem;
}

.yourcount-lc__taxhead {
	margin-bottom: 0.65rem;
}

.yourcount-lc__taxhead-title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 800;
	color: #0f172a;
}

.yourcount-lc__taxhead-sub {
	margin: 0;
	font-size: 0.88rem;
	color: #64748b;
	line-height: 1.45;
}

.yourcount-lc__taxgrid {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin-bottom: 1rem;
}

.yourcount-lc__taxcard {
	border-radius: 14px;
	padding: 0.9rem 1rem;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}

.yourcount-lc__taxpill {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	background: rgba(99, 102, 241, 0.12);
	color: #4338ca;
	margin-bottom: 0.45rem;
}

.yourcount-lc__taxlead {
	margin: 0 0 0.45rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #1e293b;
	line-height: 1.4;
}

.yourcount-lc__taxdetail {
	margin: 0;
	font-size: 0.86rem;
	color: #64748b;
	line-height: 1.45;
}

.yourcount-lc__ipbox {
	border-radius: 12px;
	padding: 0.75rem 0.9rem;
	margin-bottom: 1rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #334155;
	background: rgba(254, 243, 199, 0.55);
	border: 1px solid rgba(245, 158, 11, 0.35);
}

.yourcount-lc__valuestrip {
	border-radius: 14px;
	padding: 0.05rem;
	margin-bottom: 0.85rem;
	background: linear-gradient(135deg, #22d3ee, #6366f1, #a855f7);
}

.yourcount-lc__valuestrip-inner {
	border-radius: 13px;
	padding: 0.85rem 0.95rem;
	background: #f8fafc;
	display: grid;
	gap: 0.65rem;
}

@media (min-width: 560px) {
	.yourcount-lc__valuestrip-inner {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.75rem;
	}
}

.yourcount-lc__valueitem {
	display: flex;
	align-items: flex-start;
	gap: 0.55rem;
	font-size: 0.82rem;
	line-height: 1.4;
	color: #334155;
}

.yourcount-lc__valuenum {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.45rem;
	height: 1.45rem;
	border-radius: 8px;
	font-size: 0.78rem;
	font-weight: 900;
	color: #ffffff;
	background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.yourcount-lc__fineprint {
	margin: 0;
	font-size: 0.78rem;
	line-height: 1.45;
	color: #94a3b8;
}

.yourcount-lc__fields {
	display: grid;
	gap: 0.85rem;
	margin-top: 0.75rem;
}

.yourcount-lc__field span {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	margin-bottom: 0.35rem;
	color: #475569;
	letter-spacing: 0;
}

.yourcount-lc__field input {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	border: 1px solid #cbd5e1;
	font-size: 1rem;
	background: #fafafa;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.yourcount-lc__field input:focus {
	outline: none;
	border-color: rgba(99, 102, 241, 0.65);
	box-shadow: 0 0 0 4px rgba(129, 140, 248, 0.18);
	background: #ffffff;
}

.yourcount-lc__check {
	display: flex;
	gap: 0.55rem;
	align-items: flex-start;
	font-size: 0.88rem;
	color: #334155;
	line-height: 1.45;
}

.yourcount-lc__check input {
	margin-top: 0.2rem;
	accent-color: #6366f1;
	flex-shrink: 0;
}

.yourcount-lc__nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid #f1f5f9;
}

.yourcount-lc__nav-spacer {
	min-width: 1px;
	flex: 0;
}

.yourcount-lc__btn {
	border: none;
	border-radius: 12px;
	padding: 0.72rem 1.2rem;
	font-weight: 700;
	cursor: pointer;
	font-size: 0.95rem;
	transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.yourcount-lc__btn--primary {
	background: linear-gradient(90deg, #0ea5e9, #6366f1);
	color: #ffffff;
	box-shadow: 0 10px 22px rgba(79, 70, 229, 0.22);
}

.yourcount-lc__btn--primary:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 14px 28px rgba(79, 70, 229, 0.28);
}

.yourcount-lc__btn--primary:disabled {
	opacity: 0.65;
	cursor: not-allowed;
	transform: none;
}

.yourcount-lc__btn--ghost {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	color: #0f172a;
}

.yourcount-lc__btn--ghost:hover {
	background: #f1f5f9;
}

.yourcount-lc__btn--wide {
	width: 100%;
	justify-content: center;
	margin-top: 0.25rem;
}

.yourcount-lc__btn:focus-visible {
	outline: 3px solid rgba(99, 102, 241, 0.45);
	outline-offset: 2px;
}

.yourcount-lc__success {
	text-align: center;
}

.yourcount-lc__celebrate {
	position: relative;
	padding: 0.25rem 0 0.25rem;
}

.yourcount-lc__celebrate-ring {
	position: absolute;
	inset: -20px auto auto 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 120px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 65%);
	filter: blur(0px);
	pointer-events: none;
	opacity: 0.9;
}

.yourcount-lc__success-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 0.65rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	color: #ffffff;
	font-size: 1.35rem;
	font-weight: 900;
	box-shadow: 0 12px 24px rgba(22, 163, 74, 0.28);
}

@media (prefers-reduced-motion: reduce) {
	.yourcount-lc__btn:hover:not(:disabled),
	.yourcount-lc__option:hover {
		transform: none;
	}
}
