/* =====================================================================
   Prism POD page — dedicated stylesheet
   Loaded only on pages using the "Prism POD Page" template.
   All rules are scoped under .sphere-home to avoid affecting other pages.
   ===================================================================== */

/* ── Page shell (seamless header + banner, no divider line) ─────────── */
.sphere-home.sphere-prism-pod-page {
	--pp-page-bg: #1e1e1e;
	--pp-header-bg: #1e1e1e;

	background: var(--pp-page-bg);
}

.sphere-home.sphere-prism-pod-page.sphere-header-dark {
	--sphere-dark-header-bg: var(--pp-header-bg);
}

.sphere-home.sphere-prism-pod-page .site-header {
	background: var(--pp-header-bg);
	border-bottom: none;
	box-shadow: none;
}

.sphere-home.sphere-prism-pod-page .site-header.is-nav-open {
	border-bottom: none;
	box-shadow: none;
}

/* ── Challenges section ────────────────────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-challenges {
	/* Colours */
	--ppc-bg: radial-gradient(ellipse 88% 72% at 50% 42%, #f5f5f7 0%, #e3e4e8 100%);
	--ppc-title: var(--sphere-orange, #e54225);
	--ppc-intro: #444444;
	--ppc-card-bg: #ffffff;
	--ppc-card-title: #1c1c1e;
	--ppc-card-text: #5b5b60;
	--ppc-accent: var(--sphere-orange, #e54225);

	/* Spacing */
	--ppc-pad-y: clamp(4rem, 7vw, 5.5rem);
	--ppc-header-gap: clamp(2rem, 4vw, 3rem);
	--ppc-header-col-gap: clamp(1.5rem, 4vw, 3rem);
	--ppc-grid-gap: clamp(1.25rem, 2.5vw, 1.75rem);
	--ppc-card-pad: clamp(2rem, 3.5vw, 2.5rem);

	/* Typography */
	--ppc-title-size: clamp(1.75rem, 3vw, 2.25rem);
	--ppc-intro-size: clamp(1rem, 1.6vw, 1.1875rem);
	--ppc-card-title-size: 1.25rem;
	--ppc-card-text-size: 0.9375rem;

	/* Cards */
	--ppc-card-radius: 0.75rem;
	--ppc-card-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
	--ppc-card-shadow-hover: 0 1.5rem 2.75rem rgba(0, 0, 0, 0.14);
	--ppc-card-lift: -6px;
	--ppc-card-accent-h: 3px;
	--ppc-card-accent-inset: 1.75rem;
	--ppc-card-accent-radius: 999px;
	--ppc-icon-size: 3.5rem;
	--ppc-icon-rest-opacity: 0.6;
	--ppc-icon-hover-filter: brightness(0) saturate(100%) invert(36%) sepia(51%)
		saturate(2878%) hue-rotate(346deg) brightness(97%) contrast(92%);

	background: var(--ppc-bg);
	padding-top: var(--ppc-pad-y);
	padding-bottom: var(--ppc-pad-y);
}

.sphere-home .prism-pod-challenges__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--ppc-header-col-gap);
	margin-bottom: var(--ppc-header-gap);
}

.sphere-home .prism-pod-challenges__title {
	flex: 0 0 auto;
	margin: 0;
	font-size: var(--ppc-title-size);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ppc-title);
}

.sphere-home .prism-pod-challenges__intro {
	flex: 1 1 auto;
	margin: 0;
	margin-left: auto;
	font-size: var(--ppc-intro-size);
	line-height: 1.45;
	font-weight: 400;
	color: var(--ppc-intro);
	text-align: center;
}

.sphere-home .prism-pod-challenges__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ppc-grid-gap);
	align-items: stretch;
}

