/**
 * Event101 - Public About page (scoped to .e101-pa).
 * Editorial layout: split hero, workflow, native details disclosures, delivery panels.
 */

.e101-pa {
	--e101-pa-slate: #111827;
	--e101-pa-slate-mid: #1f2937;
	--e101-pa-muted: #6b7280;
	--e101-pa-border: #e5e7eb;
	--e101-pa-surface: #f3f4f6;
	--e101-pa-surface-2: #f9fafb;
	--e101-pa-white: #fff;
	--e101-pa-accent: #58e28a;
	--e101-pa-radius: 14px;
	--e101-pa-radius-sm: 10px;
	--e101-pa-shadow: 0 1px 2px rgba(17, 24, 39, 0.05), 0 8px 24px rgba(17, 24, 39, 0.06);
	--e101-pa-shadow-lg: 0 4px 6px rgba(17, 24, 39, 0.04), 0 20px 50px rgba(17, 24, 39, 0.12);
	color: var(--e101-pa-slate);
	font-family: inherit;
	line-height: 1.55;
}

.e101-pa-body {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1.25rem 4rem;
}

.e101-pa-section {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.e101-pa-section__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.e101-pa-section__title {
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 600;
	margin: 0 0 0.75rem;
	color: var(--e101-pa-slate);
	letter-spacing: -0.02em;
	line-height: 1.2;
}

.e101-pa-section__intro {
	margin: 0 0 1rem;
	color: var(--e101-pa-muted);
	max-width: 46em;
	font-size: 1.02rem;
	line-height: 1.58;
}

.e101-pa-section--muted {
	background: var(--e101-pa-surface-2);
	border-radius: var(--e101-pa-radius);
	padding: clamp(2rem, 4vw, 2.85rem) clamp(1.25rem, 3vw, 2rem);
	border: 1px solid var(--e101-pa-border);
}

.e101-pa-section--panel {
	background: linear-gradient(180deg, #fff 0%, var(--e101-pa-surface-2) 100%);
	border: 1px solid var(--e101-pa-border);
	border-radius: var(--e101-pa-radius);
	padding: clamp(2rem, 4vw, 2.85rem) clamp(1.25rem, 3vw, 2rem);
	box-shadow: var(--e101-pa-shadow);
}

/* --- Hero (split + system panel) --- */
.e101-pa-hero--split {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
	padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 4vw, 2.5rem) clamp(2.75rem, 5vw, 4.25rem);
	background: linear-gradient(155deg, #0f172a 0%, var(--e101-pa-slate) 42%, #0a0f18 100%);
	color: var(--e101-pa-white);
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(15, 23, 42, 0.35);
	position: relative;
}

.e101-pa-hero--split::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity: 0.4;
	pointer-events: none;
}

.e101-pa-hero--split::after {
	content: "";
	position: absolute;
	width: 120%;
	height: 70%;
	top: -25%;
	right: -30%;
	background: radial-gradient(ellipse at 30% 30%, rgba(88, 226, 138, 0.14) 0%, transparent 50%);
	pointer-events: none;
}

.e101-pa-hero__grid {
	position: relative;
	z-index: 1;
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	gap: clamp(1.75rem, 4vw, 3rem);
	align-items: center;
}

@media (min-width: 900px) {
	.e101-pa-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
	}
}

.e101-pa-hero__copy {
	text-align: left;
}

.e101-pa-hero--split .e101-pa-hero__title {
	margin: 0 0 0.9rem;
	font-size: clamp(1.85rem, 3.8vw, 2.55rem);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -0.03em;
	color: #fff;
	max-width: none;
}

.e101-pa-hero--split .e101-pa-hero__lede {
	margin: 0 0 1.5rem;
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.58;
	color: rgba(255, 255, 255, 0.9);
	max-width: 38rem;
}

.e101-pa-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	align-items: center;
}

/* Decorative system panel */
.e101-pa-hero__visual {
	justify-self: stretch;
}

