/**
 * settle.css — Settlement enhancements: the "Terms applied" strip and the
 * large "vs 30% fee" comparison panel. Prefix .cvset-. Dark tokens hardcoded.
 * Enqueued only on the standalone settlement page.
 */

/* ============================================================== *
 * TERMS APPLIED — blue-tinted strip from the signed deal
 * ============================================================== */

.cvset-terms {
	border: 1px solid #22324a;
	border-radius: 14px;
	background: linear-gradient(160deg, #0f1726, #0b0f18);
	padding: 16px 18px;
	margin: 22px 0 4px;
}

.cvset-terms--none {
	border-color: #232a38;
	background: linear-gradient(160deg, #11131b, #0c0a11);
}

.cvset-terms__head {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 12px;
}

.cvset-terms__dot {
	width: 7px;
	height: 7px;
	border-radius: 2px;
	background: #9fb8ff;
	flex: 0 0 auto;
}

.cvset-terms--none .cvset-terms__dot {
	background: #6a6277;
}

.cvset-terms__title {
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #f4f1f7;
}

.cvset-terms__kicker {
	font-family: "Space Mono", monospace;
	font-size: 10px;
	color: #7f93b8;
	letter-spacing: 0.06em;
}

.cvset-terms--none .cvset-terms__kicker {
	color: #8b8398;
}

.cvset-terms__pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.cvset-pill {
	font-family: "Space Mono", monospace;
	font-size: 11px;
	line-height: 1.3;
	color: #cdd8f0;
	background: #0e1422;
	border: 1px solid #22324a;
	padding: 6px 12px;
	border-radius: 20px;
}

.cvset-terms--none .cvset-pill {
	color: #9a92a8;
	background: #0c0814;
	border-color: #232a38;
}

/* ============================================================== *
 * COMPARISON — "what the fee would have been" vs a 30% fee
 * ============================================================== */

.cvset-compare {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 24px;
	padding: 28px;
	border-radius: 18px;
	border: 1px solid #3a1f30;
	background: linear-gradient(120deg, #1a0f1a, #140b1c);
	box-shadow: inset 0 0 70px rgba(255, 45, 120, 0.06);
}

.cvset-compare__left {
	min-width: 0;
}

.cvset-compare__kicker {
	font-family: "Space Mono", monospace;
	font-size: 11px;
	color: #9a7fa8;
	letter-spacing: 0.14em;
	margin-bottom: 10px;
}

.cvset-compare__kicker--green {
	color: #7d9a88;
	letter-spacing: 0.12em;
}

.cvset-compare__headline {
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	font-size: 34px;
	color: #f4f1f7;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.cvset-compare__fee {
	color: #ff5594;
	text-shadow: 0 0 18px rgba(255, 45, 120, 0.5);
}

.cvset-compare__muted {
	color: #5a5266;
}

.cvset-compare__right {
	text-align: right;
	min-width: 0;
}

.cvset-compare__savings {
	font-family: "Space Grotesk", sans-serif;
	font-weight: 700;
	font-size: 44px;
	line-height: 1;
	color: #5ef0a8;
	margin-top: 6px;
}

.cvset-compare__caption {
	font-family: "Space Mono", monospace;
	font-size: 11px;
	color: #8b8398;
	margin-top: 6px;
}

/* ============================================================== *
 * RESPONSIVE
 * ============================================================== */

@media (max-width: 640px) {
	.cvset-compare {
		padding: 22px;
	}

	.cvset-compare__right {
		text-align: left;
	}

	.cvset-compare__headline {
		font-size: 28px;
	}

	.cvset-compare__savings {
		font-size: 38px;
	}
}
