:root {
	--bg: #080a0f;
	--panel: #111722;
	--card: #171f2c;
	--story-active: #1c2635;
	--ink: #eef3f7;
	--muted: #a3afbb;
	--soft: #d8e0e8;
	--line: #2a3442;
	--accent: #52f0a8;
	--accent-2: #70c8ff;
	--accent-soft: rgba(82, 240, 168, 0.12);
	--accent-2-soft: rgba(112, 200, 255, 0.1);
	--band: #0b0f14;
	--band-blue: #0a1111;
	--section-space: 64px;
	--page-gutter: calc((100vw - min(1120px, calc(100vw - 32px))) / 2);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

a {
	color: inherit;
	text-decoration: none;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(1120px, calc(100% - 32px));
	height: 48px;
	margin: 0 auto;
	background: var(--bg);
	box-shadow: 0 0 0 100vmax var(--bg);
	clip-path: inset(0 -100vmax);
}

.breadcrumb,
.nav-link {
	display: inline-flex;
	align-items: center;
	height: 100%;
	line-height: 1;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 18px;
	height: 100%;
	color: var(--muted);
	font-size: 0.92rem;
	line-height: 1;
}

.nav-links a {
	position: relative;
	display: inline-flex;
	align-items: center;
	height: 100%;
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	color: var(--ink);
	background: rgba(18, 28, 41, 0.88);
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.menu-toggle span + span {
	margin-top: 4px;
}

.breadcrumb {
	gap: 10px;
	min-width: 0;
	color: var(--muted);
	font-size: 0.86rem;
	font-weight: 400;
}

.breadcrumb a {
	color: var(--ink);
	font-weight: 500;
}

.breadcrumb span {
	color: var(--accent);
	font-size: 0.72rem;
}

.breadcrumb strong {
	overflow: hidden;
	color: var(--muted);
	font-weight: 400;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.nav-link {
	color: var(--muted);
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
	color: var(--accent);
	outline: 0;
}

.site-header .nav-links a[aria-current="page"],
.site-header .nav-links a.is-active {
	color: var(--accent);
	box-shadow: inset 0 -2px 0 var(--accent);
}

.resume-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--soft);
	font-size: 0.9rem;
	font-weight: 400;
}

.resume-link svg {
	width: 15px;
	height: 15px;
	stroke: var(--accent);
	stroke-width: 2;
	fill: none;
}

.resume-link .brand-icon {
	fill: var(--accent);
	stroke: none;
}

.resume-link:hover,
.resume-link:focus-visible {
	color: var(--accent);
	outline: 0;
}

.shell {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto 64px;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 500px;
	margin-top: 24px;
	padding: clamp(44px, 8vw, 86px);
	border: 1px solid var(--line);
	border-radius: 8px;
	background:
		linear-gradient(115deg, rgba(105, 183, 255, 0.18), transparent 42%),
		linear-gradient(290deg, rgba(255, 107, 181, 0.2), transparent 46%),
		var(--panel);
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 23, 34, 0.98) 0%, rgba(17, 23, 34, 0.92) 38%, rgba(17, 23, 34, 0.74) 66%, rgba(17, 23, 34, 0.9) 100%),
		linear-gradient(290deg, rgba(101, 221, 172, 0.22), transparent 52%),
		url("../images/tracks/learning/learning-track-hero.jpg");
	background-position: center, center, right center;
	background-repeat: no-repeat;
	background-size: cover, cover, auto 100%;
	opacity: 0.5;
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 10px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.hero > div {
	position: relative;
	z-index: 1;
}

.kicker {
	margin: 0 0 12px;
	color: var(--accent);
	font-size: 1rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1 {
	max-width: 820px;
	margin-bottom: 20px;
	font-size: clamp(2.15rem, 4.5vw, 4.2rem);
	line-height: 1;
	letter-spacing: 0;
}

.lede {
	max-width: 720px;
	margin-bottom: 0;
	color: var(--muted);
	font-size: 1.2rem;
}

.proof-card,
.cta {
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--card);
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 28px 0 0;
	padding: 0;
	color: var(--soft);
	list-style: none;
}

.tag-list li {
	padding: 7px 10px;
	border: 1px solid color-mix(in srgb, var(--accent) 34%, var(--line));
	border-radius: 999px;
	background: rgba(8, 10, 15, 0.34);
	font-size: 0.86rem;
	font-weight: 800;
}

.proof-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
	padding: 34px 0 var(--section-space);
}

.proof-card {
	padding: 18px;
}

.proof-card strong {
	display: block;
	margin-bottom: 8px;
	font-size: 1.12rem;
	line-height: 1.1;
}

.proof-card span {
	color: var(--muted);
	font-size: 0.94rem;
}

.section-heading {
	max-width: 720px;
	margin-bottom: 20px;
}

