:root {
	--color-ink: #170a4c;
	--color-deep-ink: #0f0445;
	--color-pink: #b53c72;
	--color-violet: #5641e0;
	--font-body: "Figtree", sans-serif;
	--font-display: "Polymath Display", sans-serif;
}

.pu-new-src-hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.pu-new-src-hero-container {
	padding-top: 120px;
	padding-bottom: 64px;
}

.pu-new-src-hero-row {
	min-height: 650px;
}

.pu-new-src-hero-content {
	padding-left: 42px;
	padding-right: 36px;
}

.pu-new-src-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 10px 24px;
	border: 1px solid transparent;
	border-radius: 28.88px;
	background: linear-gradient(var(--color-ink), var(--color-ink)) padding-box,
		linear-gradient(90deg, var(--color-pink), var(--color-violet)) border-box;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 135%;
}

/* CHANGED: Target class .pu-new-src-hero-title instead of tag h1 */
.pu-new-src-hero-content .pu-new-src-hero-title {
	max-width: 610px;
	margin: 25px 0 18px;
	color: var(--color-ink);
	font-family: var(--font-display);
	font-size: 64px;
	font-weight: 700;
	line-height: 106%;
}

.pu-new-src-hero-description {
	max-width: 570px;
	margin: 0;
	color: #000;
	font-family: var(--font-figtree);
	font-size: 20px;
	font-weight: 400;
	line-height: 140%;
}

.pu-new-src-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 29px;
}

.pu-new-src-mobile-actions {
	display: none;
}

/* Base Button Styling */
.pu-new-src-hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 53px;
	padding: 10px 24px;
	border-radius: 28.88px;
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 700;
	line-height: 130%;
	letter-spacing: 0.3px;
	text-decoration: none;
	/* UPDATED: Added background, border-color, and color to transitions */
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

/* Base Primary Button */
.pu-new-src-hero-button-primary {
	min-width: 257px;
	border: 1px solid transparent;
	background: linear-gradient(var(--color-ink), var(--color-ink)) padding-box,
		linear-gradient(90deg, var(--color-pink), var(--color-violet)) border-box;
	color: #fff;
}

/* Primary Button Hover State */
.pu-new-src-hero-button-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(86, 65, 224, 0.3);
	/* Inverts background to full gradient highlight on hover */
	background: linear-gradient(90deg, var(--color-pink), var(--color-violet)) padding-box,
		linear-gradient(90deg, var(--color-pink), var(--color-violet)) border-box;
	color: #fff;
}

/* Primary Button Active/Click State */
.pu-new-src-hero-button-primary:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(86, 65, 224, 0.2);
}


/* Base Secondary Button */
.pu-new-src-hero-button-secondary {
	min-width: 254px;
	border: 2px solid var(--color-deep-ink);
	color: var(--color-deep-ink);
	background: transparent;
}

/* Secondary Button Hover State */
.pu-new-src-hero-button-secondary:hover {
	transform: translateY(-3px);
	background-color: var(--color-deep-ink);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(15, 4, 69, 0.25);
}

/* Secondary Button Active/Click State */
.pu-new-src-hero-button-secondary:active {
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(15, 4, 69, 0.15);
}

.pu-new-src-hero-visual {
	display: flex;
	justify-content: center;
	padding: 10px 25px;
}

.pu-new-src-hero-image {
	display: block;
	width: min(100%, 650px);
	height: auto;
}