.e101-pa-hero-panel {
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	overflow: hidden;
	backdrop-filter: blur(10px);
}

.e101-pa-hero-panel__chrome {
	display: flex;
	gap: 6px;
	padding: 0.65rem 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 0, 0, 0.2);
}

.e101-pa-hero-panel__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
}

.e101-pa-hero-panel__dot:first-child {
	background: rgba(248, 113, 113, 0.85);
}

.e101-pa-hero-panel__body {
	padding: 1rem 1.1rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.e101-pa-hero-panel__row {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.88);
}

.e101-pa-hero-panel__pill {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--e101-pa-accent);
	box-shadow: 0 0 0 3px rgba(88, 226, 138, 0.2);
	flex-shrink: 0;
}

.e101-pa-hero-panel__label {
	font-weight: 600;
	letter-spacing: 0.02em;
}

.e101-pa-hero-panel__line {
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(88, 226, 138, 0.35), transparent);
	min-width: 2rem;
}

/* --- Mission --- */
.e101-pa-mission__grid {
	display: grid;
	gap: clamp(1.75rem, 4vw, 2.75rem);
	align-items: start;
}

@media (min-width: 768px) {
	.e101-pa-mission__grid {
		grid-template-columns: 1fr minmax(240px, 320px);
	}
}

.e101-pa-mission__follow {
	margin: 0.75rem 0 0;
	color: var(--e101-pa-slate-mid);
	font-size: 1rem;
	line-height: 1.58;
	max-width: 40em;
}

.e101-pa-mission__viz {
	background: var(--e101-pa-white);
	border: 1px solid var(--e101-pa-border);
	border-radius: var(--e101-pa-radius);
	padding: 1.15rem 1.25rem 1.25rem;
	box-shadow: var(--e101-pa-shadow);
}

.e101-pa-mission__viz-title {
	margin: 0 0 0.75rem;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--e101-pa-accent);
}

.e101-pa-mission__nodes {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.e101-pa-mission__node {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.88rem;
	color: var(--e101-pa-slate-mid);
	font-weight: 500;
}

.e101-pa-mission__node-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--e101-pa-slate);
	opacity: 0.35;
	flex-shrink: 0;
}

.e101-pa-mission__node:nth-child(2) .e101-pa-mission__node-dot,
.e101-pa-mission__node:nth-child(4) .e101-pa-mission__node-dot {
	background: var(--e101-pa-accent);
	opacity: 1;
}

/* --- Why / compare --- */
.e101-pa-compare__problems {
	margin: 0 0 1.25rem;
	padding-left: 1.2rem;
	color: var(--e101-pa-slate-mid);
	font-size: 0.98rem;
	line-height: 1.55;
	max-width: 48em;
}

.e101-pa-compare__problems li {
	margin-bottom: 0.45rem;
}

.e101-pa-compare__bridge {
	margin: 0 0 1rem;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--e101-pa-slate);
	max-width: 46em;
	line-height: 1.45;
}

.e101-pa-compare__pillars {
	margin: 0 0 1.75rem;
	padding: 0;
	list-style: none;
	max-width: 42em;
	display: grid;
	gap: 0.45rem;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--e101-pa-slate-mid);
	line-height: 1.45;
}

.e101-pa-compare__pillars li {
	position: relative;
	padding-left: 1.35rem;
}

.e101-pa-compare__pillars li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.5rem;
	height: 0.5rem;
	border-radius: 50%;
	background: var(--e101-pa-accent);
	box-shadow: 0 0 0 3px rgba(88, 226, 138, 0.22);
}

.e101-pa-compare__cols {
	display: grid;
	gap: 1rem;
}

@media (min-width: 640px) {
	.e101-pa-compare__cols {
		grid-template-columns: 1fr 1fr;
	}
}

.e101-pa-compare__col {
	border-radius: var(--e101-pa-radius);
	padding: 1.35rem 1.4rem 1.45rem;
	border: 1px solid var(--e101-pa-border);
}