.section-heading h2 {
	margin-bottom: 10px;
	font-size: clamp(1.75rem, 3vw, 2.85rem);
	line-height: 1.08;
	letter-spacing: 0;
}

.release-stage {
	margin-inline: calc(var(--page-gutter) * -1);
	padding: var(--section-space) var(--page-gutter);
	background:
		linear-gradient(115deg, rgba(105, 183, 255, 0.08), transparent 42%),
		var(--band-blue);
}

.release-carousel {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	gap: 12px;
	align-items: center;
}

.release-row {
	display: grid;
	grid-auto-columns: minmax(150px, 180px);
	grid-auto-flow: column;
	gap: 28px;
	overflow-x: auto;
	padding: 2px 0 16px;
	scroll-snap-type: x proximity;
	scrollbar-width: thin;
	scrollbar-color: var(--line) transparent;
}

.release-arrow {
	display: grid;
	place-items: center;
	width: 42px;
	aspect-ratio: 1;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--card);
	color: var(--soft);
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.release-arrow:hover,
.release-arrow:focus-visible {
	border-color: var(--accent);
	color: var(--accent);
	transform: translateY(-1px);
	outline: 0;
}

.release-card {
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	aspect-ratio: 2 / 3;
	min-height: 240px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--card);
	scroll-snap-align: start;
	transition: border-color 180ms ease, transform 180ms ease;
}

.release-card:hover,
.release-card:focus-visible {
	border-color: var(--accent);
	transform: translateY(-2px);
	outline: 0;
}

.release-card .cover-art {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.release-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(8, 10, 15, 0) 62%, rgba(8, 10, 15, 0.72));
}

.release-card:hover .cover-art,
.release-card:focus-visible .cover-art {
	transform: scale(1.035);
}

.platforms {
	position: relative;
	z-index: 1;
	margin-inline: 14px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.platforms {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	align-items: center;
	margin-bottom: 14px;
}

.platforms img {
	width: 17px;
	height: 17px;
	object-fit: contain;
	filter: invert(1);
	opacity: 0.92;
}

.story-stage {
	padding: var(--section-space) 0 var(--section-space);
}

.story-stage .section-heading {
	max-width: 1040px;
}

.story-shell {
	position: relative;
	display: grid;
}

.story {
	grid-area: 1 / 1;
	overflow: hidden;
	display: grid;
	grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
	gap: 0;
	align-items: stretch;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--story-active);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 220ms ease, visibility 220ms ease;
}

.story.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.story-copy {
	display: flex;
	flex-direction: column;
	padding: 24px;
}

.story-copy h3 {
	max-width: 680px;
	margin-bottom: 26px;
	font-size: clamp(1.38rem, 2.15vw, 2.05rem);
	line-height: 1.04;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	background-clip: text;
	color: transparent;
}

.story-copy p {
	max-width: 760px;
	margin-bottom: 16px;
	color: var(--muted);
	font-size: 0.98rem;
}

.story-copy p a {
	color: var(--accent);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.story-copy p a:hover,
.story-copy p a:focus-visible {
	color: var(--accent-2);
	text-decoration-color: var(--accent-2);
	outline: 0;
}

.story-points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-top: auto;
	padding-top: 18px;
}

.story-points div {
	padding: 12px;
	border: 1px solid rgba(105, 183, 255, 0.34);
	border-radius: 8px;
	background: color-mix(in srgb, var(--accent) 9%, var(--card));
}

.story-points div:nth-child(2) {
	border-color: rgba(255, 107, 181, 0.34);
	background: color-mix(in srgb, var(--accent-2) 9%, var(--card));
}

.story-points strong {
	display: block;
	margin-bottom: 4px;
	color: var(--ink);
	font-size: 0.84rem;
	line-height: 1.12;
}

.story-points span {
	display: block;
	color: var(--muted);
	font-size: 0.74rem;
	font-weight: 700;
	line-height: 1.25;
}

.story-media {
	position: relative;
	overflow: hidden;
	min-height: 330px;
}

.story-media img,
.story-media video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-media.has-rotator img,
.story-media.has-rotator video {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 900ms ease;
}

.story-media.has-rotator img.active,
.story-media.has-rotator video.active {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.story-media.has-rotator img,
	.story-media.has-rotator video {
		transition: none;
	}
}

.story-toggle,
.read-more {
	display: none;
}

.pager,
.cta-actions {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-content: center;
	align-items: stretch;
	justify-content: stretch;
}

.cta-actions {
	padding: 34px 24px 34px 0;
}

.cta-actions .button {
	width: 100%;
}

.cta-actions .resume-link {
	justify-content: center;
	margin-top: 2px;
}

.pager {
	position: relative;
	z-index: 2;
	justify-content: flex-start;
	margin: 0 0 -1px;
}