.sphere-home .prism-pod-challenges__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: var(--ppc-card-pad);
	background: var(--ppc-card-bg);
	border-radius: var(--ppc-card-radius);
	box-shadow: var(--ppc-card-shadow);
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Accent bar — inset from sides, revealed on hover (matches experience design). */
.sphere-home .prism-pod-challenges__card::after {
	content: '';
	position: absolute;
	left: var(--ppc-card-accent-inset);
	right: var(--ppc-card-accent-inset);
	bottom: 0;
	height: 2px;
	border-radius: var(--ppc-card-accent-radius);
	background: var(--ppc-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

.sphere-home .prism-pod-challenges__card:hover,
.sphere-home .prism-pod-challenges__card:focus-within {
	transform: translateY(var(--ppc-card-lift));
	box-shadow: var(--ppc-card-shadow-hover);
}

.sphere-home .prism-pod-challenges__card:hover::after,
.sphere-home .prism-pod-challenges__card:focus-within::after {
	transform: scaleX(1);
}

.sphere-home .prism-pod-challenges__icon {
	display: block;
	width: var(--ppc-icon-size);
	height: var(--ppc-icon-size);
	margin-bottom: 1.35rem;
	line-height: 0;
}

.sphere-home .prism-pod-challenges__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
	filter: brightness(0);
	opacity: var(--ppc-icon-rest-opacity);
	transition: filter 0.25s ease, opacity 0.25s ease;
}

.sphere-home .prism-pod-challenges__card:hover .prism-pod-challenges__icon img,
.sphere-home .prism-pod-challenges__card:focus-within .prism-pod-challenges__icon img {
	filter: var(--ppc-icon-hover-filter);
	opacity: 1;
}

.sphere-home .prism-pod-challenges__card-title {
	margin: 0 0 0.85rem;
	font-size: var(--ppc-card-title-size);
	line-height: 1.3;
	font-weight: 700;
	color: var(--ppc-card-title);
	transition: color 0.25s ease;
}

.sphere-home .prism-pod-challenges__card:hover .prism-pod-challenges__card-title,
.sphere-home .prism-pod-challenges__card:focus-within .prism-pod-challenges__card-title {
	color: var(--ppc-accent);
}

.sphere-home .prism-pod-challenges__card-text {
	margin: 0;
	font-size: var(--ppc-card-text-size);
	line-height: 1.65;
	color: var(--ppc-card-text);
}

@media (max-width: 1024px) {
	.sphere-home .prism-pod-challenges__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.sphere-home .prism-pod-challenges__intro {
		max-width: none;
		text-align: left;
	}

	.sphere-home .prism-pod-challenges__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-challenges {
		--ppc-card-pad: 1.75rem 1.5rem;
	}
}

/* ── Engineered showcase (media + tabs + features) ─────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-showcase {
	/* Colours */
	--pps-bg: #232323;
	--pps-title: var(--sphere-orange, #e54225);
	--pps-intro: #ffffff;
	--pps-feature-title: #ffffff;
	--pps-feature-text: #888888;
	--pps-feature-title-hover: var(--sphere-orange, #e54225);
	--pps-feature-text-hover: #ffffff;
	--pps-feature-bg-hover: rgba(0, 0, 0, 0.22);
	--pps-row-label: var(--sphere-orange, #e54225);
	--pps-row-line: var(--sphere-orange, #e54225);
	--pps-row-line-w: clamp(6.25rem, 12vw, 9.375rem);
	--pps-row-line-h: 1px;
	--pps-row-line-gap: 1.25rem;
	--pps-row-gap: clamp(2.5rem, 4vw, 3.5rem);
	--pps-more-color: var(--sphere-orange, #e54225);
	--pps-play-bg: #ffffff;
	--pps-play-icon: var(--sphere-orange, #e54225);

	/* Layout */
	--pps-content-max: min(100%, 72rem);
	--pps-header-align: flex-end;

	/* Spacing */
	--pps-pad-y: clamp(4rem, 7vw, 5.5rem);
	--pps-header-gap: clamp(1.5rem, 3vw, 2.5rem);
	--pps-header-media-gap: clamp(1.35rem, 2.8vw, 2rem);
	--pps-media-toolbar-gap: clamp(2rem, 4vw, 3rem);
	--pps-grid-gap-x: clamp(1.5rem, 3vw, 2.5rem);
	--pps-grid-gap-y: clamp(1.75rem, 3vw, 2.25rem);
	--pps-feature-pad: clamp(1.35rem, 2.5vw, 1.85rem);

	/* Typography */
	--pps-title-size: clamp(1.75rem, 3vw, 2.25rem);
	--pps-intro-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	--pps-row-label-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
	--pps-feature-title-size: 1rem;
	--pps-feature-text-size: 0.875rem;
	--pps-more-size: 0.9375rem;

	/* Media */
	--pps-media-radius: 1.25rem;
	--pps-media-aspect: 16 / 9;
	--pps-media-shadow: 0 1.875rem 6.25rem rgba(0, 0, 0, 0.55);
	--pps-play-size: 4.5rem;
	--pps-play-icon-size: 1.1rem;

	/* Feature cards */
	--pps-feature-radius: 0.75rem;
	--pps-feature-icon-size: 2.625rem;
	--pps-feature-icon-gap: 1rem;
	--pps-feature-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.5);
	--pps-feature-shadow-hover: var(--pps-feature-shadow);
	--pps-feature-transition: 0.25s ease;
	--pps-icon-rest-opacity: 0.85;
	--pps-icon-rest-filter: brightness(0) saturate(100%) invert(100%);
	--pps-icon-hover-filter: brightness(0) saturate(100%) invert(36%) sepia(51%) saturate(2878%) hue-rotate(346deg) brightness(97%) contrast(92%);

	background: var(--pps-bg);
	padding-top: var(--pps-pad-y);
	padding-bottom: var(--pps-pad-y);
}

.sphere-home .prism-pod-showcase__stage {
	width: 100%;
	max-width: var(--pps-content-max);
	margin: 0 auto;
}

.sphere-home .prism-pod-showcase__header {
	display: flex;
	align-items: var(--pps-header-align);
	justify-content: space-between;
	gap: var(--pps-header-gap);
	margin-bottom: var(--pps-header-media-gap);
}

.sphere-home .prism-pod-showcase__title {
	flex: 0 0 auto;
	margin: 0;
	font-size: var(--pps-title-size);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--pps-title);
}

.sphere-home .prism-pod-showcase__intro {
	flex: 1 1 auto;
	margin: 0;
	max-width: none;
	margin-left: auto;
	padding-left: var(--pps-header-gap);
	font-size: var(--pps-intro-size);
	line-height: 1.5;
	font-weight: 400;
	color: var(--pps-intro);
	text-align: right;
}

.sphere-home .prism-pod-showcase__media {
	position: relative;
	width: 100%;
	margin: 0 0 var(--pps-media-toolbar-gap);
	border-radius: var(--pps-media-radius);
	overflow: hidden;
	line-height: 0;
	box-shadow: var(--pps-media-shadow);
	background: #161616;
	aspect-ratio: var(--pps-media-aspect);
}

.sphere-home .prism-pod-showcase__poster {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sphere-home .prism-pod-showcase__video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	background: #000000;
}

.sphere-home .prism-pod-showcase__media.is-playing .prism-pod-showcase__poster,
.sphere-home .prism-pod-showcase__media.is-playing .prism-pod-showcase__play {
	display: none;
}

.sphere-home .prism-pod-showcase__media.is-playing .prism-pod-showcase__video {
	display: block;
}

.sphere-home .prism-pod-showcase__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.sphere-home .prism-pod-showcase__play-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--pps-play-size);
	height: var(--pps-play-size);
	border-radius: 50%;
	background: var(--pps-play-bg);
	box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sphere-home .prism-pod-showcase__play-icon::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin-left: 0.2rem;
	border-top: calc(var(--pps-play-icon-size) * 0.55) solid transparent;
	border-bottom: calc(var(--pps-play-icon-size) * 0.55) solid transparent;
	border-left: var(--pps-play-icon-size) solid var(--pps-play-icon);
}

.sphere-home .prism-pod-showcase__play:hover .prism-pod-showcase__play-icon,
.sphere-home .prism-pod-showcase__play:focus-visible .prism-pod-showcase__play-icon {
	transform: scale(1.05);
}

.sphere-home .prism-pod-showcase__rows {
	display: flex;
	flex-direction: column;
	gap: var(--pps-row-gap);
	margin-top: 0;
}

.sphere-home .prism-pod-showcase__row-label {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--pps-row-line-gap);
	margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.sphere-home .prism-pod-showcase__row-label::before,
.sphere-home .prism-pod-showcase__row-label::after {
	content: '';
	flex: 0 0 auto;
	width: var(--pps-row-line-w);
	height: var(--pps-row-line-h);
	background: var(--pps-row-line);
}

.sphere-home .prism-pod-showcase__row-label-text {
	flex: 0 0 auto;
	font-size: var(--pps-row-label-size);
	line-height: 1.3;
	font-weight: 700;
	color: var(--pps-row-label);
	white-space: nowrap;
	text-align: center;
}

.sphere-home .prism-pod-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: var(--pps-grid-gap-x);
	row-gap: var(--pps-grid-gap-y);
}

.sphere-home .prism-pod-showcase__feature {
	display: grid;
	grid-template-columns: var(--pps-feature-icon-size) minmax(0, 1fr);
	align-items: start;
	gap: var(--pps-feature-icon-gap);
	padding: var(--pps-feature-pad);
	border-radius: var(--pps-feature-radius);
	background: transparent;
	box-shadow: none;
	transition:
		background var(--pps-feature-transition),
		box-shadow var(--pps-feature-transition);
}

.sphere-home .prism-pod-showcase__feature:hover,
.sphere-home .prism-pod-showcase__feature:focus-within {
	background: var(--pps-feature-bg-hover);
}

.sphere-home .prism-pod-showcase__feature-icon {
	display: block;
	width: var(--pps-feature-icon-size);
	height: var(--pps-feature-icon-size);
	line-height: 0;
}

.sphere-home .prism-pod-showcase__feature-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left top;
	filter: var(--pps-icon-rest-filter);
	opacity: var(--pps-icon-rest-opacity);
	transition: filter var(--pps-feature-transition), opacity var(--pps-feature-transition);
}