.e101-pa-compare__col--old {
	background: #fafafa;
}

.e101-pa-compare__col--new {
	background: linear-gradient(145deg, rgba(88, 226, 138, 0.08), #fff);
	border-color: rgba(88, 226, 138, 0.35);
	box-shadow: 0 0 0 1px rgba(88, 226, 138, 0.12);
}

.e101-pa-compare__col-title {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--e101-pa-slate);
}

.e101-pa-compare__list {
	margin: 0;
	padding-left: 1.1rem;
	font-size: 0.92rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.5;
}

.e101-pa-compare__list li {
	margin-bottom: 0.35rem;
}

.e101-pa-propagation__list {
	margin-top: 0.35rem;
}

.e101-pa-propagation__closing {
	margin: 1rem 0 0;
	font-size: 0.95rem;
	line-height: 1.55;
	color: var(--e101-pa-slate-mid);
	max-width: 44em;
}

/* --- How / workflow in practice + behind the scenes --- */
.e101-pa-how__intro {
	margin-bottom: 1.35rem;
}

.e101-pa-how__layout,
.e101-pa-how__layout--stacked {
	display: flex;
	flex-direction: column;
	gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.e101-pa-how__row--flow {
	width: 100%;
	min-width: 0;
}

.e101-pa-how__row--split {
	display: grid;
	gap: clamp(1.25rem, 3vw, 2rem);
	grid-template-columns: 1fr;
	align-items: stretch;
}

@media (min-width: 900px) {
	.e101-pa-how__row--split {
		grid-template-columns: 1fr 1fr;
	}
}

.e101-pa-how__col {
	min-width: 0;
	padding: clamp(1.25rem, 2.5vw, 1.65rem);
	border-radius: var(--e101-pa-radius);
	border: 1px solid rgba(17, 24, 39, 0.1);
	background: var(--e101-pa-white);
	box-shadow: var(--e101-pa-shadow);
}

.e101-pa-how__col--bts {
	background: linear-gradient(165deg, #fff 0%, var(--e101-pa-surface-2) 100%);
}

.e101-pa-how__col--adaptive {
	background: linear-gradient(165deg, var(--e101-pa-surface-2) 0%, #fff 100%);
}

.e101-pa-how__bts-title {
	margin: 0 0 0.85rem;
	font-size: 1.02rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--e101-pa-slate);
	line-height: 1.25;
}

.e101-pa-how__bts-list {
	margin: 0 0 1rem;
	padding: 0 0 0 1.15rem;
	font-size: 0.9rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.5;
}

.e101-pa-how__bts-list li {
	margin-bottom: 0.4rem;
}

.e101-pa-how__bts-copy {
	margin: 0 0 1rem;
	font-size: 0.9rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.55;
}

.e101-pa-how__bts-outcome {
	margin: 0;
	padding: 0.75rem 0.95rem;
	border-radius: var(--e101-pa-radius-sm);
	background: var(--e101-pa-slate);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 1.45;
}

.e101-pa-how-adaptive__title {
	margin: 0 0 0.65rem;
	font-size: 1.02rem;
	font-weight: 650;
	letter-spacing: -0.02em;
	color: var(--e101-pa-slate);
	line-height: 1.25;
}

.e101-pa-how-adaptive__copy {
	margin: 0 0 0.75rem;
	font-size: 0.92rem;
	color: var(--e101-pa-muted);
	line-height: 1.55;
}

.e101-pa-how-adaptive__list {
	margin: 0 0 0.75rem;
	padding: 0 0 0 1.05rem;
	font-size: 0.88rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.5;
}

.e101-pa-how-adaptive__list li {
	margin-bottom: 0.4rem;
}

.e101-pa-how-adaptive__closing {
	margin: 0;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--e101-pa-slate);
	line-height: 1.45;
}

.e101-pa-flow {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0;
	position: relative;
}

@media (min-width: 768px) {
	.e101-pa-flow--practice {
		grid-template-columns: repeat(4, 1fr);
		gap: 0 0.65rem;
		padding-top: 0.35rem;
	}

	.e101-pa-flow--practice::before {
		content: "";
		position: absolute;
		top: 1.5rem;
		left: 6%;
		right: 6%;
		height: 3px;
		border-radius: 2px;
		background: linear-gradient(
			90deg,
			rgba(88, 226, 138, 0.65) 0%,
			rgba(17, 24, 39, 0.1) 45%,
			rgba(17, 24, 39, 0.1) 55%,
			rgba(88, 226, 138, 0.55) 100%
		);
		pointer-events: none;
		z-index: 0;
		box-shadow: 0 0 20px rgba(88, 226, 138, 0.15);
	}
}

.e101-pa-flow__step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 0.25rem 0 1.25rem;
}

