.arena-venue-page {
	--arena-yellow: #f5d200;
	--arena-yellow-deep: #dfc000;
	--arena-ink: #171717;
	--arena-charcoal: #1b1919;
	--arena-charcoal-deep: #111;
	--arena-paper: #fff;
	--arena-paper-soft: #f4f5f7;
	--arena-line: #dfe2e7;
	--arena-muted: #63666d;
	--arena-shell: 1240px;
	overflow: hidden;
	background: var(--arena-paper);
	color: var(--arena-ink);
	font-family: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.arena-venue-page > nav.centurion-nav-breadcrumb.nv-breadcrumb.dc-lib {
	position: relative;
	top: auto;
}

.arena-venue-page *,
.arena-venue-page *::before,
.arena-venue-page *::after {
	box-sizing: border-box;
}

.arena-venue-page h1,
.arena-venue-page h2,
.arena-venue-page h3,
.arena-venue-page h4,
.arena-venue-page p,
.arena-venue-page ul,
.arena-venue-page figure,
.arena-venue-page blockquote {
	margin-top: 0;
}

.arena-venue-page h1,
.arena-venue-page h2,
.arena-venue-page h3,
.arena-venue-page h4 {
	font-family: Archivo, sans-serif;
	font-stretch: 84%;
}

.arena-shell {
	width: min(100%, var(--arena-shell));
	margin-inline: auto;
	padding-inline: 44px;
}

.arena-eyebrow {
	margin-bottom: 16px;
	color: var(--arena-yellow);
	font-family: Archivo, sans-serif;
	font-size: 11px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1.2;
	text-transform: uppercase;
}

.arena-rule {
	display: block;
	width: 48px;
	height: 4px;
	margin: 24px 0;
	background: var(--arena-yellow);
}

.arena-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.arena-button {
	display: inline-flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	min-height: 50px;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 2px;
	font-family: Archivo, sans-serif;
	font-size: 12px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.055em;
	line-height: 1.15;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.arena-button:hover,
.arena-button:focus {
	transform: translateY(-2px);
}

.arena-arrow {
	display: inline-block;
	width: 18px;
	height: auto;
	flex: 0 0 auto;
}

.arena-button--primary .arena-arrow,
.arena-button--dark .arena-arrow,
.arena-button--outline-dark .arena-arrow,
.arena-text-link--dark .arena-arrow,
.arena-risk__phase .arena-arrow {
	filter: brightness(0);
}

.arena-button--ghost .arena-arrow,
.arena-text-link .arena-arrow {
	filter: brightness(0) invert(1);
}

.arena-text-link.arena-text-link--dark .arena-arrow {
	filter: brightness(0);
}

.arena-button--primary:hover .arena-arrow,
.arena-button--dark:hover .arena-arrow,
.arena-button--dark:focus .arena-arrow {
	filter: brightness(0);
}

.arena-button--outline-dark:hover .arena-arrow,
.arena-button--outline-dark:focus .arena-arrow {
	filter: brightness(0) invert(1);
}

.arena-button--primary {
	background: var(--arena-yellow);
	color: var(--arena-ink);
}

.arena-button--primary:hover,
.arena-button--primary:focus {
	background: #fff;
	color: var(--arena-ink);
}

.arena-button--ghost {
	border-color: rgba(255, 255, 255, 0.6);
	color: #fff;
}

.arena-button--ghost:hover,
.arena-button--ghost:focus {
	border-color: #fff;
	background: #fff;
	color: var(--arena-ink);
}

.arena-button--dark {
	background: var(--arena-ink);
	color: #fff;
}

.arena-button--dark:hover,
.arena-button--dark:focus {
	background: #fff;
	color: var(--arena-ink);
}

.arena-button--outline-dark {
	border-color: rgba(23, 23, 23, 0.55);
	color: var(--arena-ink);
}

.arena-button--outline-dark:hover,
.arena-button--outline-dark:focus {
	border-color: var(--arena-ink);
	background: var(--arena-ink);
	color: #fff;
}

.arena-hero {
	position: relative;
	min-height: 620px;
	overflow: hidden;
	background: #080808;
	color: #fff;
	isolation: isolate;
}

.arena-hero__slides,
.arena-hero__slide {
	position: absolute;
	inset: 0;
}

.arena-hero__slide {
	z-index: -3;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	transform: scale(1.025);
	transition: opacity 900ms ease, transform 7s ease;
}

.arena-hero__slide.is-active {
	opacity: 1;
	transform: scale(1);
}

.arena-hero::before {
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(8, 8, 8, 0.97) 0%, rgba(8, 8, 8, 0.76) 42%, rgba(8, 8, 8, 0.12) 77%),
		linear-gradient(0deg, rgba(8, 8, 8, 0.48) 0%, transparent 42%);
	content: "";
	pointer-events: none;
}

.arena-hero__inner {
	position: relative;
	width: min(100%, var(--arena-shell));
	min-height: 520px;
	margin-inline: auto;
	padding: 68px 44px 88px;
}

.arena-hero__content {
	width: min(600px, 54vw);
}

.arena-hero__title {
	max-width: 620px;
	margin-bottom: 0;
	color: #fff;
	font-size: clamp(44px, 4.3vw, 66px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.98;
	text-wrap: balance;
}

.arena-hero__lead {
	max-width: 520px;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 17px;
	line-height: 1.6;
}

.arena-hero__controls,
.arena-hero__toggle {
	position: absolute;
	bottom: 28px;
	left: 44px;
}

.arena-hero__controls {
	display: flex;
	gap: 8px;
	align-items: center;
}

.arena-hero__toggle {
	z-index: 2;
}

.arena-hero__toggle[hidden] {
	display: none;
}

.arena-hero__toggle .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
	line-height: 1;
}

.arena-carousel-button {
	display: inline-flex;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.44);
	background: rgba(12, 12, 12, 0.48);
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease;
}

.arena-carousel-button:hover,
.arena-carousel-button:focus {
	border-color: var(--arena-yellow);
	background: rgba(12, 12, 12, 0.9);
}

.arena-carousel-button img {
	width: 22px;
	height: auto;
	filter: brightness(0) invert(1);
}

.arena-carousel-button--prev img {
	transform: rotate(180deg);
}

.arena-hero__dots {
	display: flex;
	gap: 7px;
	align-items: center;
	margin-left: 10px;
}

.arena-hero__dot {
	width: 28px;
	height: 3px;
	padding: 0;
	border: 0;
	background: rgba(255, 255, 255, 0.38);
	cursor: pointer;
	transition: background-color 160ms ease, width 160ms ease;
}

.arena-hero__dot.is-active {
	width: 42px;
	background: var(--arena-yellow);
}