.sphere-home .prism-pod-showcase__feature:hover .prism-pod-showcase__feature-icon img,
.sphere-home .prism-pod-showcase__feature:focus-within .prism-pod-showcase__feature-icon img {
	filter: var(--pps-icon-hover-filter);
	opacity: 1;
}

.sphere-home .prism-pod-showcase__feature-title {
	margin: 0 0 0.5rem;
	font-size: var(--pps-feature-title-size);
	line-height: 1.35;
	font-weight: 700;
	color: var(--pps-feature-title);
	transition: color var(--pps-feature-transition);
}

.sphere-home .prism-pod-showcase__feature:hover .prism-pod-showcase__feature-title,
.sphere-home .prism-pod-showcase__feature:focus-within .prism-pod-showcase__feature-title {
	color: var(--pps-feature-title-hover);
}

.sphere-home .prism-pod-showcase__feature-text {
	margin: 0;
	font-size: var(--pps-feature-text-size);
	line-height: 1.65;
	color: var(--pps-feature-text);
	transition: color var(--pps-feature-transition);
}

.sphere-home .prism-pod-showcase__feature:hover .prism-pod-showcase__feature-text,
.sphere-home .prism-pod-showcase__feature:focus-within .prism-pod-showcase__feature-text {
	color: var(--pps-feature-text-hover);
}

@media (max-width: 1024px) {
	.sphere-home .prism-pod-showcase {
		--pps-header-align: flex-start;
	}

	.sphere-home .prism-pod-showcase__header {
		flex-direction: column;
		align-items: flex-start;
	}

	.sphere-home .prism-pod-showcase__intro {
		max-width: none;
		margin-left: 0;
		padding-left: 0;
		text-align: left;
	}

	.sphere-home .prism-pod-showcase__row-label::before,
	.sphere-home .prism-pod-showcase__row-label::after {
		width: clamp(2.5rem, 8vw, 5rem);
	}

	.sphere-home .prism-pod-showcase__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-showcase {
		--pps-play-size: 3.75rem;
		--pps-feature-pad: 1.15rem;
	}

	.sphere-home .prism-pod-showcase__grid {
		grid-template-columns: 1fr;
	}

	.sphere-home .prism-pod-showcase__row-label-text {
		white-space: normal;
	}
}

/* ── See the POD in your yard — CTA ───────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-yard-cta {
	/* Colours */
	--pp-yard-bg: #2d2d2d;
	--pp-yard-title: #ffffff;
	--pp-yard-accent: var(--sphere-orange, #e54225);
	--pp-yard-btn-bg: var(--sphere-orange, #e54225);
	--pp-yard-btn-text: #ffffff;
	--pp-yard-btn-hover-bg: var(--sphere-orange, #e54225);

	/* Spacing */
	--pp-yard-pad-y: clamp(4.5rem, 8vw, 6.5rem);
	--pp-yard-inner-max: var(--sphere-container-max, 75rem);
	--pp-yard-content-gap: clamp(1rem, 2vw, 1.25rem);
	--pp-yard-cta-gap: clamp(1.75rem, 3.5vw, 2.5rem);

	/* Typography */
	--pp-yard-title-size: var(--sphere-mid-cta-title-size, 50px);
	--pp-yard-title-weight: 700;
	--pp-yard-title-line: 1.2;
	--pp-yard-title-tracking: -0.01em;

	/* Divider — short accent under title, roughly POD width */
	--pp-yard-divider-w: 2.75rem;
	--pp-yard-divider-h: 3px;
	--pp-yard-divider-radius: 999px;

	/* Button */
	--pp-yard-btn-radius: 0.375rem;
	--pp-yard-btn-size: var(--sphere-mid-cta-btn-size, 19px);
	--pp-yard-btn-weight: 500;
	--pp-yard-btn-pad-y: 0.75rem;
	--pp-yard-btn-pad-x: 1.75rem;

	background: var(--pp-yard-bg);
	padding-top: var(--pp-yard-pad-y);
	padding-bottom: var(--pp-yard-pad-y);
}

.sphere-home .prism-pod-yard-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: var(--pp-yard-inner-max);
	margin: 0 auto;
	text-align: center;
}

.sphere-home .prism-pod-yard-cta__title {
	margin: 0;
	font-size: var(--pp-yard-title-size);
	line-height: var(--pp-yard-title-line);
	font-weight: var(--pp-yard-title-weight);
	letter-spacing: var(--pp-yard-title-tracking);
	color: var(--pp-yard-title);
}

.sphere-home .prism-pod-yard-cta__title-accent {
	color: var(--pp-yard-accent);
}

.sphere-home .prism-pod-yard-cta__divider {
	display: block;
	flex-shrink: 0;
	width: var(--pp-yard-divider-w);
	height: var(--pp-yard-divider-h);
	margin-top: var(--pp-yard-content-gap);
	background: var(--pp-yard-accent);
	border-radius: var(--pp-yard-divider-radius);
}

.sphere-home .prism-pod-yard-cta__cta {
	margin: var(--pp-yard-cta-gap) 0 0;
}

.sphere-home .prism-pod-yard-cta__btn,
.sphere-home .prism-pod-yard-cta .btn--orange {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--pp-yard-btn-pad-y) var(--pp-yard-btn-pad-x);
	border: none;
	border-radius: var(--pp-yard-btn-radius);
	background: var(--pp-yard-btn-bg);
	font-size: var(--pp-yard-btn-size);
	font-weight: var(--pp-yard-btn-weight);
	line-height: 1.2;
	color: var(--pp-yard-btn-text);
	text-decoration: none;
	transition: opacity 0.2s ease;
}