.pager .kicker {
	color: var(--accent-2);
}

.pager-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: flex-start;
}

.pager button,
.button,
.text-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 15px;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: transparent;
	color: var(--soft);
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.pager button {
	gap: 8px;
	min-height: 44px;
	border-radius: 8px 8px 0 0;
	background: var(--panel);
	color: var(--muted);
}

.pager button span {
	color: var(--accent);
	font-size: 0.78rem;
}

.pager button[aria-selected="true"],
.button.primary {
	border-color: var(--accent-2);
	background: var(--accent-2);
	color: var(--bg);
}

.pager button[aria-selected="true"] {
	border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
	border-top-color: var(--accent);
	border-bottom-color: var(--story-active);
	background:
		linear-gradient(180deg, rgba(105, 183, 255, 0.12), transparent 72%),
		var(--story-active);
	color: var(--ink);
	box-shadow: inset 0 2px 0 var(--accent);
}

.button.secondary {
	border-color: var(--accent-2);
	background: var(--accent-2);
	color: var(--bg);
}

.cta .button.primary,
.cta .button.secondary {
	border-color: var(--accent);
	background: var(--accent);
}

.text-link {
	min-height: auto;
	padding: 0;
	border: 0;
	color: var(--accent);
}

.quote-block {
	position: relative;
	overflow: hidden;
	margin: 0 0 var(--section-space);
	padding: 34px clamp(24px, 5vw, 44px) 48px;
}

.quote-block::before {
	content: none;
	position: absolute;
	inset: 0;
	background-image: url("../images/site/pattern_82.png");
	background-size: 320px 320px;
	opacity: 0.1;
	pointer-events: none;
}

.quote-block p,
.quote-block cite {
	position: relative;
	z-index: 1;
}

.quote-block p {
	max-width: 900px;
	margin-bottom: 12px;
	color: var(--accent);
	font-size: clamp(1.45rem, 2.6vw, 2.5rem);
	font-weight: 560;
	line-height: 1.12;
	quotes: "“" "”";
}

.quote-block p::before {
	content: open-quote;
}

.quote-block p::after {
	content: close-quote;
}

.quote-block cite {
	color: var(--muted);
	font-style: normal;
}

.quote-block cite em {
	font-style: italic;
}

.maker-stage {
	margin-inline: calc(var(--page-gutter) * -1);
	padding: var(--section-space) var(--page-gutter);
	background: var(--band-blue);
}

.maker-stage .section-heading {
	max-width: 820px;
}

.story-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 34px;
	row-gap: 0;
}

.story-row {
	display: grid;
	grid-template-columns: 172px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
	margin: 6px 0;
	padding: 14px;
	border-top: 1px solid var(--line);
	border-radius: 8px;
	transition: background-color 180ms ease;
}

.story-row:hover,
.story-row:focus-visible {
	background: color-mix(in srgb, var(--card) 72%, transparent);
	outline: 0;
}

.story-thumb {
	display: flex;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border: 1px solid var(--line);
	border-radius: 6px;
	background: var(--raised);
}

.story-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.story-main {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.story-main h3 {
	margin: 0 0 8px;
	color: var(--ink);
	font-size: 1.2rem;
	line-height: 1.08;
}

.story-main p {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 0.92rem;
}

.story-main strong {
	align-self: flex-end;
	color: var(--accent-2);
	font-size: 0.9rem;
}

.story-empty {
	margin: 0;
	padding: 18px 0;
	color: var(--muted);
}

.discipline-crosslinks {
	display: flex;
	flex-wrap: nowrap;
	gap: 12px;
	align-items: baseline;
	justify-content: flex-end;
	width: 100%;
	margin: 18px auto 0;
	color: var(--muted);
	font-size: 0.92rem;
}

.discipline-crosslinks span {
	color: var(--soft);
	font-size: 0.92rem;
	font-weight: 400;
	text-align: center;
}

.discipline-crosslinks span::after {
	content: "→";
	margin-left: 12px;
	color: var(--muted);
	font-weight: 700;
}

.discipline-crosslinks a {
	text-decoration: none;
	text-underline-offset: 4px;
}

.discipline-crosslink-operations {
	color: #69b7ff;
}

.discipline-crosslink-creative {
	color: #ffe45e;
}

.discipline-crosslinks a:hover,
.discipline-crosslinks a:focus-visible {
	text-decoration: underline;
	text-decoration-color: currentColor;
	outline: 0;
}

.cta {
	display: grid;
	grid-template-columns: minmax(180px, 240px) minmax(0, 1fr) auto;
	gap: 28px;
	align-items: stretch;
	overflow: hidden;
	margin-top: 0;
	padding: 0;
}

.cta-copy {
	display: flex;
	align-items: center;
	padding: 34px 0;
}

.cta-portrait {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
}

.cta h2 {
	margin-bottom: 6px;
	font-size: clamp(1.55rem, 2.8vw, 2.5rem);
	line-height: 1.08;
}

.cta p {
	margin-bottom: 0;
	color: var(--muted);
}

@media (max-width: 860px) {
	.hero,
	.story.active,
	.cta {
		grid-template-columns: 1fr;
	}

	.cta-copy {
		padding: 24px 24px 0;
	}

	.cta-portrait {
		grid-row: 1;
		min-height: 260px;
		max-height: 360px;
	}

	.cta-actions {
		padding: 0 24px 24px;
	}

	.hero {
		min-height: auto;
		padding: 42px 26px;
	}

	.proof-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.story-list {
		grid-template-columns: 1fr;
	}

	.discipline-crosslinks {
		flex-direction: column;
		align-items: stretch;
		gap: 6px;
		justify-content: flex-start;
		margin-top: 22px;
	}

	.discipline-crosslinks span {
		flex-basis: auto;
		margin-bottom: 2px;
		text-align: left;
	}

	.discipline-crosslinks span::after {
		content: none;
	}

	.discipline-crosslinks a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 8px 0;
		font-size: 1rem;
	}

	.discipline-crosslinks a::after {
		content: "→";
		margin-left: 12px;
		color: currentColor;
	}

	.story-row {
		grid-template-columns: 150px minmax(0, 1fr);
		gap: 14px;
	}

	.story-media {
		min-height: 320px;
	}
}

