/* ─── Hero: gradient bottom fade into objectives ─────────────────── */
/* .ahrp-hero::after {
	height: 200px;
	background: linear-gradient(to bottom,
		transparent 0%,
		rgba(245, 248, 255, 0.55) 60%,
		rgba(245, 248, 255, 0.95) 100%);
	z-index: 5;
	pointer-events: none;
} */

/* Disable CSS Ken Burns so GSAP scroll zoom has sole control of transform */
.ahrp-hero-bg {
	animation: none;
}

/* Light hero: solid white on the left where text lives, photo shows on the right */
.ahrp-hero::before {
	background: linear-gradient(
		105deg,
		rgba(245, 248, 255, 0.97) 0%,
		rgba(245, 248, 255, 0.94) 38%,
		rgba(245, 248, 255, 0.55) 62%,
		rgba(245, 248, 255, 0) 82%
	) !important;
}

.ahrp-hero .ahrp-brand-line,
.ahrp-hero .ahrp-brand-line--sub {
	color: #010144;
}

/* Reduce the gap below CTAs so content fits without overflowing */
.ahrp-hero-cta {
	margin-bottom: 60px;
}

.ahrp-btn--outline-toggle {
	background: #fff;
	color: #5516a9;
	border: 1px solid rgba(85, 22, 169, 0.35);
}

/* ─── In-hero info bar — dark text on light background ───────────── */
.ahrp-hero-meta {
	display: flex;
	align-items: stretch;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(227, 234, 247, 0.9);
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 2rem;
	width: fit-content;
	max-width: 100%;
	box-shadow: 0 4px 20px rgba(10, 40, 78, 0.08);
}

.ahrp-hero-meta-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	color: #19104c;
}

.ahrp-hero-meta-icon {
	font-size: 1.2rem;
	background: linear-gradient(135deg, #c10085, #5516a9);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	flex-shrink: 0;
}

.ahrp-hero-meta-label {
	display: block;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: #8a97ac;
	line-height: 1;
	margin-bottom: 0.22rem;
}

.ahrp-hero-meta-value {
	display: block;
	font-size: 1.2rem;
	font-weight: 700;
	color: #19104c;
	white-space: normal;
}

.ahrp-hero-meta-value small {
	font-size: 70%;
	display:block;
	line-height: 1.8;
}

.ahrp-hero-meta-sep {
	width: 1px;
	background: rgba(227, 234, 247, 0.9);
	align-self: stretch;
	margin: 0.7rem 0;
	flex-shrink: 0;
}

@media (max-width: 575.98px) {
	.ahrp-hero-meta {
		flex-direction: column;
		width: 100%;
	}
	.ahrp-hero-meta-sep {
		width: auto;
		height: 1px;
		margin: 0 1rem;
		display:none;
	}
	.ahrp-hero-meta-item {
		padding: 0.85rem 1.25rem 0;
	}

	.ahrp-hero-zoom-layer {
		padding-top:5rem;
		padding-bottom:5rem;
	}
}

/* ─── Objectives pinned horizontal scroll ────────────────────────── */
.ahrp-objectives-panel {
	background: #f5f8ff;
}

.ahrp-objectives-sticky {
	display: flex;
	height: 100vh;
	overflow: hidden;
	
}

/* ─── Left panel ─────────────────────────────────────────────────── */
.ahrp-objectives-left {
	width: 320px;
	min-width: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 2.5rem 3rem 5%;
	background: #19104c;
	color: #fff;
	flex-shrink: 0;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

/* Decorative active-card icon */
.ahrp-obj-bg-icon {
	position: absolute;
	right: -2.5rem;
	bottom: -2.5rem;
	width: 15rem;
	height: 15rem;
	object-fit: contain;
	opacity: 0;
	filter: saturate(0.85);
	pointer-events: none;
	user-select: none;
	transition: opacity 0.65s ease;
}

.ahrp-obj-left-content {
	position: relative;
	z-index: 1;
}

.ahrp-obj-eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #ff8a1f;
	margin-bottom: 1rem;
	background: rgba(193, 0, 133, 0.15);
	padding: 0.28rem 0.75rem;
	border-radius: 999px;
}

/* Dynamic title — changes as cards scroll */
.ahrp-obj-live-title {
	font-size: clamp(1.2rem, 1.8vw, 1.65rem);
	font-weight: 700;
	color: #fff;
	line-height: 1.25;
	margin: 0 0 2rem;
	min-height: 2.6em;
}

.ahrp-obj-counter-row {
	display: flex;
	align-items: baseline;
	gap: 0.3rem;
	margin-bottom: 0.6rem;
}

.ahrp-obj-counter-num {
	font-size: 3.2rem;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	letter-spacing: -0.04em;
}

.ahrp-obj-counter-total {
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.35);
}

