/* Why Analyst Relations — Analyst Influence Loop */
.kea-why-story-page .nv-page-title-wrap,
.kea-why-story-page .entry-header {
	display: none !important;
}

.kea-why-story-page .neve-main > .container,
.kea-why-story-page .neve-main > .container .col,
.kea-why-story-page .container.single-page-container,
.kea-why-story-page .nv-single-page-wrap,
.kea-why-story-page .entry-content {
	width: 100%;
	max-width: none !important;
	margin: 0;
	padding: 0;
}

.kea-why-story {
	--why-ink: #081b24;
	--why-ink-soft: #12333f;
	--why-paper: #f4efe6;
	--why-white: #fffdf9;
	--why-orange: #d56b31;
	--why-orange-bright: #ef8a50;
	--why-line-dark: rgba(255, 255, 255, .14);
	--why-line-light: rgba(8, 27, 36, .16);
	overflow: hidden;
	background: var(--why-white);
	color: var(--why-ink);
	font-family: var(--kea-body);
}

.kea-why-story *,
.kea-why-story *::before,
.kea-why-story *::after {
	box-sizing: border-box;
}

.kea-why-story button,
.kea-why-story a {
	-webkit-tap-highlight-color: transparent;
}

.kea-why-story button:focus-visible,
.kea-why-story a:focus-visible,
.kea-why-story [role="tabpanel"]:focus-visible {
	outline: 3px solid var(--why-orange-bright);
	outline-offset: 4px;
}

.kea-why-story__wrap {
	width: min(1160px, calc(100% - 48px));
	margin-inline: auto;
}

.kea-why-story__eyebrow {
	margin: 0 0 16px !important;
	color: var(--why-orange) !important;
	font-family: var(--kea-body);
	font-size: 12px !important;
	font-weight: 700;
	letter-spacing: .17em;
	line-height: 1.3;
	text-transform: uppercase;
}

.kea-why-story__eyebrow--light {
	color: #efa678 !important;
}

.kea-why-story__hero {
	position: relative;
	isolation: isolate;
	min-height: 700px;
	display: grid;
	align-items: center;
	overflow: hidden;
	background:
		radial-gradient(circle at 83% 28%, rgba(213, 107, 49, .22), transparent 26rem),
		linear-gradient(135deg, #071820 0%, var(--why-ink) 55%, #153a46 100%);
}

.kea-why-story__hero::before {
	content: "";
	position: absolute;
	z-index: -2;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
	background-size: 72px 72px;
	mask-image: linear-gradient(100deg, transparent 3%, #000 48%, #000);
}

.kea-why-story__hero::after {
	content: "INFLUENCE";
	position: absolute;
	z-index: -1;
	right: -2vw;
	bottom: -5vw;
	color: rgba(255,255,255,.027);
	font-family: var(--kea-display);
	font-size: clamp(7rem, 20vw, 19rem);
	font-weight: 500;
	letter-spacing: -.07em;
	line-height: .75;
	white-space: nowrap;
}

.kea-why-story__hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
	gap: clamp(48px, 8vw, 120px);
	align-items: end;
	padding-block: 110px;
}

.kea-why-story__hero h1 {
	max-width: 800px;
	margin: 0;
	color: #fff;
	font-family: var(--kea-display);
	font-size: clamp(4rem, 7.2vw, 7.7rem);
	font-weight: 500;
	letter-spacing: -.055em;
	line-height: .88;
	text-wrap: balance;
}

.kea-why-story__hero-copy {
	padding-bottom: 10px;
}

.kea-why-story__hero-copy > p {
	margin: 0 0 30px !important;
	color: rgba(255,255,255,.76) !important;
	font-family: var(--kea-display);
	font-size: clamp(1.2rem, 1.9vw, 1.58rem);
	line-height: 1.45;
}

.kea-why-story__button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 18px;
	border: 1px solid transparent;
	color: #fff !important;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.2;
	text-decoration: none !important;
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.kea-why-story__button:hover {
	transform: translateY(-2px);
}

.kea-why-story__button--orange {
	border-color: var(--why-orange);
	background: var(--why-orange);
}

.kea-why-story__button--orange:hover {
	border-color: var(--why-orange-bright);
	background: var(--why-orange-bright);
}

.kea-why-story__button span {
	font-size: 18px;
}

.kea-why-story__hero-orbit {
	position: absolute;
	z-index: -1;
	top: 3%;
	right: 1%;
	width: clamp(330px, 42vw, 650px);
	aspect-ratio: 1;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 50%;
	animation: kea-why-orbit 22s linear infinite;
}

.kea-why-story__hero-orbit::before,
.kea-why-story__hero-orbit::after {
	content: "";
	position: absolute;
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 50%;
}

.kea-why-story__hero-orbit::before { inset: 16%; }
.kea-why-story__hero-orbit::after { inset: 33%; }

.kea-why-story__hero-orbit span {
	position: absolute;
	z-index: 2;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--why-orange);
	box-shadow: 0 0 0 8px rgba(213,107,49,.12), 0 0 30px rgba(213,107,49,.65);
}

