/* Custom tweaks on top of Tailwind CDN */
/* Colors and utilities for consistent brand feel */
.brand-gradient {
	background-image: linear-gradient(135deg, #0ea5e9 0%, #22c55e 50%, #f59e0b 100%);
}
.text-gradient {
	background: linear-gradient(90deg, #0ea5e9, #22c55e);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.hero-overlay {
	background: radial-gradient(60% 60% at 50% 40%, rgba(14,165,233,0.25), rgba(34,197,94,0.15) 40%, rgba(0,0,0,0) 70%);
}
.container-narrow {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}
.shadow-soft {
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.badge {
	display: inline-block;
	border-radius: 9999px;
	padding: 0.125rem 0.5rem;
	font-size: 0.75rem;
	line-height: 1rem;
}
.section {
	padding-top: 3rem;
	padding-bottom: 3rem;
}


