/* ==========================================================================
   Hero Section widget — the site's signature dark hero, reusable.
   ========================================================================== */

.jcu-hero-w {
	--jcuh-accent: #e3a3cd;
	--jcuh-overlay: 0.9;
	position: relative;
	background:
		radial-gradient(800px 400px at 85% -20%, rgba(104, 38, 126, 0.35), transparent),
		linear-gradient(
			160deg,
			rgba(10, 10, 11, calc(var(--jcuh-overlay) + 0.03)),
			rgba(22, 18, 26, calc(var(--jcuh-overlay) - 0.02)) 60%,
			rgba(29, 21, 34, var(--jcuh-overlay))
		),
		#0a0a0b var(--jcuh-bg) center / cover no-repeat;
	color: #fff;
	padding: 4.5rem 0 5rem;
	overflow: hidden;
}

.jcu-hero-w__inner {
	max-width: 1250px;
	margin: 0 auto;
	padding: 0 1.25rem;
}

.jcu-hero-w--center .jcu-hero-w__inner {
	text-align: center;
}

.jcu-hero-w__kicker {
	display: inline-block;
	color: var(--jcuh-accent);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin-bottom: 0.9rem;
}

.jcu-hero-w__title {
	margin: 0 0 0.8rem;
	max-width: 820px;
	font-size: clamp(2rem, 5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.08;
	color: #fff;
}

.jcu-hero-w--center .jcu-hero-w__title {
	margin-left: auto;
	margin-right: auto;
}

.jcu-hero-w__desc {
	margin: 0;
	max-width: 640px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.08rem;
	line-height: 1.65;
}

.jcu-hero-w--center .jcu-hero-w__desc {
	margin-left: auto;
	margin-right: auto;
}

/* Fact chips */

.jcu-hero-w__chips {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.jcu-hero-w--center .jcu-hero-w__chips {
	justify-content: center;
}

.jcu-hero-w__chips li {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.85rem;
	font-weight: 600;
	padding: 0.45rem 1rem;
	border-radius: 999px;
}

/* Actions */

.jcu-hero-w__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.4rem;
	margin-top: 1.9rem;
}

.jcu-hero-w--center .jcu-hero-w__actions {
	justify-content: center;
}

.jcu-hero-w__btn {
	display: inline-block;
	background: #fff;
	color: #40173a !important;
	font-size: 0.95rem;
	font-weight: 800;
	text-decoration: none;
	padding: 0.7rem 1.7rem;
	border-radius: 999px;
	transition: transform 0.15s, box-shadow 0.2s;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.jcu-hero-w__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
}

.jcu-hero-w__link {
	color: #fff !important;
	font-size: 0.92rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 2px solid var(--jcuh-accent);
	padding-bottom: 0.2rem;
	transition: border-color 0.2s;
}

.jcu-hero-w__link:hover {
	border-color: #fff;
}