.kea-why-story__hero-orbit span:nth-child(1) { top: 7%; left: 48%; }
.kea-why-story__hero-orbit span:nth-child(2) { right: 4%; bottom: 35%; }
.kea-why-story__hero-orbit span:nth-child(3) { bottom: 10%; left: 24%; }

.kea-why-story__premise {
	background: var(--why-paper);
}

.kea-why-story__premise-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(60px, 9vw, 140px);
	align-items: end;
	padding-block: 100px;
}

.kea-why-story__premise h2,
.kea-why-story__loop-heading h2,
.kea-why-story__next h2 {
	margin: 0;
	font-family: var(--kea-display);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: .96;
	text-wrap: balance;
}

.kea-why-story__premise h2 {
	max-width: 680px;
	color: var(--why-ink);
	font-size: clamp(3rem, 5.5vw, 5.7rem);
}

.kea-why-story__premise-grid > div:last-child p {
	margin: 0 !important;
	color: #52636b !important;
	font-size: 17px;
	line-height: 1.72;
}

.kea-why-story__premise-grid > div:last-child p + p {
	margin-top: 18px !important;
	color: var(--why-ink) !important;
	font-weight: 600;
}

.kea-why-story__loop-section {
	position: relative;
	background:
		radial-gradient(circle at 16% 78%, rgba(213,107,49,.12), transparent 29rem),
		var(--why-ink);
	color: #fff;
	padding-block: 98px 118px;
}

.kea-why-story__loop-section::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
	background-size: 72px 72px;
}

.kea-why-story__loop-heading {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.35fr .65fr;
	gap: 50px;
	align-items: end;
	margin-bottom: 28px;
}

.kea-why-story__loop-heading h2 {
	max-width: 800px;
	color: #fff;
	font-size: clamp(2.8rem, 5vw, 5.2rem);
}

.kea-why-story__loop-heading > p {
	margin: 0 0 8px !important;
	color: rgba(255,255,255,.52) !important;
	font-size: 14px;
}

.kea-why-story__loop {
	position: relative;
	min-height: 820px;
}

.kea-why-story__track {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(720px, 66vw);
	height: min(720px, 66vw);
	overflow: visible;
	transform: translate(-50%, -50%) rotate(-90deg);
}

.kea-why-story__track circle {
	fill: none;
	stroke-width: 2;
}

.kea-why-story__track-base {
	stroke: rgba(255,255,255,.11);
}

.kea-why-story__track-progress {
	stroke: var(--why-orange);
	stroke-linecap: round;
	stroke-dasharray: 1772;
	stroke-dashoffset: 1477;
	transition: stroke-dashoffset .55s cubic-bezier(.2,.75,.25,1);
}

.kea-why-story__stages {
	position: absolute;
	inset: 0;
}

.kea-why-story__stage {
	position: absolute;
	z-index: 3;
	width: 112px;
	height: 112px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 1px;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
	background: var(--why-ink-soft);
	color: rgba(255,255,255,.65);
	font-family: var(--kea-body);
	cursor: pointer;
	transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
}

.kea-why-story__stage span {
	color: rgba(255,255,255,.42);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .1em;
}