.arena-hero__proof {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	min-height: 100px;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(12, 12, 12, 0.78);
	backdrop-filter: blur(8px);
}

.arena-hero__proof-inner {
	display: grid;
	width: min(100%, var(--arena-shell));
	min-height: 100px;
	grid-template-columns: repeat(4, 1fr);
	margin-inline: auto;
	padding-inline: 44px;
}

.arena-proof-item {
	display: flex;
	gap: 15px;
	align-items: center;
	padding: 20px 28px;
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.arena-proof-item:first-child {
	border-left: 0;
}

.arena-proof-item img {
	max-width: 44px;
	max-height: 42px;
	object-fit: contain;
}

.arena-proof-item > span:last-child {
	display: flex;
	flex-direction: column;
	color: rgba(255, 255, 255, 0.58);
	font-family: Archivo, sans-serif;
	font-size: 9px;
	font-stretch: 88%;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.25;
	text-transform: uppercase;
}

.arena-proof-item strong {
	color: #fff;
	font-size: 17px;
	font-weight: 800;
}

.arena-proof-item__number {
	color: #fff;
	font-family: Archivo, sans-serif;
	font-size: 27px;
	font-stretch: 84%;
	font-weight: 800;
	line-height: 1;
}

.arena-coverage {
	padding: 78px 0 0;
	background: var(--arena-paper);
}

.arena-context-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
	gap: clamp(48px, 7vw, 108px);
	align-items: start;
	margin-bottom: 34px;
}

.arena-context-heading h2 {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--arena-ink);
	font-size: clamp(38px, 3.45vw, 52px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.98;
	text-wrap: balance;
}

.arena-context-heading .arena-rule {
	width: 58px;
	height: 4px;
	margin: 22px 0 0;
}

.arena-context-heading > p {
	max-width: 430px;
	margin: 7px 0 0;
	color: var(--arena-muted);
	font-size: 16px;
	line-height: 1.62;
}

.arena-coverage__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arena-coverage__item {
	position: relative;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	background: var(--arena-charcoal-deep);
}

.arena-coverage__item + .arena-coverage__item {
	border-left: 3px solid var(--arena-paper);
}

.arena-coverage__image {
	display: block;
	width: 100%;
	height: 292px;
	object-fit: cover;
	filter: saturate(0.88) contrast(1.03);
	transition: filter 300ms ease, transform 420ms ease;
}

.arena-coverage__item:nth-child(1) .arena-coverage__image {
	object-position: 78% center;
}

.arena-coverage__item:nth-child(2) .arena-coverage__image {
	object-position: 83% center;
}

.arena-coverage__item:hover .arena-coverage__image {
	filter: saturate(1) contrast(1.05);
	transform: scale(1.025);
}

.arena-coverage__label {
	position: relative;
	display: flex;
	height: 66px;
	align-items: center;
	padding: 13px 20px 11px;
	border-top: 3px solid var(--arena-yellow);
	background: var(--arena-charcoal-deep);
}

.arena-coverage__label h3 {
	margin: 0;
	color: #fff;
	font-size: 19px;
	font-stretch: 88%;
	font-weight: 700;
	line-height: 1.1;
}

.arena-coverage__icon {
	position: absolute;
	top: 0;
	left: 20px;
	display: inline-flex;
	width: 36px;
	height: 36px;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--arena-yellow);
	border-radius: 50%;
	background: var(--arena-charcoal-deep);
	color: var(--arena-yellow);
	font-size: 18px;
	line-height: 32px;
	transform: translateY(-56%);
}

.arena-specific-risks {
	padding: 68px 0 82px;
	background: var(--arena-paper-soft);
}

.arena-context-heading--risks {
	margin-bottom: 28px;
}

.arena-context-heading--risks h2 {
	max-width: 780px;
	font-size: clamp(34px, 3vw, 46px);
}

.arena-context-heading--risks > p {
	margin-top: 4px;
}

.arena-specific-risks__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.arena-specific-risks__item {
	display: grid;
	min-width: 0;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 18px;
	padding: 27px 30px 28px;
	border-top: 1px solid #d4d7dc;
	border-left: 1px solid #d4d7dc;
}

.arena-specific-risks__item:nth-child(-n + 3) {
	border-top: 0;
}

.arena-specific-risks__item:nth-child(3n + 1) {
	border-left: 0;
	padding-left: 0;
}

.arena-specific-risks__item:nth-child(3n) {
	padding-right: 0;
}

.arena-specific-risks__icon {
	display: inline-flex;
	width: 50px;
	height: 50px;
	align-items: center;
	justify-content: center;
	color: var(--arena-ink);
	font-size: 36px;
	line-height: 1;
}

.arena-specific-risks__item h3 {
	margin: 1px 0 9px;
	color: var(--arena-ink);
	font-size: 18px;
	font-stretch: 88%;
	font-weight: 750;
	line-height: 1.15;
	text-wrap: balance;
}

.arena-specific-risks__item p {
	max-width: 290px;
	margin: 0;
	color: var(--arena-muted);
	font-size: 14px;
	line-height: 1.55;
}

.arena-operational {
	background: var(--arena-paper);
}

.arena-operational__feature {
	display: grid;
	min-height: 540px;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
	background: var(--arena-charcoal-deep);
}

.arena-operational__content {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 68px clamp(44px, 5.5vw, 88px) 70px max(44px, calc((100vw - var(--arena-shell)) / 2 + 44px));
	color: var(--arena-paper);
}

.arena-operational__content .arena-eyebrow {
	margin-bottom: 22px;
}

.arena-operational__content h2 {
	max-width: 540px;
	margin-bottom: 20px;
	color: var(--arena-paper);
	font-size: clamp(46px, 4.3vw, 64px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.02;
	text-wrap: balance;
}

.arena-operational__lead {
	max-width: 540px;
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 16px;
	line-height: 1.65;
}

.arena-operational__content .arena-rule {
	width: 48px;
	height: 4px;
	margin: 24px 0 22px;
}

.arena-operational__proof {
	max-width: 520px;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
	line-height: 1.55;
}

.arena-operational__link {
	display: inline-flex;
	gap: 22px;
	align-items: center;
	justify-content: space-between;
	min-width: min(100%, 360px);
	padding: 0 0 13px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.88);
	color: var(--arena-paper);
	font-family: Archivo, sans-serif;
	font-size: 12px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.3;
	text-transform: uppercase;
	transition: border-color 180ms ease, color 180ms ease;
}

.arena-operational__link .arena-arrow {
	flex: 0 0 auto;
	filter: brightness(0) saturate(100%) invert(76%) sepia(97%) saturate(1016%) hue-rotate(5deg) brightness(99%) contrast(104%);
	transition: transform 180ms ease;
}

