/**
 * Event101 - Public marketing homepage (scoped to .e101-ph; body hook for theme title only).
 */

/* Theme title hiding for marketing pages: see event101-public-homepage-shell.css (body.event101-public-marketing). */

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

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

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

.e101-ph-hero::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.45;
	pointer-events: none;
}

.e101-ph-hero::after {
	content: "";
	position: absolute;
	width: 140%;
	height: 60%;
	top: -20%;
	right: -35%;
	background: radial-gradient(ellipse at center, rgba(88, 226, 138, 0.12) 0%, transparent 55%);
	pointer-events: none;
}

.e101-ph-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
	max-width: 1160px;
	margin: 0 auto;
}

@media (min-width: 960px) {
	.e101-ph-hero__grid {
		grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
		align-items: center;
	}
}

.e101-ph-hero__copy {
	min-width: 0;
}

.e101-ph-hero__brand {
	margin-bottom: 1.25rem;
}

.e101-ph-hero__logo {
	display: block;
	max-height: 48px;
	width: auto;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.e101-ph-hero__wordmark {
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	color: #ffffff;
}

.e101-ph-hero .e101-ph-hero__title {
	font-size: clamp(1.85rem, 4.2vw, 2.65rem);
	font-weight: 600;
	line-height: 1.15;
	margin: 0 0 1rem;
	letter-spacing: -0.02em;
	color: #ffffff;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.e101-ph-hero .e101-ph-hero__lede {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 1.75rem;
	max-width: 38em;
}

/* Hero mock dashboard */
.e101-ph-hero-mock {
	position: relative;
	border-radius: var(--e101-ph-radius);
	background: rgba(15, 23, 42, 0.65);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--e101-ph-shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.e101-ph-hero-mock__glow {
	position: absolute;
	inset: -40% -20% auto;
	height: 80%;
	background: radial-gradient(circle at 30% 0%, rgba(88, 226, 138, 0.18), transparent 50%);
	pointer-events: none;
}

.e101-ph-hero-mock__shell {
	position: relative;
	display: flex;
	min-height: 220px;
}

.e101-ph-hero-mock__sidebar {
	width: 44px;
	flex-shrink: 0;
	background: rgba(0, 0, 0, 0.25);
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	padding: 0.75rem 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	align-items: center;
}

.e101-ph-hero-mock__sb-item {
	width: 22px;
	height: 22px;
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
}

.e101-ph-hero-mock__sb-item--active {
	background: rgba(88, 226, 138, 0.35);
	box-shadow: 0 0 0 1px rgba(88, 226, 138, 0.5);
}

.e101-ph-hero-mock__main {
	flex: 1;
	padding: 0.85rem 1rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
}

.e101-ph-hero-mock__topbar {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-wrap: wrap;
}

.e101-ph-hero-mock__pill {
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
	background: rgba(88, 226, 138, 0.25);
	color: #bbf7d0;
}

.e101-ph-hero-mock__tb-line {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	min-width: 40px;
}

.e101-ph-hero-mock__chip {
	font-size: 0.7rem;
	padding: 0.2rem 0.5rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #e5e7eb;
}

.e101-ph-hero-mock__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem;
}

.e101-ph-hero-mock__mini {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.5rem 0.55rem;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.e101-ph-hero-mock__mini-label {
	font-size: 0.65rem;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.e101-ph-hero-mock__mini-bar {
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.15);
}

.e101-ph-hero-mock__mini-bar--accent {
	background: linear-gradient(90deg, rgba(88, 226, 138, 0.5), rgba(88, 226, 138, 0.9));
}

/* --- Launcher --- */
.e101-ph-launcher {
	position: relative;
	margin-top: 0.25rem;
}

.e101-ph-launcher__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.e101-ph-launcher__shell {
	position: relative;
}

.e101-ph-launcher__field {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	background: var(--e101-ph-white);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 0.85rem 1.15rem;
	color: var(--e101-ph-slate);
	box-shadow: var(--e101-ph-shadow-lg);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.e101-ph-launcher__field:focus-within {
	box-shadow: var(--e101-ph-shadow-lg), 0 0 0 3px rgba(88, 226, 138, 0.45);
	border-color: rgba(88, 226, 138, 0.45);
}

.e101-ph-launcher__icon {
	display: flex;
	color: var(--e101-ph-muted);
	flex-shrink: 0;
}

.e101-ph-launcher__icon svg {
	display: block;
}

.e101-ph-launcher__input {
	flex: 1;
	border: 0;
	outline: none;
	font-size: 1.1rem;
	background: transparent;
	color: var(--e101-ph-slate);
	min-width: 0;
}

.e101-ph-launcher__input::placeholder {
	color: #9ca3af;
}

.e101-ph-launcher__panel {
	margin-top: 0.65rem;
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	border-radius: var(--e101-ph-radius);
	box-shadow: var(--e101-ph-shadow-lg);
	padding: 0.4rem;
	max-height: min(72vh, 440px);
	overflow-y: auto;
}

.e101-ph-launcher__option {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	padding: 0.95rem 1rem;
	border-radius: var(--e101-ph-radius-sm);
	text-decoration: none;
	color: inherit;
	border: 1px solid transparent;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}

.e101-ph-launcher__option:hover {
	background: var(--e101-ph-surface-2);
	border-color: var(--e101-ph-border);
}

.e101-ph-launcher__option:focus-visible {
	outline: 2px solid var(--e101-ph-accent);
	outline-offset: 2px;
}

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

.e101-ph-launcher__option-body {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
	flex: 1;
}

.e101-ph-launcher__option-label {
	font-weight: 600;
	font-size: 1rem;
}

.e101-ph-launcher__option-desc {
	font-size: 0.875rem;
	color: var(--e101-ph-muted);
	line-height: 1.35;
}

.e101-ph-launcher__option-arrow {
	flex-shrink: 0;
	color: #9ca3af;
	display: flex;
	transition: transform 0.15s ease, color 0.15s ease;
}

.e101-ph-launcher__option:hover .e101-ph-launcher__option-arrow {
	color: var(--e101-ph-accent);
	transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
	.e101-ph-launcher__option:hover .e101-ph-launcher__option-arrow {
		transform: none;
	}
}

.e101-ph-launcher-anchor {
	width: 100%;
	max-width: 42rem;
}

.e101-ph-launcher--primary .e101-ph-launcher__field {
	padding: 1rem 1.35rem;
	border-radius: 16px;
	border-width: 2px;
	border-color: rgba(88, 226, 138, 0.45);
	box-shadow: var(--e101-ph-shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.07), 0 14px 44px rgba(0, 0, 0, 0.22);
}

.e101-ph-launcher--primary .e101-ph-launcher__input {
	font-size: 1.2rem;
	font-weight: 600;
}

/* --- Sections --- */
.e101-ph-section {
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.e101-ph-section__inner--wide {
	max-width: 1160px;
	margin: 0 auto;
}

.e101-ph-section__head {
	margin-bottom: 1.5rem;
}

.e101-ph-section__title {
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 600;
	margin: 0 0 0.65rem;
	color: var(--e101-ph-slate);
	letter-spacing: -0.02em;
}

.e101-ph-section__intro {
	margin: 0;
	color: var(--e101-ph-muted);
	max-width: 42em;
	font-size: 1rem;
}

.e101-ph-section--intel.e101-ph-section--activity {
	position: relative;
	border-radius: var(--e101-ph-radius);
	padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
	background: linear-gradient(180deg, rgba(88, 226, 138, 0.06) 0%, var(--e101-ph-white) 28%);
	border: 1px solid rgba(88, 226, 138, 0.22);
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.e101-ph-activity-filters {
	margin: 0 0 1rem;
	padding: 0;
	border: 0;
}

.e101-ph-activity-filters__legend {
	padding: 0;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--e101-ph-muted);
	margin-bottom: 0.5rem;
}

.e101-ph-why__stack {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	max-width: 44rem;
}

.e101-ph-why__item {
	border: 1px solid var(--e101-ph-border);
	border-radius: var(--e101-ph-radius-sm);
	background: var(--e101-ph-white);
	box-shadow: var(--e101-ph-shadow);
	padding: 0.9rem 1.05rem 1rem;
}

.e101-ph-why__heading {
	margin: 0 0 0.45rem;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--e101-ph-slate);
	line-height: 1.32;
	letter-spacing: -0.02em;
}

.e101-ph-why__body {
	margin: 0;
	padding: 0;
	font-size: 0.95rem;
	color: var(--e101-ph-muted);
	line-height: 1.5;
}

.e101-ph-pathways__solutions {
	margin: 0 0 1.25rem;
	font-size: 0.95rem;
}

.e101-ph-link {
	font-weight: 600;
	color: var(--e101-ph-slate-mid);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.e101-ph-link:hover {
	color: var(--e101-ph-slate);
}

.e101-ph-link:focus-visible {
	outline: 2px solid var(--e101-ph-accent);
	outline-offset: 2px;
	border-radius: 4px;
}

.e101-ph-path-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.e101-ph-path-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.e101-ph-path-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.e101-ph-path-card {
	margin: 0;
}

.e101-ph-path-card__link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	min-height: 100%;
	padding: 1.25rem 1.25rem 1.35rem;
	border-radius: var(--e101-ph-radius);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.e101-ph-path-card__link:hover {
	border-color: rgba(88, 226, 138, 0.45);
	box-shadow: var(--e101-ph-shadow-lg);
}

.e101-ph-path-card__link:focus-visible {
	outline: 2px solid var(--e101-ph-accent);
	outline-offset: 3px;
}

.e101-ph-path-card__link--inactive {
	cursor: not-allowed;
	opacity: 0.65;
}

.e101-ph-path-card__title {
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
	color: var(--e101-ph-slate);
}

.e101-ph-path-card__outcome {
	font-size: 0.9rem;
	color: var(--e101-ph-muted);
	line-height: 1.45;
	flex: 1;
}

.e101-ph-path-card__cta {
	margin-top: 0.35rem;
	align-self: flex-start;
	pointer-events: none;
}

.e101-ph-section--how-model .e101-ph-path-card__title {
	margin: 0;
}

.e101-ph-section--how-model .e101-ph-path-card__outcome {
	margin: 0;
}

.e101-ph-section--access .e101-ph-access__intro {
	margin-bottom: 1.5rem;
}

.e101-ph-access__grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.e101-ph-access__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1100px) {
	.e101-ph-access__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.e101-ph-access-card {
	margin: 0;
	padding: 1.25rem 1.25rem 1.35rem;
	border-radius: var(--e101-ph-radius);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	min-height: 100%;
}

.e101-ph-access-card__title {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--e101-ph-slate);
	letter-spacing: -0.02em;
}

.e101-ph-access-card__desc {
	margin: 0;
	flex: 1;
	font-size: 0.9rem;
	line-height: 1.45;
	color: var(--e101-ph-muted);
}

.e101-ph-access-card__btn {
	align-self: flex-start;
	margin-top: 0.25rem;
}

.e101-ph-access-card__btn--disabled {
	cursor: default;
	opacity: 0.55;
	pointer-events: none;
}

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

.e101-ph-section--process.e101-ph-section--muted {
	background: linear-gradient(180deg, #fff 0%, var(--e101-ph-surface-2) 100%);
	margin-left: 0;
	margin-right: 0;
}

/* Activity split */
.e101-ph-activity {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.e101-ph-activity {
		grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
		align-items: stretch;
	}
}

.e101-ph-activity-map {
	border-radius: var(--e101-ph-radius);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	overflow: hidden;
	height: 100%;
	min-height: 260px;
	display: flex;
	flex-direction: column;
}

.e101-ph-activity-map__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.85rem 1rem;
	border-bottom: 1px solid var(--e101-ph-border);
	background: linear-gradient(180deg, #fafafa, #fff);
}

.e101-ph-activity-map__title {
	font-weight: 600;
	font-size: 0.95rem;
}

.e101-ph-activity-map__badge {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	background: rgba(88, 226, 138, 0.2);
	color: var(--e101-ph-slate-mid);
}

.e101-ph-activity-map__canvas {
	flex: 1;
	position: relative;
	background: linear-gradient(165deg, #e8f2ec 0%, #dfe8ee 45%, #d4dce4 100%);
	min-height: 200px;
}

.e101-ph-activity-map__grid {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(17, 24, 39, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, 0.06) 1px, transparent 1px);
	background-size: 28px 28px;
	opacity: 0.5;
}

.e101-ph-activity-map__pin {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50% 50% 50% 0;
	transform: rotate(-45deg);
	background: var(--e101-ph-slate);
	top: 38%;
	left: 42%;
	box-shadow: 0 2px 6px rgba(17, 24, 39, 0.25);
}

.e101-ph-activity-map__pin--b {
	left: 62%;
	top: 55%;
	background: var(--e101-ph-accent);
}

.e101-ph-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.e101-ph-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 1rem;
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	border: 1px solid var(--e101-ph-border);
	background: var(--e101-ph-white);
	color: var(--e101-ph-slate-soft);
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.e101-ph-activity-cards {
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.e101-ph-activity-card {
	position: relative;
	padding: 1rem 1.1rem 1rem 1.1rem;
	border-radius: var(--e101-ph-radius-sm);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	display: grid;
	gap: 0.25rem;
}

.e101-ph-activity-card__title {
	font-weight: 600;
	font-size: 0.95rem;
}

.e101-ph-activity-card__meta {
	font-size: 0.82rem;
	color: var(--e101-ph-muted);
}

.e101-ph-activity-card__chip {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
	background: var(--e101-ph-surface);
	color: var(--e101-ph-muted);
}

.e101-ph-activity__empty {
	padding: 1rem 1.1rem;
	border-radius: var(--e101-ph-radius-sm);
	border: 1px dashed #cbd5e1;
	background: linear-gradient(180deg, rgba(88, 226, 138, 0.06), transparent);
	margin-bottom: 1rem;
}

.e101-ph-activity__empty-title {
	margin: 0 0 0.35rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--e101-ph-slate);
}

.e101-ph-activity__empty-desc {
	margin: 0;
	font-size: 0.875rem;
	color: var(--e101-ph-muted);
}

.e101-ph-activity__cta {
	margin-top: 0.25rem;
}

/* Role cards */
.e101-ph-role-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
}

@media (min-width: 640px) {
	.e101-ph-role-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.e101-ph-role-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.e101-ph-role-card {
	margin: 0;
}

.e101-ph-role-card__link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.65rem;
	min-height: 100%;
	padding: 1.35rem 1.35rem 1.35rem 1.25rem;
	border-radius: var(--e101-ph-radius);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	text-decoration: none;
	color: inherit;
	position: relative;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.e101-ph-role-card__link:hover {
	border-color: rgba(88, 226, 138, 0.45);
	box-shadow: var(--e101-ph-shadow-lg);
	transform: translateY(-2px);
}

.e101-ph-role-card__link:focus-visible {
	outline: 2px solid var(--e101-ph-accent);
	outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
	.e101-ph-role-card__link:hover {
		transform: none;
	}
}

.e101-ph-role-card__link--inactive {
	cursor: default;
	opacity: 0.72;
}

.e101-ph-role-card__link--inactive:hover {
	transform: none;
	border-color: var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
}

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

.e101-ph-role-card__title {
	font-weight: 700;
	font-size: 1.05rem;
	line-height: 1.25;
	padding-right: 1.5rem;
}

.e101-ph-role-card__copy {
	font-size: 0.9rem;
	color: var(--e101-ph-muted);
	line-height: 1.45;
	flex: 1;
}

.e101-ph-role-card__cta {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	color: #9ca3af;
	transition: color 0.15s ease, transform 0.15s ease;
}

.e101-ph-role-card__link:hover .e101-ph-role-card__cta {
	color: var(--e101-ph-accent);
	transform: translateX(2px);
}

/* Process row */
.e101-ph-process {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (min-width: 900px) {
	.e101-ph-process {
		flex-direction: row;
		align-items: stretch;
		gap: 0;
	}
}

.e101-ph-process__step {
	position: relative;
	flex: 1;
	min-width: 0;
}

@media (min-width: 900px) {
	.e101-ph-process__step:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 50%;
		right: -12px;
		width: 24px;
		height: 2px;
		background: linear-gradient(90deg, var(--e101-ph-border), rgba(88, 226, 138, 0.35));
		transform: translateY(-50%);
		z-index: 0;
	}
}

.e101-ph-process__card {
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 1.15rem 1rem;
	border-radius: var(--e101-ph-radius-sm);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0 0 0.75rem;
}

@media (min-width: 900px) {
	.e101-ph-process__card {
		margin: 0 0.5rem 0 0;
	}
}

.e101-ph-process__n {
	width: 2.1rem;
	height: 2.1rem;
	border-radius: 10px;
	background: rgba(88, 226, 138, 0.2);
	color: var(--e101-ph-slate);
	font-weight: 800;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.e101-ph-process__t {
	font-weight: 600;
	font-size: 0.88rem;
	line-height: 1.35;
}

/* SaaS workspace mock */
.e101-ph-saas {
	display: flex;
	border-radius: var(--e101-ph-radius);
	overflow: hidden;
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow-lg);
	background: #fff;
	min-height: 280px;
}

.e101-ph-saas__rail {
	width: 52px;
	flex-shrink: 0;
	background: linear-gradient(180deg, #1f2937, #111827);
	padding: 0.75rem 0.45rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
}

.e101-ph-saas__rail-logo {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: rgba(88, 226, 138, 0.35);
	margin-bottom: 0.25rem;
}

.e101-ph-saas__rail-i {
	width: 22px;
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, 0.15);
}

.e101-ph-saas__rail-i.is-active {
	background: rgba(88, 226, 138, 0.85);
	width: 24px;
}

.e101-ph-saas__stage {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: #f8fafc;
}

.e101-ph-saas__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.65rem 1rem;
	background: #fff;
	border-bottom: 1px solid var(--e101-ph-border);
}

.e101-ph-saas__title {
	font-weight: 700;
	font-size: 0.85rem;
	color: var(--e101-ph-slate);
}

.e101-ph-saas__status {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.25rem 0.55rem;
	border-radius: 6px;
	background: var(--e101-ph-surface);
	color: var(--e101-ph-muted);
}

.e101-ph-saas__grid {
	flex: 1;
	padding: 1rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 0.75rem;
}

.e101-ph-saas__card {
	position: relative;
	background: #fff;
	border: 1px solid var(--e101-ph-border);
	border-radius: 10px;
	padding: 0.85rem 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
	min-height: 88px;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.e101-ph-saas__card-label {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--e101-ph-slate-soft);
}

.e101-ph-saas__chip {
	align-self: flex-start;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0.2rem 0.45rem;
	border-radius: 999px;
	background: var(--e101-ph-surface);
	color: var(--e101-ph-muted);
}

.e101-ph-saas__card--ok .e101-ph-saas__chip {
	background: rgba(88, 226, 138, 0.22);
	color: #166534;
}

.e101-ph-saas__card--warn .e101-ph-saas__chip {
	background: #fef3c7;
	color: #92400e;
}

.e101-ph-saas__spark {
	position: absolute;
	bottom: 0.5rem;
	right: 0.5rem;
	width: 28%;
	height: 3px;
	border-radius: 2px;
	background: linear-gradient(90deg, transparent, rgba(88, 226, 138, 0.5));
}

/* Training split */
.e101-ph-training {
	display: grid;
	gap: 2rem;
	align-items: start;
}

@media (min-width: 880px) {
	.e101-ph-training {
		grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
		gap: 2.5rem;
	}
}

.e101-ph-training__lede {
	margin: 0 0 1.25rem;
	color: var(--e101-ph-muted);
	font-size: 1rem;
	max-width: 32em;
}

.e101-ph-training__cards {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.75rem;
}

.e101-ph-training-card {
	padding: 1rem 1.1rem;
	border-radius: var(--e101-ph-radius-sm);
	background: var(--e101-ph-white);
	border: 1px solid var(--e101-ph-border);
	box-shadow: var(--e101-ph-shadow);
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.e101-ph-training-card__title {
	font-weight: 700;
	font-size: 0.95rem;
}

.e101-ph-training-card__desc {
	font-size: 0.85rem;
	color: var(--e101-ph-muted);
	line-height: 1.4;
}

/* Closing band */
.e101-ph-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.5rem) clamp(1.25rem, 4vw, 2rem);
	background: linear-gradient(165deg, #0b1220 0%, var(--e101-ph-slate) 55%, #0f172a 100%);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.e101-ph-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-ph-closing__inner {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.e101-ph-closing__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.35rem, 3vw, 1.85rem);
	font-weight: 700;
	line-height: 1.25;
	color: #fff;
}

.e101-ph-closing__lede {
	margin: 0 auto 1.5rem;
	font-size: clamp(0.95rem, 2vw, 1.05rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.88);
	max-width: 36em;
}

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

/* Buttons */
.e101-ph-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.25rem;
	border-radius: 10px;
	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, transform 0.12s ease;
}

.e101-ph-btn--lg {
	padding: 0.8rem 1.5rem;
	font-size: 1rem;
	border-radius: 11px;
}

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

.e101-ph-btn--primary:hover {
	filter: brightness(0.96);
}

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

.e101-ph-btn--on-dark {
	background: var(--e101-ph-accent);
	color: var(--e101-ph-slate);
	border-color: transparent;
}

.e101-ph-btn--on-dark:hover {
	filter: brightness(1.03);
}

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

.e101-ph-btn--outline-light:hover {
	background: rgba(255, 255, 255, 0.08);
}

.e101-ph-btn--outline-light:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.e101-ph-btn--ghost-light {
	background: transparent;
	color: #e5e7eb;
	border-color: rgba(255, 255, 255, 0.2);
}

.e101-ph-btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
}

.e101-ph-btn--secondary {
	background: var(--e101-ph-white);
	color: var(--e101-ph-slate);
	border-color: var(--e101-ph-border);
}

.e101-ph-btn--secondary:focus-visible {
	outline: 2px solid var(--e101-ph-slate);
	outline-offset: 2px;
}