.kea-why-story__stage strong {
	font-size: 12px;
	font-weight: 650;
}

.kea-why-story__stage:hover {
	border-color: var(--why-orange-bright);
	color: #fff;
	transform: scale(1.04);
}

.kea-why-story__stage[aria-selected="true"] {
	border-color: var(--why-orange);
	background: var(--why-orange);
	color: #fff;
	box-shadow: 0 0 0 9px rgba(213,107,49,.12), 0 16px 55px rgba(0,0,0,.26);
}

.kea-why-story__stage[aria-selected="true"] span {
	color: rgba(255,255,255,.72);
}

.kea-why-story__stage--1 { top: 2%; left: 50%; transform: translateX(-50%); }
.kea-why-story__stage--2 { top: 22%; right: 7%; }
.kea-why-story__stage--3 { right: 7%; bottom: 20%; }
.kea-why-story__stage--4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.kea-why-story__stage--5 { bottom: 20%; left: 7%; }
.kea-why-story__stage--6 { top: 22%; left: 7%; }
.kea-why-story__stage--1:hover,
.kea-why-story__stage--1[aria-selected="true"],
.kea-why-story__stage--4:hover,
.kea-why-story__stage--4[aria-selected="true"] { transform: translateX(-50%) scale(1.04); }

.kea-why-story__panel {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	width: min(500px, 45vw);
	min-height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 42px 48px;
	border: 1px solid rgba(255,255,255,.13);
	background: rgba(7,24,32,.86);
	box-shadow: 0 34px 100px rgba(0,0,0,.25);
	backdrop-filter: blur(15px);
	transform: translate(-50%, -50%);
}

.kea-why-story__panel-number {
	margin: 0 0 5px !important;
	color: rgba(255,255,255,.38) !important;
	font-family: var(--kea-display);
	font-size: 15px !important;
}

.kea-why-story__panel-number span {
	color: var(--why-orange-bright);
	font-size: 31px;
}

.kea-why-story__panel-label {
	margin: 0 0 18px !important;
	color: rgba(255,255,255,.55) !important;
	font-size: 11px !important;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.kea-why-story__panel h3 {
	margin: 0 0 16px;
	color: #fff;
	font-family: var(--kea-display);
	font-size: clamp(2rem, 3.3vw, 3.25rem);
	font-weight: 500;
	letter-spacing: -.035em;
	line-height: 1.02;
}

.kea-why-story__panel-copy {
	margin: 0 !important;
	color: rgba(255,255,255,.62) !important;
	font-size: 15px;
	line-height: 1.62;
}

.kea-why-story__panel-points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	margin-top: 26px;
	padding-top: 23px;
	border-top: 1px solid rgba(255,255,255,.12);
}

.kea-why-story__panel-points span {
	display: block;
	margin-bottom: 7px;
	color: #efa678;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.kea-why-story__panel-points p {
	margin: 0 !important;
	color: rgba(255,255,255,.68) !important;
	font-size: 12px;
	line-height: 1.5;
}

.kea-why-story__controls {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: 28px;
}

.kea-why-story__controls button {
	min-height: 44px;
	padding: 9px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: transparent;
	color: rgba(255,255,255,.62);
	font: inherit;
	font-size: 12px;
	font-weight: 650;
	cursor: pointer;
}

.kea-why-story__controls button:hover {
	color: #fff;
}

.kea-why-story__reframe {
	background: var(--why-white);
	padding-block: 110px;
}

.kea-why-story__statement {
	max-width: 1060px;
	margin: 0 !important;
	color: var(--why-ink) !important;
	font-family: var(--kea-display);
	font-size: clamp(2.5rem, 5vw, 5.25rem);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1.04;
	text-wrap: balance;
}

.kea-why-story__next {
	position: relative;
	background: var(--why-ink);
	color: #fff;
}

.kea-why-story__next-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(60px, 9vw, 130px);
	align-items: end;
	padding-block: 92px;
}

.kea-why-story__next h2 {
	color: #fff;
	font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.kea-why-story__next-grid > div:last-child > p {
	margin: 0 !important;
	color: rgba(255,255,255,.62) !important;
	font-size: 16px;
	line-height: 1.65;
}

.kea-why-story__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	margin-top: 30px;
}