.sphere-home .prism-pod-yard-cta__btn:hover,
.sphere-home .prism-pod-yard-cta__btn:focus-visible,
.sphere-home .prism-pod-yard-cta .btn--orange:hover,
.sphere-home .prism-pod-yard-cta .btn--orange:focus-visible {
	background: var(--pp-yard-btn-hover-bg);
	color: var(--pp-yard-btn-text);
	opacity: 0.92;
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-yard-cta {
		--pp-yard-pad-y: clamp(3.5rem, 10vw, 4.5rem);
		--pp-yard-content-gap: 0.875rem;
		--pp-yard-cta-gap: 1.5rem;
	}
}

/* ── POD Gallery ───────────────────────────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-gallery {
	/* Colours */
	--ppg-bg: transparent;
	--ppg-know-more-bg: #ffffff;
	--ppg-know-more-text: #1a1a1a;
	--ppg-know-more-hover-bg: #f2f2f2;
	--ppg-thumb-border: transparent;
	--ppg-thumb-border-hover: rgba(255, 255, 255, 0.55);
	--ppg-thumb-border-active: #ffffff;

	/* Layout */
	--ppg-pad-y: 0;
	--ppg-pad-x: 0;
	--ppg-stage-max: none;
	--ppg-viewport-radius: 0;
	--ppg-viewport-aspect: 16 / 9;
	--ppg-viewport-min-height: var(--sphere-gallery-min-height, 100vh);
	--ppg-overlay-inset: clamp(1rem, 2.5vw, 1.75rem);

	/* Know More button */
	--ppg-know-more-top: var(--ppg-overlay-inset);
	--ppg-know-more-right: var(--ppg-overlay-inset);
	--ppg-know-more-pad-y: 0.55rem;
	--ppg-know-more-pad-x: 1.35rem;
	--ppg-know-more-size: 0.875rem;
	--ppg-know-more-radius: 999px;

	/* Thumbnails */
	--ppg-thumbs-bottom: var(--ppg-overlay-inset);
	--ppg-thumbs-gap: clamp(0.65rem, 1.4vw, 1.15rem);
	--ppg-thumb-width: clamp(4.5rem, 8.5vw, 7.25rem);
	--ppg-thumb-radius: 0.75rem;
	--ppg-thumb-border-w: 3px;
	--ppg-thumb-hover-scale: 1.04;
	--ppg-thumb-transition: 0.22s ease;

	background: var(--ppg-bg);
	padding: var(--ppg-pad-y) var(--ppg-pad-x);
	scroll-margin-top: 5rem;
}

.sphere-home .prism-pod-gallery__viewport {
	position: relative;
	width: 100%;
	max-width: var(--ppg-stage-max);
	min-height: var(--ppg-viewport-min-height);
	margin: 0;
	border-radius: var(--ppg-viewport-radius);
	overflow: hidden;
	background: var(--ppg-bg);
	aspect-ratio: var(--ppg-viewport-aspect);
}

.sphere-home .prism-pod-gallery__hero {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.sphere-home .prism-pod-gallery__know-more {
	position: absolute;
	top: var(--ppg-know-more-top);
	right: 15rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--ppg-know-more-pad-y) var(--ppg-know-more-pad-x);
	border-radius: var(--ppg-know-more-radius);
	background: var(--ppg-know-more-bg);
	font-size: var(--ppg-know-more-size);
	line-height: 1.2;
	font-weight: 500;
	color: var(--ppg-know-more-text);
	text-decoration: none;
	transition: background 0.2s ease;
}

.sphere-home .prism-pod-gallery__know-more:hover,
.sphere-home .prism-pod-gallery__know-more:focus-visible {
	background: var(--ppg-know-more-hover-bg);
}

.sphere-home .prism-pod-gallery__thumbs {
	position: absolute;
	left: 50%;
	bottom: var(--ppg-thumbs-bottom);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--ppg-thumbs-gap);
	width: calc(100% - (var(--ppg-overlay-inset) * 2));
	max-width: 100%;
	transform: translateX(-50%);
}

.sphere-home .prism-pod-gallery__thumb {
	flex: 0 0 auto;
	width: var(--ppg-thumb-width);
	margin: 0;
	padding: 0;
	border: var(--ppg-thumb-border-w) solid var(--ppg-thumb-border);
	border-radius: var(--ppg-thumb-radius);
	background: transparent;
	overflow: hidden;
	line-height: 0;
	cursor: pointer;
	transition:
		border-color var(--ppg-thumb-transition),
		transform var(--ppg-thumb-transition),
		box-shadow var(--ppg-thumb-transition);
}

.sphere-home .prism-pod-gallery__thumb img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	object-position: center center;
}

.sphere-home .prism-pod-gallery__thumb:hover,
.sphere-home .prism-pod-gallery__thumb:focus-visible {
	border-color: var(--ppg-thumb-border-hover);
	transform: scale(var(--ppg-thumb-hover-scale));
}

.sphere-home .prism-pod-gallery__thumb.is-active {
	border-color: var(--ppg-thumb-border-active);
}

.sphere-home .prism-pod-gallery__thumb.is-active:hover,
.sphere-home .prism-pod-gallery__thumb.is-active:focus-visible {
	border-color: var(--ppg-thumb-border-active);
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-gallery {
		--ppg-viewport-min-height: var(--sphere-gallery-min-height, 100vh);
		--ppg-overlay-inset: 0.875rem;
		--ppg-thumb-width: clamp(3.75rem, 20vw, 5rem);
		--ppg-thumbs-gap: 0.5rem;
		--ppg-thumb-radius: 0.5rem;
		--ppg-know-more-pad-y: 0.45rem;
		--ppg-know-more-pad-x: 1rem;
		--ppg-know-more-size: 0.8125rem;
	}

	.sphere-home .prism-pod-gallery__know-more {
		/* Desktop uses a large right offset that sits off-screen on mobile */
		right: var(--ppg-overlay-inset);
		top: var(--ppg-overlay-inset);
	}

	.sphere-home .prism-pod-gallery__thumbs {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		padding-bottom: 0.15rem;
		width: calc(100% - (var(--ppg-overlay-inset) * 2));
		left: var(--ppg-overlay-inset);
		transform: none;
	}

	.sphere-home .prism-pod-gallery__thumbs::-webkit-scrollbar {
		display: none;
	}
}