.arena-operational__link:hover,
.arena-operational__link:focus {
	border-color: var(--arena-yellow);
	color: var(--arena-yellow);
}

.arena-operational__link:hover .arena-arrow,
.arena-operational__link:focus .arena-arrow {
	transform: translateX(4px);
}

.arena-operational__link:focus-visible {
	outline: 2px solid var(--arena-yellow);
	outline-offset: 7px;
}

.arena-operational__media {
	position: relative;
	min-width: 0;
	min-height: 540px;
	margin: 0;
	overflow: hidden;
	background: #181818;
}

.arena-operational__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 540px;
	object-fit: cover;
	object-position: 48% center;
}

.arena-operational__commitments {
	border-bottom: 1px solid var(--arena-line);
	background: var(--arena-paper);
}

.arena-operational__commitments-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arena-operational__commitment {
	min-width: 0;
	padding: 24px 30px 27px;
	border-left: 1px solid #d4d7dc;
}

.arena-operational__commitment:first-child {
	padding-left: 0;
	border-left: 0;
}

.arena-operational__commitment:last-child {
	padding-right: 0;
}

.arena-operational__number {
	display: block;
	margin-bottom: 7px;
	color: var(--arena-yellow-deep);
	font-family: Archivo, sans-serif;
	font-size: 34px;
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
}

.arena-operational__commitment p {
	max-width: 190px;
	margin: 0;
	color: var(--arena-ink);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.arena-risk {
	padding: 90px 0 96px;
	background: var(--arena-paper);
}

.arena-risk__grid {
	display: grid;
	grid-template-columns: 0.9fr 2.35fr;
	gap: clamp(44px, 6vw, 94px);
}

.arena-section-intro h2,
.arena-challenges__content h2 {
	margin-bottom: 0;
	color: var(--arena-ink);
	font-size: clamp(34px, 3.1vw, 48px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.02;
	text-wrap: balance;
}

.arena-section-intro p {
	margin-bottom: 14px;
	color: var(--arena-muted);
	font-size: 15.5px;
	line-height: 1.65;
}

.arena-risk__phases {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.arena-risk__phase h3 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 3px solid var(--arena-yellow);
	color: var(--arena-ink);
	font-size: 13px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.arena-risk__group + .arena-risk__group {
	margin-top: 22px;
}

.arena-risk__group h4 {
	margin-bottom: 8px;
	color: var(--arena-ink);
	font-size: 12px;
	font-weight: 800;
}

.arena-risk__group ul {
	margin: 0;
	list-style: none;
}

.arena-risk__group li {
	margin-bottom: 5px;
	color: var(--arena-muted);
	font-size: 13px;
	line-height: 1.4;
}

.arena-ecosystem {
	padding: 92px 0 96px;
	background: var(--arena-charcoal);
	color: #fff;
}

.arena-ecosystem__grid {
	display: grid;
	grid-template-columns: minmax(220px, 0.78fr) minmax(0, 2.5fr);
	gap: clamp(42px, 5vw, 82px);
	align-items: center;
}

.arena-section-intro--dark h2 {
	color: #fff;
}

.arena-section-intro--dark p {
	color: rgba(255, 255, 255, 0.66);
}

.arena-text-link {
	display: inline-flex;
	gap: 10px;
	align-items: center;
	margin-top: 12px;
	color: var(--arena-yellow);
	font-family: Archivo, sans-serif;
	font-size: 11px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

.arena-text-link:hover,
.arena-text-link:focus {
	color: #fff;
}

.arena-ecosystem__cards {
	display: grid;
	grid-template-columns: 0.88fr 1.52fr 0.88fr;
	grid-template-rows: repeat(2, 218px);
	gap: 12px;
}

.arena-ecosystem__card {
	position: relative;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: #0c0c0c;
}

.arena-ecosystem__card--maintenance {
	grid-row: 1 / span 2;
	grid-column: 2;
}

.arena-ecosystem__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.72) contrast(1.02);
	transition: transform 400ms ease, filter 400ms ease;
}

.arena-ecosystem__card:hover .arena-ecosystem__image {
	filter: saturate(0.9) contrast(1.05);
	transform: scale(1.035);
}

.arena-ecosystem__card--maintenance .arena-ecosystem__image {
	object-position: 70% center;
}

.arena-ecosystem__overlay {
	position: absolute;
	inset: auto 0 0;
	padding: 38px 16px 16px;
	background: linear-gradient(0deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0));
}

.arena-ecosystem__card--maintenance .arena-ecosystem__overlay {
	padding: 112px 22px 22px;
}

.arena-ecosystem__icon {
	width: 24px;
	height: 24px;
	margin-bottom: 8px;
	filter: brightness(0) saturate(100%) invert(79%) sepia(93%) saturate(1128%) hue-rotate(5deg) brightness(101%) contrast(102%);
	object-fit: contain;
}

.arena-ecosystem__overlay h3 {
	margin-bottom: 4px;
	color: var(--arena-yellow);
	font-size: 12px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.arena-ecosystem__overlay p {
	margin-bottom: 0;
	color: rgba(255, 255, 255, 0.74);
	font-size: 11px;
	line-height: 1.4;
}

.arena-ecosystem--v1 {
	padding: 0;
	background: #050505;
}

.arena-ecosystem--v1 .arena-ecosystem__plan {
	position: relative;
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
}

.arena-ecosystem--v1 .arena-ecosystem__plan-intro {
	position: absolute;
	top: 22.7%;
	left: 6.25%;
	z-index: 4;
	width: 27%;
	max-width: 430px;
}

.arena-ecosystem--v1 .arena-ecosystem__plan-intro h2 {
	font-size: clamp(44px, 3.45vw, 56px);
	line-height: 1.03;
	text-wrap: balance;
}

.arena-ecosystem--v1 .arena-ecosystem__plan-intro h2 span {
	display: block;
	white-space: nowrap;
}

.arena-ecosystem--v1 .arena-ecosystem__plan-intro p {
	max-width: 30ch;
	margin-bottom: 24px;
	font-size: clamp(14px, 1.05vw, 17px);
	line-height: 1.62;
}

.arena-ecosystem--v1 .arena-ecosystem__map {
	position: relative;
	min-height: 0;
	aspect-ratio: 1586 / 916;
	overflow: hidden;
	border: 0;
	background: #050505;
	isolation: isolate;
}

.arena-ecosystem--v1 .arena-ecosystem__venue {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
	background: #050505;
}

.arena-ecosystem--v1 .arena-ecosystem__venue img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.arena-ecosystem--v1 .arena-ecosystem__connectors {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.arena-ecosystem--v1 .arena-ecosystem__callouts {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.arena-ecosystem--v1 .arena-ecosystem__callout {
	position: absolute;
	width: 16%;
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.arena-ecosystem--v1 .arena-ecosystem__callout--fire {
	top: 12.4%;
	left: 29.3%;
}

.arena-ecosystem--v1 .arena-ecosystem__callout--access {
	top: 13.6%;
	right: 4.3%;
}

.arena-ecosystem--v1 .arena-ecosystem__callout--cctv {
	top: 51.4%;
	left: 34%;
}

.arena-ecosystem--v1 .arena-ecosystem__callout--perimeter {
	top: 72.3%;
	right: 3.7%;
	bottom: auto;
}

.arena-ecosystem--v1 .arena-ecosystem__callout--maintenance {
	top: 65.8%;
	bottom: auto;
	left: 29.1%;
	display: grid;
	width: 26.6%;
	height: 17.7%;
	grid-template-columns: 58% 42%;
	grid-template-rows: 1fr;
	padding: 0;
	border: 0;
	background: rgba(5, 5, 5, 0.82);
}

.arena-ecosystem--v1 .arena-ecosystem__maintenance-photo {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	grid-column: 2;
	grid-row: 1;
	object-fit: cover;
	object-position: 70% center;
}

.arena-ecosystem--v1 .arena-ecosystem__callout-body {
	min-width: 0;
}

.arena-ecosystem--v1 .arena-ecosystem__callout--maintenance .arena-ecosystem__callout-body {
	display: flex;
	grid-column: 1;
	grid-row: 1;
	flex-direction: column;
	justify-content: center;
	padding: 14% 7% 7%;
}

.arena-ecosystem--v1 .arena-ecosystem__callout-heading {
	margin-bottom: 8px;
}

.arena-ecosystem--v1 .arena-ecosystem__callout-icon {
	display: none;
}

.arena-ecosystem--v1 .arena-ecosystem__callout h3 {
	margin: 0;
	color: var(--arena-yellow);
	font-size: clamp(11px, 0.9vw, 14px);
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.15;
	text-transform: uppercase;
}

.arena-ecosystem--v1 .arena-ecosystem__callout p {
	margin: 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(11px, 0.88vw, 14px);
	line-height: 1.5;
}

.arena-ecosystem--v2 .arena-ecosystem__grid {
	grid-template-columns: 1fr;
	gap: 46px;
}

.arena-ecosystem--v2 .arena-section-intro {
	max-width: 740px;
}

.arena-ecosystem--v2 .arena-ecosystem__cards {
	grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
	grid-template-rows: repeat(4, 116px);
	gap: 1px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.22);
}

.arena-ecosystem--v2 .arena-ecosystem__card {
	border: 0;
}

.arena-ecosystem--v2 .arena-ecosystem__card--maintenance {
	grid-column: 1;
	grid-row: 1 / span 4;
}

.arena-ecosystem--v2 .arena-ecosystem__card--fire {
	grid-column: 2;
	grid-row: 1;
}

.arena-ecosystem--v2 .arena-ecosystem__card--access {
	grid-column: 2;
	grid-row: 2;
}

.arena-ecosystem--v2 .arena-ecosystem__card--cctv {
	grid-column: 2;
	grid-row: 3;
}

.arena-ecosystem--v2 .arena-ecosystem__card--perimeter {
	grid-column: 2;
	grid-row: 4;
}

.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) .arena-ecosystem__image {
	width: 38%;
}

.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) .arena-ecosystem__overlay {
	inset: 0 0 0 38%;
	display: grid;
	grid-template-columns: 28px minmax(0, 1fr);
	grid-template-rows: auto auto;
	column-gap: 10px;
	align-content: center;
	padding: 16px 20px;
	background: #171717;
}

.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) .arena-ecosystem__icon {
	grid-row: 1 / span 2;
	width: 20px;
	height: 20px;
	margin: 1px 0 0;
}

.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) h3 {
	font-size: 12px;
}