.kea-why-story__text-link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	min-height: 44px;
	color: #fff !important;
	font-size: 13px;
	font-weight: 650;
	text-decoration: none !important;
}

.kea-why-story__text-link span {
	color: var(--why-orange-bright);
	transition: transform .2s ease;
}

.kea-why-story__text-link:hover span {
	transform: translateX(3px);
}

@keyframes kea-why-orbit {
	to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
	.kea-why-story__hero-grid,
	.kea-why-story__premise-grid,
	.kea-why-story__loop-heading,
	.kea-why-story__next-grid {
		grid-template-columns: 1fr;
	}

	.kea-why-story__hero {
		min-height: auto;
	}

	.kea-why-story__hero-grid {
		align-items: start;
		padding-block: 82px;
	}

	.kea-why-story__hero-copy {
		max-width: 630px;
	}

	.kea-why-story__loop {
		min-height: 760px;
	}

	.kea-why-story__track {
		width: 650px;
		height: 650px;
	}

	.kea-why-story__panel {
		width: 430px;
	}

	.kea-why-story__stage--2,
	.kea-why-story__stage--3 { right: 1%; }

	.kea-why-story__stage--5,
	.kea-why-story__stage--6 { left: 1%; }
}

@media (max-width: 700px) {
	.kea-why-story__wrap {
		width: min(100% - 32px, 1160px);
	}

	.kea-why-story__hero-grid {
		gap: 44px;
		padding-block: 64px 70px;
	}

	.kea-why-story__hero h1 {
		font-size: clamp(3.25rem, 17vw, 5rem);
	}

	.kea-why-story__hero-orbit {
		top: -3%;
		right: -45%;
		width: 430px;
		opacity: .7;
	}

	.kea-why-story__button {
		width: 100%;
	}

	.kea-why-story__premise-grid {
		gap: 34px;
		padding-block: 68px;
	}

	.kea-why-story__loop-section {
		padding-block: 68px 76px;
	}

	.kea-why-story__loop-heading {
		gap: 18px;
		margin-bottom: 38px;
	}

	.kea-why-story__loop {
		min-height: 0;
	}

	.kea-why-story__track {
		display: none;
	}

	.kea-why-story__stages {
		position: relative;
		display: grid;
		grid-template-columns: repeat(6, minmax(58px, 1fr));
		gap: 8px;
		margin: 0 -16px 22px;
		padding: 0 16px 13px;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.kea-why-story__stages::-webkit-scrollbar {
		display: none;
	}

	.kea-why-story__stage,
	.kea-why-story__stage--1,
	.kea-why-story__stage--2,
	.kea-why-story__stage--3,
	.kea-why-story__stage--4,
	.kea-why-story__stage--5,
	.kea-why-story__stage--6 {
		position: relative;
		inset: auto;
		width: 58px;
		height: 58px;
		transform: none;
	}

	.kea-why-story__stage:hover,
	.kea-why-story__stage[aria-selected="true"],
	.kea-why-story__stage--1:hover,
	.kea-why-story__stage--1[aria-selected="true"],
	.kea-why-story__stage--4:hover,
	.kea-why-story__stage--4[aria-selected="true"] {
		transform: none;
	}

	.kea-why-story__stage strong {
		display: none;
	}

	.kea-why-story__panel {
		position: relative;
		inset: auto;
		width: 100%;
		min-height: 0;
		padding: 29px 24px;
		transform: none;
	}

	.kea-why-story__panel h3 {
		font-size: clamp(2.05rem, 10vw, 3.2rem);
	}

	.kea-why-story__panel-points {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.kea-why-story__reframe {
		padding-block: 72px;
	}

	.kea-why-story__statement {
		font-size: clamp(2.25rem, 10vw, 3.6rem);
	}

	.kea-why-story__next-grid {
		gap: 34px;
		padding-block: 70px;
	}

	.kea-why-story__actions {
		display: grid;
		gap: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kea-why-story *,
	.kea-why-story *::before,
	.kea-why-story *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}