/* ── POD Accessories ───────────────────────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-accessories {
	/* Colours */
	--ppa-bg: #f9f9f9;
	--ppa-title: #333333;
	--ppa-title-accent: var(--sphere-orange, #e54225);
	--ppa-intro: #666666;
	--ppa-card-title: var(--sphere-orange, #e54225);
	--ppa-card-text: #333333;
	--ppa-card-bg: transparent;
	--ppa-body-bg: transparent;
	--ppa-body-bg-hover: #f2f2f2;
	--ppa-divider: var(--sphere-orange, #e54225);

	/* Spacing */
	--ppa-pad-y: clamp(4rem, 7vw, 5.5rem);
	--ppa-header-gap: clamp(1.5rem, 3vw, 2.25rem);
	--ppa-grid-gap: clamp(1.5rem, 3vw, 2.5rem);
	--ppa-body-pad: clamp(1.25rem, 2vw, 1.75rem);
	--ppa-media-gap: clamp(1.25rem, 2.5vw, 1.75rem);

	/* Typography */
	--ppa-title-size: clamp(1.75rem, 3vw, 2.25rem);
	--ppa-intro-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	--ppa-card-title-size: 1.125rem;
	--ppa-card-text-size: 0.9375rem;

	/* Header divider */
	--ppa-header-divider-w: 3.5rem;
	--ppa-header-divider-h: 3px;
	--ppa-header-divider-gap: 1rem;

	/* Card / content body */
	--ppa-body-radius: 0.75rem;
	--ppa-card-divider-w: 2.75rem;
	--ppa-card-divider-h: 3px;
	--ppa-card-divider-gap: 0.75rem;
	--ppa-image-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.12);
	--ppa-image-max-h: clamp(9rem, 16vw, 12.5rem);
	--ppa-body-shadow-hover: 0 0.35rem 1rem rgba(0, 0, 0, 0.08);
	--ppa-body-transition: 0.25s ease;

	background: var(--ppa-bg);
	padding-top: var(--ppa-pad-y);
	padding-bottom: var(--ppa-pad-y);
}

.sphere-home .prism-pod-accessories__header {
	text-align: center;
	margin-bottom: var(--ppa-header-gap);
}

.sphere-home .prism-pod-accessories__title {
	margin: 0;
	font-size: var(--ppa-title-size);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ppa-title);
}

.sphere-home .prism-pod-accessories__title-accent {
	color: var(--ppa-title-accent);
}

.sphere-home .prism-pod-accessories__divider {
	display: block;
	width: var(--ppa-header-divider-w);
	height: var(--ppa-header-divider-h);
	margin: var(--ppa-header-divider-gap) auto 0;
	background: var(--ppa-divider);
	border-radius: 999px;
}

.sphere-home .prism-pod-accessories__intro {
	margin: 1rem 0 0;
	font-size: var(--ppa-intro-size);
	line-height: 1.5;
	font-weight: 400;
	color: var(--ppa-intro);
}

.sphere-home .prism-pod-accessories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ppa-grid-gap);
	align-items: stretch;
}

.sphere-home .prism-pod-accessories__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.sphere-home .prism-pod-accessories__media {
	--ppa-img-transition: 0.35s ease;

	position: relative;
	display: block;
	margin-bottom: var(--ppa-media-gap);
	line-height: 0;
}

.sphere-home .prism-pod-accessories__media img,
.sphere-home .prism-pod-accessories__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: var(--ppa-image-max-h);
	margin: 0 auto;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(var(--ppa-image-shadow));
	pointer-events: none;
	transition: opacity var(--ppa-img-transition);
}

/* KIOSK (and any swap card): default = no light, hover = with light */
.sphere-home .prism-pod-accessories__media--swap {
	cursor: pointer;
}

.sphere-home .prism-pod-accessories__img--base {
	position: relative;
	z-index: 1;
	opacity: 1;
}

.sphere-home .prism-pod-accessories__img--hover {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}

.sphere-home .prism-pod-accessories__media--swap:hover .prism-pod-accessories__img--base,
.sphere-home .prism-pod-accessories__media--swap:focus-within .prism-pod-accessories__img--base {
	opacity: 0;
}

.sphere-home .prism-pod-accessories__media--swap:hover .prism-pod-accessories__img--hover,
.sphere-home .prism-pod-accessories__media--swap:focus-within .prism-pod-accessories__img--hover {
	opacity: 1;
	visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
	.sphere-home .prism-pod-accessories__img {
		transition: none;
	}
}

.sphere-home .prism-pod-accessories__body {
	flex: 1 1 auto;
	padding: var(--ppa-body-pad);
	border-radius: var(--ppa-body-radius);
	background: var(--ppa-body-bg);
	transition:
		background var(--ppa-body-transition),
		box-shadow var(--ppa-body-transition);
}

.sphere-home .prism-pod-accessories__body:hover,
.sphere-home .prism-pod-accessories__body:focus-within {
	background: var(--ppa-body-bg-hover);
	box-shadow: var(--ppa-body-shadow-hover);
}

.sphere-home .prism-pod-accessories__card-title {
	margin: 0;
	font-size: var(--ppa-card-title-size);
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--ppa-card-title);
}

.sphere-home .prism-pod-accessories__card:first-child .prism-pod-accessories__card-title {
	text-transform: uppercase;
}

.sphere-home .prism-pod-accessories__card-divider {
	display: block;
	width: var(--ppa-card-divider-w);
	height: var(--ppa-card-divider-h);
	margin: var(--ppa-card-divider-gap) 0;
	background: var(--ppa-divider);
	border-radius: 999px;
}

.sphere-home .prism-pod-accessories__card-text {
	margin: 0;
	font-size: var(--ppa-card-text-size);
	line-height: 1.65;
	color: var(--ppa-card-text);
}