.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) p {
	font-size: 10.5px;
}

.arena-ecosystem--v3 .arena-ecosystem__grid {
	grid-template-columns: minmax(230px, 0.62fr) minmax(0, 1.38fr);
	gap: clamp(42px, 5vw, 74px);
	align-items: end;
}

.arena-ecosystem--v3 .arena-ecosystem__cards {
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: 256px 184px;
	gap: 10px;
}

.arena-ecosystem--v3 .arena-ecosystem__card--maintenance {
	grid-column: 1 / span 8;
	grid-row: 1;
}

.arena-ecosystem--v3 .arena-ecosystem__card--fire {
	grid-column: 9 / span 4;
	grid-row: 1;
}

.arena-ecosystem--v3 .arena-ecosystem__card--access {
	grid-column: 1 / span 4;
	grid-row: 2;
}

.arena-ecosystem--v3 .arena-ecosystem__card--cctv {
	grid-column: 5 / span 4;
	grid-row: 2;
}

.arena-ecosystem--v3 .arena-ecosystem__card--perimeter {
	grid-column: 9 / span 4;
	grid-row: 2;
}

.arena-ecosystem--v3 .arena-ecosystem__card--maintenance .arena-ecosystem__overlay {
	max-width: 540px;
	padding: 92px 24px 24px;
}

.arena-challenges {
	padding: 82px 0;
	background: var(--arena-paper);
}

.arena-challenges__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(50px, 7vw, 100px);
	align-items: center;
}

.arena-challenges__media {
	height: 470px;
	margin-bottom: 0;
	overflow: hidden;
}

.arena-challenges__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.arena-challenges__content .arena-eyebrow {
	margin-bottom: 14px;
}

.arena-challenges__content ul {
	display: grid;
	gap: 10px;
	margin: 28px 0 24px;
	list-style: none;
}

.arena-challenges__content li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: #34363a;
	font-size: 14px;
	line-height: 1.45;
}

.arena-challenges__content li > img {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	flex: 0 0 auto;
	filter: brightness(0) saturate(100%) invert(76%) sepia(97%) saturate(1016%) hue-rotate(5deg) brightness(99%) contrast(104%);
}

.arena-text-link--dark {
	color: var(--arena-ink);
}

.arena-text-link--dark:hover,
.arena-text-link--dark:focus {
	color: #8c7900;
}

.arena-featured {
	padding: 84px 0 92px;
	background: #fff;
}

.arena-featured__header {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(430px, 0.75fr);
	gap: clamp(48px, 7vw, 104px);
	align-items: end;
	margin-bottom: 42px;
}

.arena-featured__intro {
	max-width: 720px;
}

.arena-featured__intro .arena-eyebrow {
	margin-bottom: 15px;
}