.ahrp-obj-progress-wrap {
	height: 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.12);
	overflow: hidden;
	width: 100%;
	max-width: 180px;
	margin-bottom: 1.5rem;
}

.ahrp-obj-progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #ff8a1f, #ff6a00);
	border-radius: 999px;
}

.ahrp-obj-scroll-indicator {
	display: none;
}

/* Dot navigation */
.ahrp-obj-dots {
	display: flex;
	gap: 0.45rem;
	flex-wrap: wrap;
}

.ahrp-obj-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	transition: width 0.35s ease, background 0.35s ease, border-radius 0.35s ease;
	cursor: default;
}

.ahrp-obj-dot.is-active {
	width: 22px;
	border-radius: 4px;
	background: #c10085;
}

/* ─── Right panel ────────────────────────────────────────────────── */
.ahrp-objectives-right {
	flex: 1;
	overflow: hidden;
	display: flex;
	align-items: center;
	position: relative;
	isolation: isolate;
	background:
		radial-gradient(circle, rgba(85, 22, 169, 0.055) 1px, transparent 1px),
		#f5f8ff;
	background-size: 26px 26px;
	border-style: solid;
	border-width: 1px 0 1px 0;
	border-color:#eaeaea;
}

.ahrp-obj-bg-icon--right {
	right: 0;
	bottom: 0;
	width: 50%;
	height: min(50vw, 100%);
	opacity: 0.1;
	filter: grayscale(1);
	z-index: -1;
	opacity: 0;
}

.ahrp-obj-bg-icon--right.is-active {
	opacity: 0.05;
}

.ahrp-objectives-track {
	display: flex;
	gap: 1.75rem;
	padding: 2.5rem 8rem 2.5rem 3.5rem;
	will-change: transform;
	position: relative;
	z-index: 1;
}

/* ─── Cards ──────────────────────────────────────────────────────── */
.ahrp-obj-card {
	flex: 0 0 clamp(330px, 31vw, 450px);
	background: #fff;
	border: 1px solid rgba(227, 234, 247, 0.8);
	border-radius: 14px;
	padding: 2.25rem 2rem 2rem;
	box-shadow: 0 8px 32px rgba(10, 40, 78, 0.07), 0 1px 4px rgba(10, 40, 78, 0.05);
	text-align: left;
	position: relative;
	overflow: hidden;
	opacity: 0;
	transform: translateY(20px);
}

/* Gradient top accent line */
.ahrp-obj-card-accent {
	display:none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, #ff8a1f 0%, #ff6a00 100%);
	border-radius: 24px 24px 0 0;
}

/* Large watermark number inside each card */
.ahrp-obj-card-num {
	position: absolute;
	top: 1rem;
	right: 1.25rem;
	font-size: 3.5rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.04em;
	color: rgba(85, 22, 169, 0.07);
	pointer-events: none;
	user-select: none;
}

.ahrp-obj-card img {
	height: 52px;
	margin-bottom: 1rem;
	display: block;
}

.ahrp-obj-card h3 {
	font-size: 1.12rem;
	font-weight: 700;
	color: #19104c;
	margin: 0 0 0.6rem;
	line-height: 1.3;
	max-width: 85%; /* don't overlap the watermark number */
}

.ahrp-obj-card p {
	font-size: 0.93rem;
	line-height: 1.65;
	color: #4b6178;
	margin: 0;
}

/* ─── Mobile fallback ────────────────────────────────────────────── */
@media (max-width: 767.98px) {
	.ahrp-hero::after {
		height: 120px;
	}



	.ahrp-module-card__description {
		margin-top:0px;
	}

	.ahrp-meta {
		margin-top: -2rem;
	}

	.ahrp-objectives-sticky {
		position: static;
		height: auto;
		flex-direction: column;
		overflow: visible;
	}

	.ahrp-objectives-left {
		width: 100%;
		min-width: 0;
		padding-top: 50px;
		padding: 2rem 5%;
		flex-direction: column;
	}

	.ahrp-obj-bg-icon {
		right: -1.5rem;
		bottom: -2rem;
		width: 11rem;
		height: 11rem;
		opacity: 0.12;
	}

	.ahrp-obj-bg-icon--right {
		right: 0;
		bottom: 0;
		width: 50%;
		height: 50vw;
		opacity: 0.08;
	}

	.ahrp-obj-progress-wrap {
		max-width: 100%;
		display:none;
	}

	.ahrp-obj-live-title {
		margin-bottom:0;
		min-height:auto;
	}

	.ahrp-obj-scroll-indicator {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 0.45rem;
		margin: 0.85rem auto 0.85rem;
		padding: 0.55rem 0.9rem;
		font-size: 0.72rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		text-transform: uppercase;
		color: #19104c;
		background: rgba(255, 255, 255, 0.82);
		border: 1px solid rgba(25, 16, 76, 0.12);
		border-radius: 999px;
		box-shadow: 0 8px 18px rgba(17, 26, 45, 0.08);
		width: fit-content;
	}

	.ahrp-obj-scroll-indicator i {
		font-size: 1rem;
		color: #ff8a1f;
		animation: ahrpScrollCue 1.3s ease-in-out infinite;
	}

	.ahrp-overview-copy br {
		display:none;
	}
	

	.ahrp-objectives-right {
		overflow-x: auto;
		overflow-y: visible;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
		background-size: 22px 22px;
	}

	.ahrp-objectives-right::-webkit-scrollbar { display: none; }

	.ahrp-objectives-track {
		padding: 1.5rem 5%;
	}

	.ahrp-obj-card {
		flex: 0 0 82vw;
		max-width: 340px;
		scroll-snap-align: start;
		opacity: 1;
		transform: none;
	}

	
}