@media (max-width: 1024px) {
	.sphere-home .prism-pod-accessories__grid {
		grid-template-columns: 1fr;
		max-width: 28rem;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-accessories {
		--ppa-body-pad: 1.25rem;
	}
}

/* ── POD Add-ons ───────────────────────────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-addons {
	/* Colours */
	--ppo-bg: #ffffff;
	--ppo-title: #333333;
	--ppo-title-accent: var(--sphere-orange, #e54225);
	--ppo-intro: #666666;
	--ppo-card-title: var(--sphere-orange, #e54225);
	--ppo-card-text: #333333;
	--ppo-body-bg: transparent;
	--ppo-body-bg-hover: #f8f8f8;
	--ppo-divider: var(--sphere-orange, #e54225);

	/* Spacing */
	--ppo-pad-y: clamp(4rem, 7vw, 5.5rem);
	--ppo-header-gap: clamp(1.5rem, 3vw, 2.25rem);
	--ppo-grid-gap: clamp(1.5rem, 3vw, 2.5rem);
	--ppo-body-pad: clamp(1.75rem, 2.75vw, 2.25rem);
	--ppo-media-gap: clamp(1.25rem, 2.5vw, 1.75rem);

	/* Typography */
	--ppo-title-size: clamp(1.75rem, 3vw, 2.25rem);
	--ppo-intro-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	--ppo-card-title-size: 1.125rem;
	--ppo-card-text-size: 0.9375rem;

	/* Header divider */
	--ppo-header-divider-w: 3.5rem;
	--ppo-header-divider-h: 3px;
	--ppo-header-divider-gap: 1rem;

	/* Card / content body */
	--ppo-body-radius: 0.75rem;
	--ppo-card-divider-w: 2.75rem;
	--ppo-card-divider-h: 3px;
	--ppo-card-divider-gap: 0.75rem;
	--ppo-image-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.1);
	--ppo-image-shadow-hover: 0 1rem 2.25rem rgba(0, 0, 0, 0.14);
	--ppo-image-max-h: clamp(9rem, 16vw, 12.5rem);
	--ppo-body-shadow-hover: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.06);
	--ppo-body-transition: 0.3s ease;

	background: var(--ppo-bg);
	padding-top: var(--ppo-pad-y);
	padding-bottom: var(--ppo-pad-y);
}

.sphere-home .prism-pod-addons__header {
	text-align: center;
	margin-bottom: var(--ppo-header-gap);
}

.sphere-home .prism-pod-addons__title {
	margin: 0;
	font-size: var(--ppo-title-size);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ppo-title);
}

.sphere-home .prism-pod-addons__title-accent {
	color: var(--ppo-title-accent);
}

.sphere-home .prism-pod-addons__divider {
	display: block;
	width: var(--ppo-header-divider-w);
	height: var(--ppo-header-divider-h);
	margin: var(--ppo-header-divider-gap) auto 0;
	background: var(--ppo-divider);
	border-radius: 999px;
}

.sphere-home .prism-pod-addons__intro {
	margin: 1rem 0 0;
	font-size: var(--ppo-intro-size);
	line-height: 1.5;
	font-weight: 400;
	color: var(--ppo-intro);
}

.sphere-home .prism-pod-addons__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--ppo-grid-gap);
	align-items: stretch;
}

.sphere-home .prism-pod-addons__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.sphere-home .prism-pod-addons__media {
	--ppo-img-transition: 0.35s ease;

	position: relative;
	margin-bottom: var(--ppo-media-gap);
	line-height: 0;
}

.sphere-home .prism-pod-addons__media img,
.sphere-home .prism-pod-addons__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: var(--ppo-image-max-h);
	margin: 0 auto;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(var(--ppo-image-shadow));
	pointer-events: none;
	transition:
		filter var(--ppo-body-transition),
		opacity var(--ppo-img-transition);
}

.sphere-home .prism-pod-addons__card:has(.prism-pod-addons__body:hover) .prism-pod-addons__media img,
.sphere-home .prism-pod-addons__card:has(.prism-pod-addons__body:focus-within) .prism-pod-addons__media img,
.sphere-home .prism-pod-addons__card:has(.prism-pod-addons__body:hover) .prism-pod-addons__img,
.sphere-home .prism-pod-addons__card:has(.prism-pod-addons__body:focus-within) .prism-pod-addons__img {
	filter: drop-shadow(var(--ppo-image-shadow-hover));
}

/* Gap / Underbody: default = no light, hover = with light */
.sphere-home .prism-pod-addons__media--swap {
	cursor: pointer;
}

.sphere-home .prism-pod-addons__img--base {
	position: relative;
	z-index: 1;
	opacity: 1;
}

.sphere-home .prism-pod-addons__img--hover {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
}

.sphere-home .prism-pod-addons__media--swap:hover .prism-pod-addons__img--base,
.sphere-home .prism-pod-addons__media--swap:focus-within .prism-pod-addons__img--base {
	opacity: 0;
}

.sphere-home .prism-pod-addons__media--swap:hover .prism-pod-addons__img--hover,
.sphere-home .prism-pod-addons__media--swap:focus-within .prism-pod-addons__img--hover {
	opacity: 1;
	visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
	.sphere-home .prism-pod-addons__img {
		transition: filter var(--ppo-body-transition);
	}
}

.sphere-home .prism-pod-addons__body {
	flex: 1 1 auto;
	padding: var(--ppo-body-pad);
	border-radius: var(--ppo-body-radius);
	background: var(--ppo-body-bg);
	transition:
		background var(--ppo-body-transition),
		box-shadow var(--ppo-body-transition);
}

.sphere-home .prism-pod-addons__body:hover,
.sphere-home .prism-pod-addons__body:focus-within {
	background: var(--ppo-body-bg-hover);
	box-shadow: var(--ppo-body-shadow-hover);
}

.sphere-home .prism-pod-addons__card-title {
	margin: 0;
	font-size: var(--ppo-card-title-size);
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: none;
	color: var(--ppo-card-title);
}

.sphere-home .prism-pod-addons__card-divider {
	display: block;
	width: 6rem;
    height: 2px;
	margin: var(--ppo-card-divider-gap) 0;
	background: var(--ppo-divider);
	border-radius: 999px;
}

.sphere-home .prism-pod-addons__card-text {
	margin: 0;
	font-size: var(--ppo-card-text-size);
	line-height: 1.65;
	color: var(--ppo-card-text);
}