.arena-featured__intro h2 {
	margin: 0;
	color: var(--arena-ink);
	font-size: clamp(44px, 4.4vw, 64px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 0.95;
	text-wrap: balance;
}

.arena-featured__intro .arena-rule {
	margin: 20px 0 18px;
}

.arena-featured__intro > p:last-child {
	max-width: 650px;
	margin: 0;
	color: var(--arena-muted);
	font-size: 16px;
	line-height: 1.55;
}

.arena-featured__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
	padding: 0;
	list-style: none;
}

.arena-featured__facts li {
	position: relative;
	display: flex;
	min-height: 116px;
	flex-direction: column;
	justify-content: center;
	padding: 0 24px;
	border-left: 1px solid #d5d8df;
}

.arena-featured__facts li::after {
	width: 36px;
	height: 3px;
	margin-top: 17px;
	background: var(--arena-yellow);
	content: "";
}

.arena-featured__facts strong,
.arena-featured__facts span {
	display: block;
	color: var(--arena-ink);
	font-family: Archivo, sans-serif;
}

.arena-featured__facts strong {
	font-size: clamp(31px, 3vw, 44px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 0.95;
}

.arena-featured__facts span {
	margin-top: 7px;
	color: var(--arena-muted);
	font-size: 12px;
	font-stretch: 92%;
	font-weight: 650;
	line-height: 1.2;
	text-transform: uppercase;
}

.arena-featured__slider {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	min-height: 560px;
	overflow: hidden;
	border: 1px solid #dfe2e8;
	background: #f4f5f7;
}

.arena-featured__media {
	min-width: 0;
	background: var(--arena-charcoal-deep);
}

.arena-featured__media-item {
	display: grid;
	height: 100%;
	grid-template-rows: minmax(0, 1fr) auto;
	margin: 0;
}

.arena-featured__media-item[hidden],
.arena-featured__slide[hidden] {
	display: none !important;
}

.arena-featured__media-item > img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 405px;
	object-fit: cover;
}

.arena-featured__media-item:first-child > img {
	object-position: center 48%;
}

.arena-featured__media-item:last-child > img {
	object-position: center 44%;
}

.arena-featured__media-item figcaption {
	padding: 23px 34px 25px;
	background: var(--arena-charcoal-deep);
}

.arena-featured__media-item ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.arena-featured__media-item li {
	padding-left: 13px;
	border-left: 3px solid var(--arena-yellow);
	color: #fff;
	font-family: Archivo, sans-serif;
	font-size: 14px;
	font-stretch: 86%;
	font-weight: 750;
	line-height: 1.25;
}

.arena-featured__panel {
	display: flex;
	min-width: 0;
	min-height: 560px;
	flex-direction: column;
	padding: 28px 38px 0;
	background: #f4f5f7;
}

.arena-featured__controls {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	margin-bottom: 31px;
}

.arena-featured__arrows {
	display: flex;
	gap: 7px;
}