@media (max-width: 767px) {
	.e101-pa-flow__step {
		flex-direction: row;
		gap: 1rem;
		padding-bottom: 1.5rem;
		border-left: 3px solid rgba(88, 226, 138, 0.45);
		padding-left: 1rem;
		margin-left: 0.5rem;
	}
}

.e101-pa-flow__marker {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--e101-pa-slate) 0%, #1f2937 100%);
	color: var(--e101-pa-accent);
	font-weight: 700;
	font-size: 1rem;
	margin-bottom: 0.85rem;
	box-shadow:
		0 4px 16px rgba(17, 24, 39, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	flex-shrink: 0;
	border: 1px solid rgba(88, 226, 138, 0.25);
}

.e101-pa-flow__title {
	margin: 0 0 0.4rem;
	font-size: 1rem;
	font-weight: 650;
	color: var(--e101-pa-slate);
	line-height: 1.22;
}

.e101-pa-flow__desc {
	margin: 0;
	font-size: 0.84rem;
	color: var(--e101-pa-muted);
	line-height: 1.5;
}

@media (min-width: 768px) {
	.e101-pa-flow--practice .e101-pa-flow__desc {
		min-height: 4.5em;
	}
}

/* --- Capability cards (static) --- */
.e101-pa-cap-list {
	display: flex;
	flex-direction: column;
	gap: clamp(1rem, 2vw, 1.25rem);
	margin-top: 0.5rem;
}

.e101-pa-cap--static {
	border-radius: var(--e101-pa-radius);
	border: 1px solid var(--e101-pa-border);
	background: var(--e101-pa-white);
	box-shadow: var(--e101-pa-shadow);
	padding: clamp(1.15rem, 2.5vw, 1.45rem) clamp(1.2rem, 2.5vw, 1.5rem);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.e101-pa-cap__header {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	min-width: 0;
}

.e101-pa-cap__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 12px;
	background: linear-gradient(145deg, #f3f4f6, #e5e7eb);
	color: var(--e101-pa-slate-mid);
	box-shadow: inset 0 0 0 1px rgba(88, 226, 138, 0.28);
	flex-shrink: 0;
}

.e101-pa-cap__titles {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.e101-pa-cap__title {
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.08rem);
	font-weight: 650;
	color: var(--e101-pa-slate);
	line-height: 1.25;
	letter-spacing: -0.02em;
}

.e101-pa-cap__tagline {
	margin: 0;
	font-size: 0.88rem;
	color: var(--e101-pa-muted);
	line-height: 1.45;
}

.e101-pa-cap__body {
	margin: 0;
	font-size: 0.93rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.55;
	max-width: 62rem;
}

.e101-pa-cap__outcome {
	margin: 0.2rem 0 0;
	padding-top: 0;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--e101-pa-slate);
}

.e101-pa-cap__outcome strong {
	font-weight: 650;
}

/* --- Operations (real event delivery) --- */
.e101-pa-ops__intro {
	margin-bottom: 1.35rem;
}