@media (max-width: 1024px) {
	.sphere-home .prism-pod-addons__grid {
		grid-template-columns: 1fr;
		max-width: 28rem;
		margin: 0 auto;
	}
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-addons {
		--ppo-body-pad: 1.25rem;
	}
}

/* ── PRISM Ecosystem ───────────────────────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-ecosystem {
	/* Colours */
	--ppe-bg: #ffffff;
	--ppe-title: #333333;
	--ppe-title-accent: var(--sphere-orange, #e54225);
	--ppe-intro: #666666;
	--ppe-footer-title: #333333;
	--ppe-footer-text: #555555;
	--ppe-footer-accent: var(--sphere-orange, #e54225);

	/* Spacing */
	--ppe-pad-y: clamp(4rem, 7vw, 5.5rem);
	--ppe-header-gap: clamp(1.75rem, 3.5vw, 2.5rem);
	--ppe-diagram-gap: clamp(2rem, 4vw, 3rem);
	--ppe-footer-gap: clamp(1.75rem, 3.5vw, 2.5rem);
	--ppe-footer-accent-w: 3px;
	--ppe-footer-accent-gap: clamp(1.25rem, 2.5vw, 2rem);
	--ppe-footer-title-max-w: 11.5rem;

	/* Video — ECO system V1.mp4 */
	--ppe-video-max-w: 100%;
	--ppe-video-aspect: auto;
	--ppe-video-radius: 1.25rem; /* matches showcase --pps-media-radius */
	--ppe-video-object-fit: cover;
	--ppe-video-bg: transparent;

	/* Shared column rhythm — matches Assembly / Dispatch / Gate in podechosystem.png */
	--ppe-col-assembly: 1fr;
	--ppe-col-dispatch: 2.34fr;
	--ppe-col-gate: 1fr;
	--ppe-col-gap: clamp(0.5rem, 0.75vw, 0.75rem);

	/* Typography */
	--ppe-title-size: clamp(1.75rem, 3vw, 2.25rem);
	--ppe-intro-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
	--ppe-footer-title-size: clamp(1.125rem, 2vw, 1.375rem);
	--ppe-footer-text-size: clamp(0.9375rem, 1.5vw, 1rem);

	background: var(--ppe-bg);
	padding-top: var(--ppe-pad-y);
	padding-bottom: var(--ppe-pad-y);
}

.sphere-home .prism-pod-ecosystem__inner {
	width: 100%;
	max-width: var(--sphere-container-max);
}

.sphere-home .prism-pod-ecosystem__header {
	text-align: left;
}

.sphere-home .prism-pod-ecosystem__title {
	margin: 0;
	font-size: var(--ppe-title-size);
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--ppe-title);
}

.sphere-home .prism-pod-ecosystem__title-accent {
	color: var(--ppe-title-accent);
}

.sphere-home .prism-pod-ecosystem__intro {
	margin: 0.65rem 0 0;
	max-width: none;
	font-size: var(--ppe-intro-size);
	line-height: 1.5;
	font-weight: 400;
	color: var(--ppe-intro);
}

.sphere-home .prism-pod-ecosystem__layout {
	display: grid;
	grid-template-columns:
		var(--ppe-col-assembly)
		var(--ppe-col-dispatch)
		var(--ppe-col-gate);
	column-gap: var(--ppe-col-gap);
	row-gap: var(--ppe-footer-gap);
	align-items: center;
}

.sphere-home .prism-pod-ecosystem__diagram {
	grid-column: 1 / -1;
	justify-self: stretch;
	width: 100%;
	max-width: var(--ppe-video-max-w);
	margin: var(--ppe-diagram-gap) 0 0;
	padding: 0;
	line-height: 0;
	overflow: hidden;
	border-radius: var(--ppe-video-radius);
	background: var(--ppe-video-bg);
}

.sphere-home .prism-pod-ecosystem__video {
	display: block;
	width: 100%;
	min-width: 100%;
	height: 26rem;
	max-width: none;
	aspect-ratio: var(--ppe-video-aspect);
	object-fit: var(--ppe-video-object-fit);
}

.sphere-home .prism-pod-ecosystem__footer {
	display: contents;
}

.sphere-home .prism-pod-ecosystem__footer-title {
	grid-column: 1;
	align-self: center;
	margin: 0;
	max-width: var(--ppe-footer-title-max-w);
	font-size: 18px;
	line-height: 1.3;
	color: var(--ppe-footer-title);
}

.sphere-home .prism-pod-ecosystem__copy {
	grid-column: 2 / -1;
	align-self: center;
	border-width: 2px !important;
	padding-left: var(--ppe-footer-accent-gap);
	border-left: var(--ppe-footer-accent-w) solid var(--ppe-footer-accent);
}

.sphere-home .prism-pod-ecosystem__copy-text {
	margin: 0;
	max-width: none;
	font-size: var(--ppe-footer-text-size);
	line-height: 1.7;
	font-weight: 400;
	color: var(--ppe-footer-text);
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-ecosystem__layout {
		grid-template-columns: 1fr;
		row-gap: 1.25rem;
	}

	.sphere-home .prism-pod-ecosystem__diagram {
		margin-top: var(--ppe-diagram-gap);
	}

	.sphere-home .prism-pod-ecosystem__footer-title,
	.sphere-home .prism-pod-ecosystem__copy {
		grid-column: 1;
	}

	.sphere-home .prism-pod-ecosystem__copy {
		padding-left: 1rem;
		border-left: var(--ppe-footer-accent-w) solid var(--ppe-footer-accent);
	}
}

/* ── FAQ ─────────────────────────────────────────────────────────────────
   Every value below is editable.
   -------------------------------------------------------------------- */