.arena-featured__arrows button {
	display: inline-flex;
	width: 42px;
	height: 42px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid #b9bec8;
	background: transparent;
	color: var(--arena-ink);
	cursor: pointer;
	transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.arena-featured__arrows button:hover,
.arena-featured__arrows button:focus-visible {
	border-color: var(--arena-ink);
	background: var(--arena-ink);
	color: #fff;
}

.arena-featured__arrows .dashicons {
	width: 20px;
	height: 20px;
	font-size: 20px;
	line-height: 1;
}

.arena-featured__tabs {
	display: grid;
	min-width: 0;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.arena-featured__tabs button {
	min-height: 42px;
	padding: 0 0 9px;
	border: 0;
	border-bottom: 3px solid #d4d7de;
	background: transparent;
	color: #70757f;
	font-family: Archivo, sans-serif;
	font-size: 12px;
	font-stretch: 86%;
	font-weight: 750;
	line-height: 1.2;
	text-align: left;
	cursor: pointer;
	transition: border-color 160ms ease, color 160ms ease;
}

.arena-featured__tabs button:hover,
.arena-featured__tabs button:focus-visible {
	color: var(--arena-ink);
}

.arena-featured__tabs button.is-active {
	border-bottom-color: var(--arena-yellow);
	color: var(--arena-ink);
}

.arena-featured__slides {
	display: flex;
	min-height: 0;
	flex: 1;
}

.arena-featured__slide {
	display: flex;
	width: 100%;
	min-height: 0;
	flex-direction: column;
}

.arena-featured__slide h3 {
	margin: 0 0 6px;
	color: var(--arena-ink);
	font-size: clamp(31px, 3vw, 42px);
	font-stretch: 84%;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 0.98;
	text-wrap: balance;
}

.arena-featured__subtitle {
	margin: 0 0 14px;
	color: var(--arena-muted);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.arena-featured__venues {
	margin: 0 0 17px;
	padding-bottom: 16px;
	border-bottom: 1px solid #ccd0d8;
	color: #525862;
	font-size: 13px;
	line-height: 1.45;
}

.arena-featured__systems {
	margin: 0 0 18px;
	padding: 0;
	border-top: 1px solid #d7dae0;
	list-style: none;
}

.arena-featured__systems li {
	display: grid;
	min-height: 49px;
	grid-template-columns: 30px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	border-bottom: 1px solid #d7dae0;
	color: var(--arena-ink);
	font-family: Archivo, sans-serif;
	font-size: 13px;
	font-stretch: 92%;
	font-weight: 650;
	line-height: 1.25;
}

.arena-featured__systems img {
	display: block;
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.arena-featured__systems .dashicons {
	width: 23px;
	height: 23px;
	font-size: 23px;
	line-height: 1;
}

.arena-featured__link {
	display: inline-flex;
	gap: 9px;
	align-items: center;
	align-self: flex-start;
	margin-top: auto;
	padding: 0 0 7px;
	border-bottom: 3px solid var(--arena-yellow);
	color: var(--arena-ink);
	font-family: Archivo, sans-serif;
	font-size: 12px;
	font-stretch: 88%;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.2;
	text-decoration: none;
}

.arena-featured__link:hover,
.arena-featured__link:focus-visible {
	color: #555;
}

.arena-featured__link .dashicons {
	width: 17px;
	height: 17px;
	font-size: 17px;
	line-height: 1;
}

.arena-featured__progress {
	height: 4px;
	margin: 22px -38px 0;
	overflow: hidden;
	background: #cfd3da;
}

.arena-featured__progress span {
	display: block;
	width: 50%;
	height: 100%;
	background: var(--arena-yellow);
	transform: translateX(0);
	transition: transform 320ms ease;
}

@media (max-width: 1080px) {
	.arena-featured__header {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.arena-featured__facts {
		max-width: 650px;
	}

	.arena-featured__slider {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	}

	.arena-featured__controls {
		grid-template-columns: auto 1fr;
	}

	.arena-featured__tabs {
		grid-column: 1 / -1;
	}
}

@media (max-width: 800px) {
	.arena-featured {
		padding: 68px 0 74px;
	}

	.arena-featured__slider {
		grid-template-columns: 1fr;
	}

	.arena-featured__media-item > img {
		height: 360px;
		min-height: 0;
	}

	.arena-featured__panel {
		min-height: 540px;
	}
}

@media (max-width: 640px) {
	.arena-featured {
		padding: 58px 0 62px;
	}

	.arena-featured__header {
		gap: 26px;
		margin-bottom: 30px;
	}

	.arena-featured__intro h2 {
		font-size: clamp(37px, 11vw, 48px);
	}

	.arena-featured__intro > p:last-child {
		font-size: 14px;
	}

	.arena-featured__facts li {
		min-height: 90px;
		padding: 0 11px;
	}

	.arena-featured__facts strong {
		font-size: 28px;
	}

	.arena-featured__facts span {
		font-size: 9px;
	}

	.arena-featured__facts li::after {
		width: 24px;
		margin-top: 12px;
	}

	.arena-featured__media-item > img {
		height: 260px;
	}

	.arena-featured__media-item figcaption {
		padding: 20px 22px 22px;
	}

	.arena-featured__media-item ul {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.arena-featured__panel {
		min-height: 570px;
		padding: 23px 22px 0;
	}

	.arena-featured__controls {
		gap: 13px;
		margin-bottom: 27px;
	}

	.arena-featured__arrows {
		justify-self: end;
	}

	.arena-featured__arrows button {
		width: 40px;
		height: 40px;
	}

	.arena-featured__tabs {
		gap: 13px;
	}

	.arena-featured__tabs button {
		font-size: 10.5px;
	}

	.arena-featured__slide h3 {
		font-size: 31px;
	}

	.arena-featured__venues {
		font-size: 12px;
	}

	.arena-featured__systems li {
		font-size: 12.5px;
	}

	.arena-featured__progress {
		margin-right: -22px;
		margin-left: -22px;
	}
}

.arena-testimonial {
	display: grid;
	grid-template-columns: minmax(0, 3fr) minmax(390px, 2fr);
	min-height: 220px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	border-bottom: 1px solid rgba(255, 255, 255, 0.16);
	background: var(--arena-charcoal-deep);
}

.arena-testimonial__content {
	display: flex;
	align-items: center;
	padding: 34px clamp(30px, 4vw, 60px) 34px max(44px, calc((100vw - var(--arena-shell)) / 2 + 44px));
}

.arena-testimonial blockquote {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 20px;
	align-items: start;
	width: 100%;
	max-width: 650px;
	margin: 0;
	padding: 0;
	border: 0;
}

.arena-testimonial__quote-mark {
	color: var(--arena-yellow);
	font-family: Georgia, serif;
	font-size: 60px;
	font-weight: 700;
	line-height: 0.76;
}

.arena-testimonial blockquote p {
	max-width: 600px;
	margin: 0 0 11px;
	color: #fff;
	font-family: Archivo, sans-serif;
	font-size: clamp(16px, 1.4vw, 19px);
	font-stretch: 84%;
	font-weight: 700;
	letter-spacing: -0.015em;
	line-height: 1.3;
}

.arena-testimonial cite {
	color: var(--arena-yellow);
	font-family: Archivo, sans-serif;
	font-size: 10px;
	font-stretch: 88%;
	font-style: normal;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.4;
	text-transform: uppercase;
}

.arena-testimonial cite span {
	padding-inline: 7px;
}

.arena-testimonial cite::before {
	content: none;
}

.arena-testimonial__media {
	position: relative;
	height: 220px;
	min-height: 220px;
	margin: 0;
	overflow: hidden;
	background: #191919;
}

.arena-testimonial__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		var(--arena-charcoal-deep) 0%,
		rgba(17, 17, 17, 0.9) 8%,
		rgba(17, 17, 17, 0.5) 18%,
		rgba(17, 17, 17, 0.16) 30%,
		rgba(0, 0, 0, 0.1) 100%
	);
	content: "";
	pointer-events: none;
}

.arena-testimonial__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	object-position: center 55%;
}

@media (max-width: 1024px) {
	.arena-hero__content {
		width: min(620px, 68vw);
	}

	.arena-context-heading {
		grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
		gap: 42px;
	}

	.arena-coverage__image {
		height: 250px;
	}

	.arena-specific-risks__item {
		grid-template-columns: 46px minmax(0, 1fr);
		gap: 14px;
		padding-inline: 22px;
	}

	.arena-specific-risks__icon {
		width: 42px;
		height: 42px;
		font-size: 31px;
	}

	.arena-operational__feature {
		min-height: 500px;
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
	}

	.arena-operational__content {
		padding: 56px 44px;
	}

	.arena-operational__content h2 {
		font-size: clamp(42px, 5vw, 54px);
	}

	.arena-operational__media,
	.arena-operational__media img {
		min-height: 500px;
	}

	.arena-operational__commitment {
		padding-inline: 22px;
	}

	.arena-risk__grid,
	.arena-ecosystem__grid {
		grid-template-columns: 1fr;
	}

	.arena-section-intro {
		max-width: 720px;
	}

	.arena-ecosystem__cards {
		max-width: 850px;
	}

	.arena-ecosystem--v2 .arena-ecosystem__cards,
	.arena-ecosystem--v3 .arena-ecosystem__cards {
		max-width: none;
	}

	.arena-ecosystem--v3 .arena-ecosystem__grid {
		grid-template-columns: 1fr;
	}

	.arena-proof-item {
		padding-inline: 18px;
	}

	.arena-challenges__media {
		height: 410px;
	}
}

@media (max-width: 800px) {
	.arena-shell,
	.arena-hero__inner,
	.arena-hero__proof-inner {
		padding-inline: 26px;
	}

	.arena-context-heading {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.arena-context-heading > p {
		margin-top: 0;
	}

	.arena-coverage__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3px;
		background: var(--arena-paper);
	}

	.arena-coverage__item + .arena-coverage__item {
		border-left: 0;
	}

	.arena-specific-risks__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arena-specific-risks__item,
	.arena-specific-risks__item:nth-child(3n + 1),
	.arena-specific-risks__item:nth-child(3n) {
		padding: 25px 22px;
		border-top: 1px solid #d4d7dc;
		border-left: 1px solid #d4d7dc;
	}

	.arena-specific-risks__item:nth-child(-n + 2) {
		border-top: 0;
	}

	.arena-specific-risks__item:nth-child(odd) {
		padding-left: 0;
		border-left: 0;
	}

	.arena-specific-risks__item:nth-child(even) {
		padding-right: 0;
	}

	.arena-operational__feature {
		grid-template-columns: 1fr;
	}

	.arena-operational__content {
		min-height: 500px;
		padding: 62px 44px 64px;
	}

	.arena-operational__media,
	.arena-operational__media img {
		min-height: 420px;
	}

	.arena-operational__commitments-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.arena-operational__commitment,
	.arena-operational__commitment:first-child,
	.arena-operational__commitment:last-child {
		padding: 24px 26px 26px;
		border-top: 1px solid #d4d7dc;
		border-left: 1px solid #d4d7dc;
	}

	.arena-operational__commitment:nth-child(-n + 2) {
		border-top: 0;
	}

	.arena-operational__commitment:nth-child(odd) {
		padding-left: 0;
		border-left: 0;
	}

	.arena-operational__commitment:nth-child(even) {
		padding-right: 0;
	}

	.arena-hero {
		min-height: 680px;
	}

	.arena-hero__inner {
		min-height: 540px;
		padding-top: 62px;
	}

	.arena-hero__content {
		width: min(610px, 86vw);
	}

	.arena-hero__title {
		font-size: clamp(42px, 7vw, 58px);
	}

	.arena-hero__controls,
	.arena-hero__toggle {
		bottom: 28px;
		left: 26px;
	}

	.arena-hero__proof {
		min-height: 140px;
	}

	.arena-hero__proof-inner {
		min-height: 140px;
		grid-template-columns: repeat(2, 1fr);
	}

	.arena-proof-item {
		padding: 14px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.arena-proof-item:nth-child(odd) {
		border-left: 0;
	}

	.arena-risk__phases {
		grid-template-columns: 1fr;
	}

	.arena-risk__phase {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px 28px;
	}

	.arena-risk__phase h3 {
		grid-column: 1 / -1;
	}

	.arena-risk__group + .arena-risk__group {
		margin-top: 0;
	}

	.arena-challenges__grid {
		grid-template-columns: 1fr;
	}

	.arena-challenges__media {
		height: 420px;
	}

	.arena-testimonial {
		grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
	}

	.arena-testimonial__content {
		padding-left: 44px;
	}

}

@media (max-width: 640px) {
	.arena-shell,
	.arena-hero__inner,
	.arena-hero__proof-inner {
		padding-inline: 22px;
	}

	.arena-coverage {
		padding-top: 62px;
	}

	.arena-context-heading {
		margin-bottom: 26px;
	}

	.arena-context-heading h2,
	.arena-context-heading--risks h2 {
		font-size: clamp(34px, 10vw, 42px);
	}

	.arena-context-heading > p {
		font-size: 15px;
	}

	.arena-coverage__image {
		height: 210px;
	}

	.arena-coverage__label {
		height: 60px;
		padding-inline: 16px;
	}

	.arena-coverage__label h3 {
		font-size: 16px;
	}

	.arena-coverage__icon {
		left: 16px;
		width: 32px;
		height: 32px;
		font-size: 16px;
		line-height: 28px;
	}

	.arena-specific-risks {
		padding-block: 60px 66px;
	}

	.arena-specific-risks__grid {
		grid-template-columns: 1fr;
	}

	.arena-specific-risks__item,
	.arena-specific-risks__item:nth-child(3n + 1),
	.arena-specific-risks__item:nth-child(3n),
	.arena-specific-risks__item:nth-child(odd),
	.arena-specific-risks__item:nth-child(even) {
		grid-template-columns: 44px minmax(0, 1fr);
		padding: 23px 0;
		border-top: 1px solid #d4d7dc;
		border-left: 0;
	}

	.arena-specific-risks__item:first-child {
		border-top: 0;
	}

	.arena-specific-risks__item h3 {
		font-size: 17px;
	}

	.arena-specific-risks__item p {
		max-width: none;
	}

	.arena-operational__content {
		min-height: auto;
		padding: 58px 22px 60px;
	}

	.arena-operational__content .arena-eyebrow {
		margin-bottom: 17px;
	}

	.arena-operational__content h2 {
		max-width: 460px;
		margin-bottom: 18px;
		font-size: clamp(40px, 12vw, 50px);
	}

	.arena-operational__lead {
		font-size: 15px;
	}

	.arena-operational__proof {
		font-size: 13.5px;
	}

	.arena-operational__link {
		width: 100%;
		min-width: 0;
	}

	.arena-operational__media,
	.arena-operational__media img {
		min-height: 310px;
	}

	.arena-operational__media img {
		object-position: 46% center;
	}

	.arena-operational__commitments-grid {
		grid-template-columns: 1fr;
	}

	.arena-operational__commitment,
	.arena-operational__commitment:first-child,
	.arena-operational__commitment:last-child,
	.arena-operational__commitment:nth-child(odd),
	.arena-operational__commitment:nth-child(even) {
		display: grid;
		grid-template-columns: 54px minmax(0, 1fr);
		gap: 16px;
		align-items: center;
		padding: 20px 0;
		border-top: 1px solid #d4d7dc;
		border-left: 0;
	}

	.arena-operational__commitment:first-child {
		border-top: 0;
	}

	.arena-operational__number {
		margin-bottom: 0;
		font-size: 31px;
	}

	.arena-operational__commitment p {
		max-width: none;
	}

	.arena-hero {
		min-height: 820px;
	}

	.arena-hero::before {
		background:
			linear-gradient(0deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.55) 68%, rgba(8, 8, 8, 0.28) 100%),
			linear-gradient(90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.22));
	}

	.arena-hero__slide {
		background-position: 62% center;
	}

	.arena-hero__inner {
		min-height: 620px;
		padding-top: 50px;
		padding-bottom: 84px;
	}

	.arena-hero__content {
		width: 100%;
	}

	.arena-hero__title {
		font-size: clamp(39px, 12vw, 52px);
		line-height: 1;
	}

	.arena-hero__lead {
		font-size: 15px;
	}

	.arena-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.arena-button {
		width: 100%;
	}

	.arena-hero__controls,
	.arena-hero__toggle {
		bottom: 26px;
		left: 22px;
	}

	.arena-hero__proof {
		min-height: 200px;
	}

	.arena-hero__proof-inner {
		min-height: 200px;
	}

	.arena-proof-item {
		gap: 10px;
		padding: 12px 8px;
	}

	.arena-proof-item img {
		max-width: 34px;
		max-height: 34px;
	}

	.arena-proof-item strong {
		font-size: 14px;
	}

	.arena-proof-item__number {
		font-size: 23px;
	}

	.arena-risk,
	.arena-challenges {
		padding-block: 68px;
	}

	.arena-risk__grid {
		gap: 52px;
	}

	.arena-risk__phase {
		grid-template-columns: 1fr;
	}

	.arena-risk__phase h3 {
		grid-column: auto;
	}

	.arena-risk__group + .arena-risk__group {
		margin-top: 10px;
	}

	.arena-ecosystem {
		padding-block: 66px;
	}

	.arena-ecosystem__cards {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
	}

	.arena-ecosystem__card {
		min-height: 220px;
	}

	.arena-ecosystem__card--maintenance {
		min-height: 340px;
		grid-row: auto;
		grid-column: 1 / -1;
		order: -1;
	}

	.arena-ecosystem--v2 .arena-ecosystem__cards,
	.arena-ecosystem--v3 .arena-ecosystem__cards {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
		gap: 12px;
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.arena-ecosystem--v2 .arena-ecosystem__card,
	.arena-ecosystem--v3 .arena-ecosystem__card {
		min-height: 220px;
		grid-column: auto;
		grid-row: auto;
		border: 1px solid rgba(255, 255, 255, 0.28);
	}

	.arena-ecosystem--v2 .arena-ecosystem__card--maintenance,
	.arena-ecosystem--v3 .arena-ecosystem__card--maintenance {
		min-height: 340px;
		grid-column: 1 / -1;
		order: -1;
	}

	.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) .arena-ecosystem__image {
		width: 100%;
	}

	.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) .arena-ecosystem__overlay {
		position: absolute;
		inset: auto 0 0;
		display: block;
		padding: 38px 16px 16px;
		background: linear-gradient(0deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0));
	}

	.arena-ecosystem--v2 .arena-ecosystem__card:not(.arena-ecosystem__card--maintenance) .arena-ecosystem__icon {
		width: 24px;
		height: 24px;
		margin: 0 0 8px;
	}

	.arena-ecosystem__overlay p {
		font-size: 12px;
	}

	.arena-challenges__media {
		height: 310px;
	}

	.arena-testimonial {
		grid-template-columns: 1fr;
	}

	.arena-testimonial__content {
		padding: 38px 22px;
	}

	.arena-testimonial blockquote {
		grid-template-columns: 32px minmax(0, 1fr);
		gap: 14px;
	}

	.arena-testimonial__quote-mark {
		font-size: 58px;
	}

	.arena-testimonial blockquote p {
		font-size: 17px;
	}

	.arena-testimonial__media,
	.arena-testimonial__media img {
		height: 220px;
		min-height: 220px;
	}

	.arena-testimonial__media::after {
		background: linear-gradient(
			180deg,
			var(--arena-charcoal-deep) 0%,
			rgba(17, 17, 17, 0.62) 13%,
			rgba(17, 17, 17, 0.16) 30%,
			rgba(0, 0, 0, 0.08) 100%
		);
	}
}