.e101-pa-ops-grid {
	display: grid;
	gap: clamp(1rem, 2vw, 1.25rem);
	margin-top: 0;
}

@media (min-width: 900px) {
	.e101-pa-ops-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto auto;
	}
}

.e101-pa-ops-panel {
	background: var(--e101-pa-white);
	border: 1px solid var(--e101-pa-border);
	border-radius: calc(var(--e101-pa-radius) + 2px);
	padding: clamp(1.35rem, 2.5vw, 1.75rem) clamp(1.25rem, 2.5vw, 1.65rem);
	box-shadow: var(--e101-pa-shadow-lg);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 100%;
	position: relative;
	overflow: hidden;
}

.e101-pa-ops-panel::after {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--e101-pa-accent), rgba(88, 226, 138, 0.2));
	opacity: 0.85;
	pointer-events: none;
}

.e101-pa-ops-panel--b::after,
.e101-pa-ops-panel--d::after {
	background: linear-gradient(90deg, rgba(17, 24, 39, 0.35), var(--e101-pa-accent));
}

.e101-pa-ops-panel__head {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.e101-pa-ops-panel__icon {
	display: flex;
	width: 3rem;
	height: 3rem;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: var(--e101-pa-slate);
	color: var(--e101-pa-accent);
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
}

.e101-pa-ops-panel__title {
	margin: 0;
	font-size: clamp(1.05rem, 1.8vw, 1.15rem);
	font-weight: 650;
	line-height: 1.25;
	color: var(--e101-pa-slate);
	flex: 1;
	min-width: 0;
}

.e101-pa-ops-panel__lead {
	margin: 0;
	font-size: 0.95rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.55;
	max-width: 52em;
}

.e101-pa-ops-panel__outcome {
	margin: 0.5rem 0 0;
	padding-top: 0;
	margin-top: auto;
	font-size: 0.95rem;
	line-height: 1.45;
	color: var(--e101-pa-slate);
}

.e101-pa-ops-panel__outcome strong {
	font-weight: 650;
}

/* --- Who: role cards (how | benefits, then outcome full width) --- */
.e101-pa-section--who {
	background: linear-gradient(to bottom, #f9fafb, #ffffff);
	padding-top: clamp(2.5rem, 5vw, 3.25rem);
	padding-bottom: clamp(2.5rem, 5vw, 3.25rem);
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
	border-radius: var(--e101-pa-radius);
	border: 1px solid rgba(17, 24, 39, 0.06);
}

.e101-pa-role-list {
	display: flex;
	flex-direction: column;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	margin-top: 0.5rem;
}

.e101-pa-role--card {
	border-radius: calc(var(--e101-pa-radius) + 2px);
	border: 1px solid rgba(17, 24, 39, 0.1);
	background: var(--e101-pa-white);
	box-shadow: var(--e101-pa-shadow);
	overflow: hidden;
}

.e101-pa-role__header {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	padding: clamp(1.1rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.5rem);
	border-bottom: 1px solid rgba(17, 24, 39, 0.06);
	background: linear-gradient(180deg, #fafbfc 0%, #fff 100%);
}

.e101-pa-role__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 10px;
	background: var(--e101-pa-slate);
	color: var(--e101-pa-accent);
	flex-shrink: 0;
}

.e101-pa-role__titles {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.e101-pa-role__title {
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.08rem);
	font-weight: 650;
	color: var(--e101-pa-slate);
	line-height: 1.22;
	letter-spacing: -0.02em;
}

.e101-pa-role__tagline {
	margin: 0;
	font-size: 0.88rem;
	color: var(--e101-pa-muted);
	line-height: 1.45;
}

.e101-pa-role__body {
	padding: clamp(1.1rem, 2vw, 1.35rem) clamp(1.15rem, 2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem);
}

.e101-pa-role__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: start;
}

@media (max-width: 768px) {
	.e101-pa-role__grid {
		grid-template-columns: 1fr;
	}
}

.e101-pa-role__col--left {
	min-width: 0;
}

.e101-pa-role__col--right {
	min-width: 0;
	padding: clamp(1rem, 2vw, 1.35rem);
	border-radius: var(--e101-pa-radius-sm);
	background: #f3f4f6;
	border: 1px solid rgba(17, 24, 39, 0.08);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.e101-pa-role__label {
	margin: 0 0 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--e101-pa-slate);
}

.e101-pa-role__col--right .e101-pa-role__label {
	color: var(--e101-pa-slate-mid);
}

.e101-pa-role__ul {
	margin: 0;
	padding-left: 1.1rem;
	font-size: 0.88rem;
	color: var(--e101-pa-slate-mid);
	line-height: 1.5;
}

.e101-pa-role__ul li {
	margin-bottom: 0.35rem;
}

.e101-pa-role__ul li:last-child {
	margin-bottom: 0;
}

.e101-pa-role__ul--gives {
	color: var(--e101-pa-slate-mid);
}

.e101-pa-role__outcome {
	margin-top: clamp(1rem, 2vw, 1.25rem);
	padding: clamp(0.85rem, 2vw, 1.05rem) clamp(1rem, 2vw, 1.2rem);
	border-radius: var(--e101-pa-radius-sm);
	background: rgba(88, 226, 138, 0.14);
	border: 1px solid rgba(88, 226, 138, 0.45);
}

.e101-pa-role__outcome-label {
	margin: 0 0 0.35rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(17, 24, 39, 0.65);
}

.e101-pa-role__outcome-text {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--e101-pa-slate);
	line-height: 1.4;
	letter-spacing: -0.015em;
}