.sphere-home .prism-pod-faq {
	/* Colours */
	--ppf-bg: #f5f5f5;
	--ppf-heading: #222222;
	--ppf-accent: var(--sphere-orange, #e54225);
	--ppf-cta-note: #999999;
	--ppf-cta-text: #222222;
	--ppf-item-bg: #ffffff;
	--ppf-item-border: rgba(0, 0, 0, 0.06);
	--ppf-question: #333333;
	--ppf-answer: #666666;
	--ppf-icon: #b0b0b0;

	/* Layout */
	--ppf-pad-y: clamp(4rem, 7vw, 5rem);
	--ppf-grid-gap: clamp(2.5rem, 5vw, 4.5rem);
	--ppf-intro-col: 0.9fr;
	--ppf-list-col: 1.6fr;
	--ppf-item-gap: 1rem;

	/* Typography */
	--ppf-title-size: var(--sphere-faq-title-size, 50px);
	--ppf-cta-note-size: var(--sphere-faq-text-size, 19px);
	--ppf-cta-text-size: var(--sphere-faq-text-size, 19px);
	--ppf-question-size: var(--sphere-faq-text-size, 19px);
	--ppf-answer-size: var(--sphere-faq-text-size, 19px);
	--ppf-answer-line: 1.6;

	/* Items */
	--ppf-item-radius: 0.625rem;
	--ppf-item-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.05);
	--ppf-item-shadow-hover: 0 0.375rem 1.25rem rgba(0, 0, 0, 0.08);
	--ppf-item-shadow-open: 0 0.375rem 1.25rem rgba(229, 66, 37, 0.08);
	--ppf-question-pad: 1.5rem 1.75rem;
	--ppf-answer-pad-x: 1.75rem;
	--ppf-answer-pad-bottom: 1.5rem;
	--ppf-icon-size: 1.25rem;

	background: var(--ppf-bg);
	padding-top: var(--ppf-pad-y);
	padding-bottom: var(--ppf-pad-y);
}

.sphere-home .prism-pod-faq__grid {
	display: grid;
	grid-template-columns: minmax(0, var(--ppf-intro-col)) minmax(0, var(--ppf-list-col));
	gap: var(--ppf-grid-gap);
	align-items: start;
}

.sphere-home .prism-pod-faq__title {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	margin: 0;
	font-size: var(--ppf-title-size);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.sphere-home .prism-pod-faq__title-accent {
	color: var(--ppf-accent);
}

.sphere-home .prism-pod-faq__title-line {
	color: var(--ppf-heading);
}

.sphere-home .prism-pod-faq__cta {
	margin-top: 2.5rem;
}

.sphere-home .prism-pod-faq__cta-note {
	margin: 0 0 0.625rem;
	font-size: var(--ppf-cta-note-size);
	line-height: 1.5;
	font-weight: 400;
	color: var(--ppf-cta-note);
}

.sphere-home .prism-pod-faq__cta-text {
	margin: 0;
	font-size: var(--ppf-cta-text-size);
	line-height: 1.45;
	font-weight: 700;
	color: var(--ppf-cta-text);
}

.sphere-home .prism-pod-faq__cta-link {
	color: var(--ppf-accent);
	text-decoration: underline;
	text-underline-offset: 0.15em;
	transition: color 0.25s ease;
}

.sphere-home .prism-pod-faq__cta-link:hover,
.sphere-home .prism-pod-faq__cta-link:focus-visible {
	color: var(--ppf-heading);
}

.sphere-home .prism-pod-faq__list {
	display: flex;
	flex-direction: column;
	gap: var(--ppf-item-gap);
}

.sphere-home .prism-pod-faq__item {
	background: var(--ppf-item-bg);
	border: 1px solid var(--ppf-item-border);
	border-radius: var(--ppf-item-radius);
	box-shadow: var(--ppf-item-shadow);
	overflow: hidden;
	transition: box-shadow 0.35s ease, border-color 0.35s ease;
}

.sphere-home .prism-pod-faq__item:hover {
	border-color: rgba(0, 0, 0, 0.1);
	box-shadow: var(--ppf-item-shadow-hover);
}

.sphere-home .prism-pod-faq__item.is-open {
	border-color: rgba(229, 66, 37, 0.12);
	box-shadow: var(--ppf-item-shadow-open);
}

.sphere-home .prism-pod-faq__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: var(--ppf-question-pad);
	background: none;
	border: none;
	font-size: 16px;
	line-height: 1.45;
	font-weight: 500;
	text-align: left;
	color: var(--ppf-question);
	cursor: pointer;
	transition: color 0.35s ease;
}

.sphere-home .prism-pod-faq__question-text {
	flex: 1;
	min-width: 0;
}

.sphere-home .prism-pod-faq__item.is-open .prism-pod-faq__question,
.sphere-home .prism-pod-faq__question:hover {
	color: var(--ppf-accent);
}

.sphere-home .prism-pod-faq__icon {
	flex-shrink: 0;
	width: var(--ppf-icon-size);
	height: var(--ppf-icon-size);
	position: relative;
}

.sphere-home .prism-pod-faq__icon::before,
.sphere-home .prism-pod-faq__icon::after {
	content: '';
	position: absolute;
	background: var(--ppf-icon);
	border-radius: 1px;
	transition: background-color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.sphere-home .prism-pod-faq__icon::before {
	top: 50%;
	left: 0;
	right: 0;
	height: 1.5px;
	margin-top: -0.75px;
}

.sphere-home .prism-pod-faq__icon::after {
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1.5px;
	margin-left: -0.75px;
}

.sphere-home .prism-pod-faq__item.is-open .prism-pod-faq__icon::before,
.sphere-home .prism-pod-faq__item.is-open .prism-pod-faq__icon::after,
.sphere-home .prism-pod-faq__question:hover .prism-pod-faq__icon::before,
.sphere-home .prism-pod-faq__question:hover .prism-pod-faq__icon::after {
	background: var(--ppf-accent);
}

.sphere-home .prism-pod-faq__item.is-open .prism-pod-faq__icon::after {
	transform: rotate(90deg);
	opacity: 0;
}

.sphere-home .prism-pod-faq__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sphere-home .prism-pod-faq__answer[hidden] {
	display: none;
}

.sphere-home .prism-pod-faq__item.is-open .prism-pod-faq__answer {
	display: grid;
	grid-template-rows: 1fr;
}

.sphere-home .prism-pod-faq__answer-inner {
	overflow: hidden;
}

.sphere-home .prism-pod-faq__answer p {
	margin: 0;
	padding: 0 var(--ppf-answer-pad-x) var(--ppf-answer-pad-bottom);
	font-size: var(--ppf-answer-size);
	line-height: var(--ppf-answer-line);
	font-weight: 400;
	color: var(--ppf-answer);
}

@media (max-width: 1024px) {
	.sphere-home .prism-pod-faq__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.sphere-home .prism-pod-faq__cta {
		margin-top: 1.75rem;
	}

	.sphere-home .prism-pod-faq__question {
		padding: 1.25rem 1.25rem;
		gap: 1rem;
	}

	.sphere-home .prism-pod-faq__answer p {
		padding: 0 1.25rem 1.25rem;
	}
}