@keyframes ahrpScrollCue {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
	.ahrp-obj-scroll-indicator i {
		animation: none;
	}
}

/* ─── General reveal helpers ─────────────────────────────────────── */
.ahrp-meta-card,
.ahrp-module-card,
.ahrp-overview-grid,
.ahrp-who__inner,
.ahrp-cta {
	will-change: transform, opacity;
}

/* ─── Module Overview: redesigned layout ────────────────────────── */
.ahrp-overview-grid {
	grid-template-columns: 1.25fr 1fr;
	gap: 4rem;
	align-items: center;
}

.ahrp-overview-copy {
	padding: 0;
	background: transparent;
	border: none;
	box-shadow: none;
	order: 1;
}

.ahrp-overview-media { order: 2; }

.ahrp-section-eyebrow {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #c10085;
	background: rgba(193, 0, 133, 0.09);
	padding: 0.28rem 0.75rem;
	border-radius: 999px;
	margin-bottom: 1rem;
}

.ahrp-overview-copy h2 {
	font-size: clamp(1.5rem, 2.4vw, 2.1rem);
	margin: 0 0 1.25rem;
	line-height: 1.2;
	color: #19104c;
}

.ahrp-overview-stats {
	display: flex;
	margin-top: 1rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid #e3eaf7;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(10, 40, 78, 0.06);
}

.ahrp-overview-stat {
	flex: 1;
	padding: 1.15rem 0.75rem;
	text-align: center;
	border-right: 1px solid #e3eaf7;
}

.ahrp-overview-stat:last-child { border-right: none; }

.ahrp-overview-stat-num {
	display: block;
	font-size: 2.2rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #c10085, #5516a9);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ahrp-overview-stat-label {
	display: block;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #8a97ac;
	margin-top: 0.3rem;
}

.ahrp-overview-img-wrap {
	position: relative;
}

.ahrp-overview-img-wrap img {
	border-radius: 14px;
	box-shadow: 0 20px 48px rgba(10, 40, 78, 0.14);
}

.ahrp-overview-badge {
	position: relative;
	background: linear-gradient(135deg, #5516a9, #c10085);
	color: #fff;
	border-radius: 14px;
	padding: 0.85rem 1.4rem;
	text-align: center;
	margin-top: 1rem;
	box-shadow: 0 10px 28px rgba(85, 22, 169, 0.4);
}

.ahrp-overview-badge-price {
	display: block;
	font-size: 1.5rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: -0.02em;
}

.ahrp-overview-badge-sub {
	display: block;
	font-size: 0.7rem;
	font-weight: 600;
	opacity: 0.85;
	margin-top: 0.2rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ahrp-overview-badge-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.55rem;
	padding: 0.78rem 1.78rem;
	border-radius: 14px;
	background: #fff;
	color: #5516a9;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 6px 14px rgba(9, 22, 44, 0.24);
}

.ahrp-overview-badge-cta:hover,
.ahrp-overview-badge-cta:focus {
	color: #4a128f;
	transform: translateY(-1px);
	box-shadow: 0 9px 18px rgba(9, 22, 44, 0.3);
}

@media (max-width: 991.98px) {
	.ahrp-overview-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.ahrp-overview-copy { order: 1; }
	.ahrp-overview-media { order: 2; }
	.ahrp-overview-badge {
		
	}
}

@media (max-width: 575.98px) {
	.ahrp-hero-meta-value {
		font-size: 1rem;
	}

	.ahrp-hero-meta-value br {
		display:none;
	}


}