@media (max-width: 440px) {
	.arena-coverage__grid {
		grid-template-columns: 1fr;
	}

	.arena-coverage__image {
		height: 235px;
	}

	.arena-ecosystem__cards {
		grid-template-columns: 1fr;
	}

	.arena-ecosystem--v2 .arena-ecosystem__cards,
	.arena-ecosystem--v3 .arena-ecosystem__cards {
		grid-template-columns: 1fr;
	}

	.arena-ecosystem__card--maintenance,
	.arena-ecosystem--v2 .arena-ecosystem__card--maintenance,
	.arena-ecosystem--v3 .arena-ecosystem__card--maintenance {
		grid-column: auto;
	}
}

@media (max-width: 960px) {
	.arena-ecosystem--v1 {
		padding-block: 78px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan {
		width: min(100%, var(--arena-shell));
		margin-inline: auto;
		padding-inline: 44px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan-intro {
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		max-width: 720px;
		margin-bottom: 42px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan-intro h2 {
		max-width: 760px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan-intro p {
		max-width: 52ch;
	}

	.arena-ecosystem--v1 .arena-ecosystem__map {
		display: grid;
		min-height: 0;
		aspect-ratio: auto;
		grid-template-columns: 1fr;
		overflow: visible;
		border: 0;
		background: transparent;
	}

	.arena-ecosystem--v1 .arena-ecosystem__venue {
		position: relative;
		inset: auto;
		z-index: 0;
		aspect-ratio: 16 / 8.6;
		overflow: hidden;
		border: 1px solid rgba(255, 255, 255, 0.16);
	}

	.arena-ecosystem--v1 .arena-ecosystem__venue img {
		object-position: 62% center;
	}

	.arena-ecosystem--v1 .arena-ecosystem__connectors {
		display: none;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callouts {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
		margin-top: 12px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout {
		position: static;
		width: auto;
		min-height: 112px;
		padding: 20px;
		border-left: 2px solid var(--arena-yellow);
		background: #202020;
		box-shadow: none;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout--maintenance {
		display: grid;
		width: auto;
		height: auto;
		min-height: 190px;
		grid-column: 1 / -1;
		grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.88fr);
		order: -1;
		padding: 0;
		border: 1px solid var(--arena-yellow);
	}

	.arena-ecosystem--v1 .arena-ecosystem__maintenance-photo {
		min-height: 190px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout--maintenance .arena-ecosystem__callout-body {
		grid-column: 1;
		padding: 28px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout-heading {
		display: flex;
		gap: 9px;
		align-items: center;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout-icon {
		display: block;
		width: 22px;
		height: 22px;
		flex: 0 0 auto;
		object-fit: contain;
		filter: brightness(0) saturate(100%) invert(79%) sepia(93%) saturate(1128%) hue-rotate(5deg) brightness(101%) contrast(102%);
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout h3 {
		font-size: 12px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout p {
		font-size: 12px;
	}
}

@media (max-width: 640px) {
	.arena-ecosystem--v1 {
		padding-block: 64px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan {
		padding-inline: 22px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan-intro {
		margin-bottom: 36px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__plan-intro h2 {
		font-size: clamp(38px, 12vw, 50px);
		line-height: 0.98;
	}

	.arena-ecosystem--v1 .arena-ecosystem__venue {
		aspect-ratio: 4 / 3;
	}

	.arena-ecosystem--v1 .arena-ecosystem__venue img {
		object-position: 68% center;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callouts {
		grid-template-columns: 1fr;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout {
		min-height: 0;
		padding: 19px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout--maintenance {
		min-height: 0;
		grid-column: auto;
		grid-template-columns: minmax(0, 1.18fr) minmax(120px, 0.82fr);
		padding: 0;
	}

	.arena-ecosystem--v1 .arena-ecosystem__maintenance-photo {
		min-height: 180px;
	}

	.arena-ecosystem--v1 .arena-ecosystem__callout--maintenance .arena-ecosystem__callout-body {
		padding: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.arena-venue-page *,
	.arena-venue-page *::before,
	.arena-venue-page *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