@media (max-width: 560px) {
	.site-header,
	.shell {
		width: min(100% - 28px, 1120px);
	}

	.nav-links {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		margin-left: auto;
	}

	.site-header.is-menu-open .nav-links {
		position: absolute;
		top: 48px;
		right: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		width: min(220px, calc(100vw - 28px));
		height: auto;
		gap: 0;
		padding: 8px;
		border: 1px solid var(--line);
		border-radius: 8px;
		background: rgba(8, 10, 15, 0.98);
		box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
	}

	.site-header.is-menu-open {
		clip-path: none;
	}

	.site-header.is-menu-open .nav-links a {
		height: auto;
		padding: 12px;
		border-radius: 6px;
	}

	.site-header.is-menu-open .nav-links a[aria-current="page"],
	.site-header.is-menu-open .nav-links a.is-active {
		box-shadow: inset 3px 0 0 var(--track-green);
	}

	h1 {
		font-size: 2.2rem;
	}

	.proof-grid,
	.story-points {
		grid-template-columns: 1fr;
	}

	.pager {
		display: none;
	}

	.pager-buttons,
	.cta-actions,
	.release-carousel {
		width: 100%;
	}

	.release-carousel {
		display: block;
	}

	.release-row {
		grid-auto-columns: minmax(128px, 42vw);
		gap: 14px;
		padding-bottom: 10px;
	}

	.release-card {
		min-height: 190px;
	}

	.release-arrow {
		display: none;
	}

	.story-stage {
		padding: 44px 0;
	}

	.story-stage .section-heading {
		margin-bottom: 14px;
	}

	.story-stage .section-heading h2 {
		font-size: 1.55rem;
	}

	.story-shell {
		display: block;
	}

	.story {
		display: block;
		margin-bottom: 10px;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition: none;
	}

	.story-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
		width: 100%;
		min-height: 52px;
		padding: 14px 16px;
		border: 0;
		background: transparent;
		color: var(--muted);
		font: inherit;
		font-weight: 700;
		text-align: left;
	}

	.story-toggle span {
		color: var(--accent);
		font-size: 0.78rem;
	}

	.story-toggle::after {
		content: "+";
		color: var(--accent-2);
		font-size: 1.1rem;
		font-weight: 400;
	}

	.story.active .story-toggle {
		color: var(--ink);
	}

	.story.active .story-toggle::after {
		content: "-";
	}

	.story:not(.active) .story-copy,
	.story:not(.active) .story-media {
		display: none;
	}

	.story-copy {
		padding: 0 16px 16px;
	}

	.story-copy h3 {
		margin-bottom: 12px;
		font-size: 1.28rem;
	}

	.story-copy p {
		margin-bottom: 10px;
		font-size: 0.96rem;
	}

	.story-copy h3 + p {
		display: -webkit-box;
		overflow: hidden;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.story.expanded .story-copy h3 + p {
		display: block;
		overflow: visible;
	}

	.story:not(.expanded) .read-more ~ p {
		display: none;
	}

	.read-more {
		display: inline-flex;
		align-items: center;
		min-height: 34px;
		margin: 0 0 10px;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--accent);
		font: inherit;
		font-size: 0.94rem;
		font-weight: 800;
	}

	.story-points {
		display: none;
	}

	.story-media {
		display: none;
	}

	.pager button,
	.button {
		width: 100%;
	}
}