/* --- Closing --- */
.e101-pa-section--closing {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-bottom: 0;
	padding: clamp(2.5rem, 5vw, 3.75rem) clamp(1.25rem, 4vw, 2rem);
	background: linear-gradient(165deg, #0b1220 0%, var(--e101-pa-slate) 55%, #0f172a 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.e101-pa-section--closing::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 80% 0%, rgba(88, 226, 138, 0.1), transparent 55%);
	pointer-events: none;
}

.e101-pa-closing__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}

.e101-pa-closing__title {
	margin: 0 0 1rem;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 600;
	line-height: 1.28;
	color: #fff;
}

.e101-pa-closing__lede {
	margin: 0 auto 1.5rem;
	font-size: 1rem;
	line-height: 1.58;
	color: rgba(255, 255, 255, 0.88);
	max-width: 44em;
}

.e101-pa-closing__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	align-items: center;
}

/* --- Buttons --- */
.e101-pa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.25rem;
	border-radius: var(--e101-pa-radius-sm);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.e101-pa-btn--lg {
	padding: 0.8rem 1.5rem;
	font-size: 1rem;
}

.e101-pa-btn--primary {
	background: var(--e101-pa-accent);
	color: var(--e101-pa-slate);
	border-color: rgba(17, 24, 39, 0.08);
}

.e101-pa-btn--primary:hover {
	filter: brightness(0.97);
}

.e101-pa-btn--on-dark {
	background: var(--e101-pa-accent);
	color: var(--e101-pa-slate);
	border-color: rgba(17, 24, 39, 0.08);
}

.e101-pa-btn--on-dark:hover {
	filter: brightness(0.97);
}

.e101-pa-btn--outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
}

.e101-pa-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.5);
}

.e101-pa-btn--ghost-light {
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	border-color: transparent;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.e101-pa-btn--ghost-light:hover {
	color: #fff;
}

.e101-pa-btn:focus-visible {
	outline: 2px solid var(--e101-pa-accent);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.e101-pa-btn {
		transition: none;
	}
}

/* Marketing system: allow wide About hero title */
body.event101-public-marketing .e101-pa-hero--split .e101-pa-hero__title {
	max-width: none;
}

body.event101-public-marketing .e101-pa-hero--split .e101-pa-hero__lede {
	max-width: 40rem;
}
