.cwl-pricing__status {
	margin: 0 0 24px;
	padding: 14px 18px;
	border-radius: 8px;
	background: #ecfdf5;
	border: 1px solid #a7f3d0;
	color: #065f46;
}

.cwl-pricing__status--error {
	background: #fef2f2;
	border-color: #fecaca;
	color: #991b1b;
}

.cwl-pricing__status code {
	font-weight: 700;
	background: rgba(0, 0, 0, 0.06);
	padding: 2px 6px;
	border-radius: 4px;
}

.cwl-pricing__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.cwl-pricing__card {
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 28px 24px;
	background: #fff;
	display: flex;
	flex-direction: column;
}

.cwl-pricing__name {
	margin: 0 0 8px;
	font-size: 1.1rem;
}

.cwl-pricing__price {
	margin-bottom: 16px;
}

.cwl-pricing__amount {
	font-size: 2rem;
	font-weight: 700;
}

.cwl-pricing__interval {
	color: #6b7280;
}

.cwl-pricing__features {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	flex: 1;
}

.cwl-pricing__features li {
	padding: 6px 0;
	border-top: 1px solid #f3f4f6;
}

.cwl-pricing__features li:first-child {
	border-top: none;
}

.cwl-pricing__form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cwl-pricing__email {
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
}

.cwl-pricing__button {
	padding: 10px 16px;
	border-radius: 6px;
	border: none;
	background: #2a78d6;
	color: #fff;
	font-weight: 600;
	cursor: pointer;
}

.cwl-pricing__button:disabled {
	opacity: 0.6;
	cursor: default;
}

.cwl-account {
	max-width: 420px;
}

.cwl-account__form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.cwl-account__form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-weight: 600;
}

.cwl-account__form input {
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-weight: 400;
}

.cwl-account__summary {
	margin-top: 24px;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 24px;
	background: #fff;
}

.cwl-account__domains {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
}

.cwl-account__domains li {
	padding: 6px 0;
	border-top: 1px solid #f3f4f6;
}

.cwl-account__domains li:first-child {
	border-top: none;
}

.cwl-account__revoked {
	color: #991b1b;
}

.cwl-account__muted {
	color: #6b7280;
}

@media (prefers-color-scheme: dark) {
	.cwl-pricing__card {
		background: #1f2937;
		border-color: #374151;
	}

	.cwl-pricing__features li {
		border-top-color: #374151;
	}

	.cwl-pricing__interval {
		color: #9ca3af;
	}

	.cwl-account__summary {
		background: #1f2937;
		border-color: #374151;
	}

	.cwl-account__domains li {
		border-top-color: #374151;
	}

	.cwl-account__muted {
		color: #9ca3af;
	}
}
