@font-face {
	font-family: "Cursare Sans";
	src: url("./fonts/CursareSans-Regular.woff2") format("woff2");
	font-weight: 400;
	font-display: swap;
}

@font-face {
	font-family: "Cursare Sans";
	src: url("./fonts/CursareSans-Medium.woff2") format("woff2");
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: "Cursare Sans";
	src: url("./fonts/CursareSans-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-display: swap;
}

@font-face {
	font-family: "Cursare Sans";
	src: url("./fonts/CursareSans-Bold.woff2") format("woff2");
	font-weight: 700;
	font-display: swap;
}

:root {
	--ink: #171815;
	--ink-soft: #585a54;
	--paper: #f5f5ef;
	--paper-deep: #ebece5;
	--line: #d5d6cf;
	--signal: #f1f0ea;
	--signal-deep: #3d3e39;
	--dark: #171815;
	--dark-soft: #242520;
	--white: #fbfbf7;
	--shadow: 0 28px 80px rgba(17, 19, 15, 0.15);
	--site-content-width: 80rem;
	font-family: "Cursare Sans", ui-sans-serif, system-ui, sans-serif;
	color: var(--ink);
	background: var(--paper);
	font-synthesis: none;
	text-rendering: optimizeLegibility;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	background:
		linear-gradient(rgba(23, 24, 21, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(23, 24, 21, 0.035) 1px, transparent 1px),
		var(--paper);
	background-size: 80px 80px;
	color: var(--ink);
}

button,
input {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

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

button {
	color: inherit;
}

.skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 100;
	padding: 10px 14px;
	border-radius: 10px;
	background: var(--ink);
	color: var(--white);
	transform: translateY(-160%);
}

.skip-link:focus {
	transform: translateY(0);
}

.section-boundary,
.nav-boundary {
	width: min(var(--site-content-width), calc(100% - 64px));
	margin-inline: auto;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(23, 24, 21, 0.12);
	background: rgba(245, 245, 239, 0.86);
	backdrop-filter: blur(22px);
}

.nav-boundary {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.brand-lockup {
	display: inline-flex;
	align-items: center;
	gap: 0.14em;
	white-space: nowrap;
	font-weight: 500;
	line-height: 1;
}

.brand-mark {
	color: var(--ink);
	font-size: 2.05em;
	line-height: 0.5;
}

.brand-name {
	font-size: 1.18em;
}

.brand-product {
	margin-left: 12px;
	padding-left: 14px;
	border-left: 1px solid var(--line);
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 500;
}

.nav-links > a {
	padding: 10px 13px;
	border-radius: 999px;
	transition: background 160ms ease;
}

.nav-links > a:hover {
	background: rgba(23, 24, 21, 0.07);
}

.nav-links .github-link {
	gap: 7px;
	display: inline-flex;
	align-items: center;
	margin-left: 8px;
	padding-inline: 15px;
	background: var(--ink);
	color: var(--white);
}

.github-link svg {
	width: 16px;
	fill: currentColor;
}

.hero {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(560px, 1.2fr);
	gap: clamp(48px, 6vw, 100px);
	align-items: center;
	min-height: calc(100vh - 72px);
	padding-block: 80px 96px;
}

.overline {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 26px;
	color: var(--ink-soft);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.overline span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--signal-deep);
	box-shadow: 0 0 0 4px rgba(23, 24, 21, 0.09);
}

.hero h1 {
	max-width: 650px;
	margin: 0;
	font-size: clamp(58px, 6.8vw, 112px);
	font-weight: 600;
	letter-spacing: -0.065em;
	line-height: 0.88;
}

.hero h1 em {
	color: var(--signal-deep);
	font-style: normal;
}

.hero-intro {
	max-width: 610px;
	margin: 34px 0 0;
	color: var(--ink-soft);
	font-size: clamp(18px, 1.45vw, 23px);
	line-height: 1.5;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 36px;
}

.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding: 0 20px;
	border: 1px solid var(--line);
	border-radius: 14px;
	font-size: 15px;
	font-weight: 600;
	transition:
		transform 160ms ease,
		box-shadow 160ms ease,
		background 160ms ease;
}

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

.button-primary {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
	box-shadow: 0 12px 30px rgba(23, 24, 21, 0.18);
}

.button-primary span {
	color: var(--signal);
}

.button-quiet {
	background: rgba(255, 255, 255, 0.5);
}

.hero-facts {
	display: flex;
	gap: clamp(22px, 4vw, 48px);
	margin: 52px 0 0;
}

.hero-facts div {
	display: flex;
	align-items: baseline;
	gap: 8px;
}

.hero-facts dt {
	font-size: 26px;
	font-weight: 600;
	letter-spacing: -0.04em;
}

.hero-facts dd {
	margin: 0;
	color: var(--ink-soft);
	font-size: 12px;
}

.hero-stage {
	position: relative;
	min-width: 0;
	padding: 34px 0;
}

.hero-stage::before {
	position: absolute;
	inset: -5% 3% 0 8%;
	z-index: -1;
	border-radius: 50%;
	background: rgba(23, 24, 21, 0.09);
	content: "";
	filter: blur(80px);
}

.stage-note {
	position: absolute;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 1px solid rgba(23, 24, 21, 0.14);
	border-radius: 999px;
	background: rgba(245, 245, 239, 0.92);
	box-shadow: 0 10px 30px rgba(23, 24, 21, 0.09);
	color: var(--ink-soft);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.stage-note::before {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--ink);
	content: "";
}

.stage-note-top {
	top: 4px;
	right: 30px;
}

.stage-note-bottom {
	bottom: 0;
	left: 38px;
}

.player-window {
	overflow: hidden;
	min-height: 610px;
	border: 1px solid #30312d;
	border-radius: 30px;
	background: var(--dark);
	box-shadow: var(--shadow);
	color: var(--white);
}

.player-topbar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 72px;
	padding: 0 20px 0 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.player-brand {
	display: inline-flex;
	align-items: center;
	gap: 0.15em;
	font-weight: 500;
}

.player-brand .brand-mark {
	color: var(--white);
	font-size: 1.8em;
}

.player-course {
	overflow: hidden;
	max-width: 220px;
	color: #8f918a;
	font-size: 12px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.round-button {
	width: 36px;
	height: 36px;
	justify-self: end;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	background: transparent;
	color: #a9aaa4;
}

.player-body {
	display: grid;
	grid-template-columns: 215px minmax(0, 1fr);
	min-height: 538px;
}

.lesson-rail {
	display: flex;
	flex-direction: column;
	padding: 34px 20px 22px;
	border-right: 1px solid rgba(255, 255, 255, 0.09);
	background: #131411;
}

.rail-label {
	margin: 0 10px 20px;
	color: #696b64;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.lesson-link {
	display: grid;
	grid-template-columns: 26px 1fr;
	gap: 8px;
	width: 100%;
	margin: 0 0 6px;
	padding: 13px 10px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: #71736d;
	text-align: left;
	cursor: pointer;
}

.lesson-link span {
	font-size: 10px;
}

.lesson-link strong {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.35;
}

.lesson-link.is-active {
	background: #282a24;
	color: var(--white);
}

.lesson-link.is-active span {
	color: var(--signal);
}

.rail-progress {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	margin-top: auto;
	color: #777970;
	font-size: 10px;
}

.rail-progress i {
	position: relative;
	display: block;
	overflow: hidden;
	height: 3px;
	border-radius: 999px;
	background: #30322c;
}

.rail-progress i::after {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--lesson-progress, 33.333%);
	border-radius: inherit;
	background: var(--signal);
	content: "";
	transition: width 280ms ease;
}

.lesson-canvas {
	display: flex;
	min-width: 0;
	flex-direction: column;
	padding: clamp(38px, 5vw, 72px) clamp(30px, 5vw, 72px) 26px;
	background:
		radial-gradient(
			circle at 80% 10%,
			rgba(255, 255, 255, 0.045),
			transparent 180px
		),
		#1b1c18;
}

.lesson-number {
	color: var(--signal);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.lesson-canvas h2 {
	max-width: 540px;
	margin: 18px 0 20px;
	font-size: clamp(36px, 4.1vw, 66px);
	font-weight: 500;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.lesson-canvas > p {
	max-width: 540px;
	margin: 0;
	color: #9fa199;
	font-size: 15px;
	line-height: 1.6;
}

.lesson-callout {
	display: grid;
	grid-template-columns: 38px 1fr;
	gap: 12px;
	align-items: center;
	max-width: 520px;
	margin-top: 32px;
	padding: 16px;
	border: 1px solid #3b3d36;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.025);
}

.callout-icon {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
	background: var(--signal);
	color: var(--ink);
	font-size: 20px;
}

.lesson-callout div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.lesson-callout small {
	color: #777970;
	font-size: 10px;
	text-transform: uppercase;
}

.lesson-callout strong {
	font-size: 12px;
	font-weight: 500;
}

.lesson-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: auto;
	padding-top: 30px;
}

.lesson-footer > span {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #777970;
	font-size: 10px;
}

.lesson-footer > span i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #85877f;
}

.lesson-footer button {
	display: inline-flex;
	align-items: center;
	gap: 24px;
	min-height: 43px;
	padding: 0 16px;
	border: 0;
	border-radius: 12px;
	background: var(--white);
	color: var(--ink);
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
}

.manifesto-band {
	border-block: 1px solid var(--ink);
	background: var(--ink);
	color: var(--white);
}

.manifesto-inner {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 48px;
	align-items: center;
	min-height: 112px;
}

.manifesto-inner > p {
	max-width: 330px;
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: -0.025em;
}

.manifesto-inner ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.manifesto-inner li {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-height: 62px;
	justify-content: center;
	padding-left: 24px;
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	font-size: 14px;
	font-weight: 600;
}

.manifesto-inner li span {
	font-size: 10px;
	font-weight: 500;
	opacity: 0.6;
}

.showcase,
.registry-section {
	padding-block: 150px;
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
	gap: 48px;
	align-items: end;
	margin-bottom: 64px;
}

.section-heading h2,
.install-copy h2 {
	margin: 0;
	font-size: clamp(48px, 6vw, 86px);
	font-weight: 600;
	letter-spacing: -0.06em;
	line-height: 0.95;
}

.section-heading > p,
.install-copy > p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 17px;
	line-height: 1.6;
}

.showcase-grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	gap: 18px;
}

.showcase-card {
	position: relative;
	display: flex;
	overflow: hidden;
	min-height: 640px;
	flex-direction: column;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 30px;
	background: rgba(252, 252, 248, 0.78);
}

.showcase-card::before {
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		circle at 50% 20%,
		rgba(23, 24, 21, 0.06),
		transparent 46%
	);
	content: "";
}

.showcase-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 28px;
	font-size: 12px;
	font-weight: 600;
}

.showcase-meta > span {
	padding: 7px 10px;
	border: 1px solid var(--line);
	border-radius: 999px;
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: 10px;
}

.showcase-meta a {
	color: var(--ink-soft);
}

.showcase-caption {
	max-width: 470px;
	margin: auto 0 0;
	padding-top: 28px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: -0.025em;
	line-height: 1.3;
}

.course-card-showcase,
.intake-showcase {
	grid-column: span 5;
}

.journey-showcase,
.tools-showcase {
	grid-column: span 7;
}

.course-card-preview {
	overflow: hidden;
	width: min(390px, 88%);
	margin: 12px auto 34px;
	border: 1px solid #d8d9d3;
	border-radius: 24px;
	background: var(--white);
	box-shadow: 0 26px 55px rgba(23, 24, 21, 0.15);
	transform: rotate(-2deg);
}

.course-cover {
	position: relative;
	height: 210px;
	overflow: hidden;
	background: #ddd;
}

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

.course-cover::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.3));
	content: "";
}

.course-chip {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 1;
	padding: 6px 10px;
	border-radius: 999px;
	background: var(--signal);
	font-size: 10px;
	font-weight: 600;
}

.course-details {
	padding: 22px;
}

.publisher {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--ink-soft);
	font-size: 10px;
}

.publisher-mark {
	display: grid;
	width: 25px;
	height: 25px;
	place-items: center;
	border-radius: 7px;
	background: var(--paper-deep);
	color: var(--ink);
	font-size: 8px;
	font-weight: 700;
}

.course-details h3 {
	margin: 16px 0 8px;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.05;
}

.course-details p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 11px;
}

.course-progress {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
	margin-top: 20px;
}

.course-progress > span {
	overflow: hidden;
	height: 5px;
	border-radius: 999px;
	background: var(--paper-deep);
}

.course-progress i {
	display: block;
	width: 32%;
	height: 100%;
	border-radius: inherit;
	background: var(--signal-deep);
}

.course-progress small {
	color: var(--ink-soft);
	font-size: 9px;
}

.journey-preview {
	width: min(610px, 96%);
	margin: 10px auto 30px;
	padding: 28px;
	border: 1px solid #33352f;
	border-radius: 25px;
	background: var(--dark);
	box-shadow: 0 28px 60px rgba(23, 24, 21, 0.18);
	color: var(--white);
}

.journey-header {
	display: flex;
	justify-content: space-between;
	margin-bottom: 26px;
	color: #8e9088;
	font-size: 11px;
}

.journey-header strong {
	color: var(--signal);
	font-weight: 500;
}

.journey-preview ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

.journey-preview li {
	position: relative;
	display: grid;
	grid-template-columns: 36px 1fr auto;
	gap: 14px;
	align-items: center;
	min-height: 72px;
	padding: 10px 0;
	color: #686a63;
}

.journey-preview li:not(:last-child)::after {
	position: absolute;
	top: 54px;
	bottom: -18px;
	left: 17px;
	width: 1px;
	background: #3a3c35;
	content: "";
}

.journey-preview li > span {
	display: grid;
	z-index: 1;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid #43453f;
	border-radius: 50%;
	background: var(--dark);
	font-size: 10px;
}

.journey-preview li > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.journey-preview li small {
	font-size: 8px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.journey-preview li strong {
	font-size: 13px;
	font-weight: 500;
}

.journey-preview li em {
	font-size: 9px;
	font-style: normal;
}

.journey-preview li.is-complete,
.journey-preview li.is-current {
	color: var(--white);
}

.journey-preview li.is-complete > span {
	border-color: var(--signal-deep);
	background: var(--signal-deep);
}

.journey-preview li.is-current {
	margin-inline: -12px;
	padding-inline: 12px;
	border-radius: 13px;
	background: #292b25;
}

.journey-preview li.is-current > span {
	border-color: var(--signal);
	color: var(--signal);
}

.intake-preview {
	width: min(420px, 96%);
	margin: 18px auto 34px;
	padding: 30px;
	border-radius: 25px;
	background: #e8e7e1;
	box-shadow: 0 22px 50px rgba(23, 24, 21, 0.13);
}

.intake-count {
	color: var(--signal-deep);
	font-size: 32px;
	font-weight: 600;
	letter-spacing: -0.05em;
}

.intake-count span {
	color: #92938d;
	font-size: 13px;
}

.intake-preview > p {
	margin: 28px 0 20px;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.15;
}

.intake-preview label {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
	padding: 13px;
	border: 1px solid rgba(23, 24, 21, 0.14);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.48);
	font-size: 11px;
}

.intake-preview input {
	accent-color: var(--signal-deep);
}

.intake-preview button {
	display: flex;
	width: 100%;
	min-height: 43px;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-inline: 16px;
	border: 0;
	border-radius: 12px;
	background: var(--signal-deep);
	color: var(--white);
	font-size: 11px;
	font-weight: 600;
}

.tools-preview {
	width: min(620px, 96%);
	margin: 18px auto 34px;
	padding: 10px;
	border: 1px solid var(--line);
	border-radius: 25px;
	background: var(--paper-deep);
	transform: rotate(1deg);
}

.tools-nav {
	display: flex;
	gap: 4px;
	padding: 6px;
}

.tools-nav button {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 13px;
	border: 0;
	border-radius: 10px;
	background: transparent;
	color: var(--ink-soft);
	font-size: 10px;
}

.tools-nav button.is-active {
	background: var(--white);
	color: var(--ink);
	box-shadow: 0 5px 14px rgba(23, 24, 21, 0.08);
}

.tools-nav button span {
	display: grid;
	width: 17px;
	height: 17px;
	place-items: center;
	border-radius: 50%;
	background: var(--paper-deep);
	font-size: 8px;
}

.note-card {
	margin: 8px;
	padding: 22px;
	border-radius: 17px;
	background: var(--white);
}

.note-card small {
	color: #92948e;
	font-size: 9px;
}

.note-card p {
	max-width: 430px;
	margin: 12px 0 0;
	font-size: 17px;
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.35;
}

.note-compose {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 8px;
	padding: 11px 12px 11px 16px;
	border: 1px dashed #c1c3ba;
	border-radius: 14px;
	color: #8b8d86;
	font-size: 10px;
}

.note-compose button {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 0;
	border-radius: 9px;
	background: var(--ink);
	color: var(--white);
}

.install-section {
	padding-block: 140px;
	background:
		radial-gradient(
			circle at 5% 100%,
			rgba(255, 255, 255, 0.07),
			transparent 420px
		),
		var(--dark);
	color: var(--white);
}

.install-layout {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(60px, 9vw, 160px);
	align-items: center;
}

.install-copy .overline,
.install-copy > p {
	color: #8c8e87;
}

.install-copy .overline span {
	background: var(--signal);
}

.install-copy h2 {
	margin-bottom: 32px;
}

.compatibility {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 32px;
}

.compatibility span {
	padding: 7px 10px;
	border: 1px solid #3a3c36;
	border-radius: 999px;
	color: #9a9c94;
	font-size: 10px;
}

.terminal {
	overflow: hidden;
	border: 1px solid #393b35;
	border-radius: 26px;
	background: #0f100e;
	box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.terminal-bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	min-height: 52px;
	padding: 0 18px;
	border-bottom: 1px solid #2b2d28;
}

.terminal-bar > span {
	display: flex;
	gap: 6px;
}

.terminal-bar i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #3a3c36;
}

.terminal-bar i:first-child {
	background: var(--signal);
}

.terminal-bar small {
	color: #62645e;
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: 10px;
}

.terminal-content {
	position: relative;
	padding: clamp(28px, 5vw, 52px);
	color: #d9dbd3;
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: clamp(12px, 1.2vw, 16px);
	line-height: 1.7;
}

.terminal-content p {
	margin: 0;
}

.terminal-content .prompt,
.terminal-output span {
	color: var(--signal);
}

.command-indent {
	padding-left: 2ch;
	color: #aeb0a9;
}

.terminal-output {
	margin-top: 34px;
	color: #70726c;
	font-size: 0.78em;
}

.terminal-output p + p {
	margin-top: 6px;
}

.copy-command {
	margin-top: 34px;
	padding: 10px 13px;
	border: 1px solid #3b3d37;
	border-radius: 10px;
	background: #20211d;
	color: #b6b8b0;
	font-family: "Cursare Sans", sans-serif;
	font-size: 11px;
	cursor: pointer;
}

.registry-section {
	min-height: 900px;
}

.registry-list {
	border-top: 1px solid var(--ink);
}

.registry-loading {
	padding: 30px 0;
	color: var(--ink-soft);
}

.registry-row {
	display: grid;
	grid-template-columns: 64px minmax(220px, 0.65fr) minmax(260px, 1fr) auto;
	gap: 28px;
	align-items: center;
	min-height: 112px;
	border-bottom: 1px solid var(--line);
	transition:
		padding 180ms ease,
		background 180ms ease;
}

.registry-row:hover {
	margin-inline: -20px;
	padding-inline: 20px;
	background: rgba(255, 255, 255, 0.48);
}

.registry-index {
	color: #9a9c95;
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: 11px;
}

.registry-name {
	font-size: clamp(21px, 2vw, 30px);
	font-weight: 600;
	letter-spacing: -0.035em;
}

.registry-description {
	max-width: 620px;
	color: var(--ink-soft);
	font-size: 14px;
	line-height: 1.45;
}

.registry-actions {
	display: flex;
	align-items: center;
	gap: 8px;
}

.registry-actions a,
.registry-actions button {
	display: inline-flex;
	min-height: 38px;
	align-items: center;
	justify-content: center;
	padding-inline: 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: transparent;
	font-size: 11px;
	font-weight: 600;
	cursor: pointer;
}

.registry-actions button {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
}

.registry-internals {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 28px;
}

.internal-pill {
	padding: 8px 11px;
	border: 1px dashed #bfc1b8;
	border-radius: 999px;
	color: #83857e;
	font-family: ui-monospace, SFMono-Regular, monospace;
	font-size: 10px;
}

.site-footer {
	padding-block: 70px 36px;
	border-top: 1px solid #30312d;
	background: var(--dark);
	color: var(--white);
}

.footer-inner {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 70px;
	align-items: start;
}

.footer-brand .brand-mark {
	color: var(--white);
}

.footer-inner > div:first-child p {
	margin: 16px 0 0;
	color: #75776f;
	font-size: 13px;
}

.footer-links {
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 12px 48px;
	color: #a8aaa2;
	font-size: 12px;
}

.footer-links a:hover {
	color: var(--white);
}

.footer-note {
	grid-column: 1 / -1;
	margin-top: 54px;
	padding-top: 22px;
	border-top: 1px solid #2f302c;
	color: #5e605a;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 600ms ease,
		transform 600ms ease;
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (max-width: 1180px) {
	.hero {
		grid-template-columns: 1fr;
	}

	.hero-copy {
		max-width: 850px;
	}

	.hero-stage {
		width: min(860px, 100%);
		margin-inline: auto;
	}

	.course-card-showcase,
	.intake-showcase,
	.journey-showcase,
	.tools-showcase {
		grid-column: span 6;
	}

	.install-layout {
		grid-template-columns: 1fr 1.2fr;
	}
}

@media (max-width: 860px) {
	.section-boundary,
	.nav-boundary {
		width: min(100% - 32px, 680px);
	}

	.nav-links > a:not(.github-link) {
		display: none;
	}

	.brand-product {
		display: none;
	}

	.hero {
		padding-block: 64px 72px;
	}

	.hero h1 {
		font-size: clamp(54px, 13vw, 86px);
	}

	.player-body {
		grid-template-columns: 1fr;
	}

	.lesson-rail {
		display: none;
	}

	.player-window {
		min-height: 560px;
	}

	.manifesto-inner {
		grid-template-columns: 1fr;
		gap: 26px;
		padding-block: 28px;
	}

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

	.manifesto-inner li:nth-child(3) {
		border-left: 0;
	}

	.section-heading,
	.install-layout {
		grid-template-columns: 1fr;
	}

	.showcase,
	.registry-section {
		padding-block: 100px;
	}

	.showcase-grid {
		grid-template-columns: 1fr;
	}

	.course-card-showcase,
	.intake-showcase,
	.journey-showcase,
	.tools-showcase {
		grid-column: auto;
	}

	.showcase-card {
		min-height: 600px;
	}

	.install-section {
		padding-block: 100px;
	}

	.registry-row {
		grid-template-columns: 46px 1fr auto;
		gap: 16px;
		padding-block: 22px;
	}

	.registry-description {
		grid-column: 2 / -1;
		grid-row: 2;
	}

	.registry-actions {
		grid-column: 3;
		grid-row: 1;
	}

	.registry-actions a {
		display: none;
	}
}

@media (max-width: 560px) {
	.nav-boundary {
		min-height: 64px;
	}

	.nav-links .github-link {
		font-size: 0;
	}

	.github-link svg {
		width: 18px;
	}

	.hero {
		min-height: auto;
	}

	.hero-intro {
		font-size: 17px;
	}

	.hero-facts {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 10px;
	}

	.hero-facts div {
		display: flex;
		flex-direction: column;
		gap: 2px;
	}

	.hero-facts dt {
		font-size: 22px;
	}

	.stage-note {
		display: none;
	}

	.hero-stage {
		padding: 0;
	}

	.player-window {
		min-height: 540px;
		border-radius: 22px;
	}

	.player-topbar {
		grid-template-columns: 1fr auto;
	}

	.player-course {
		display: none;
	}

	.lesson-canvas {
		min-height: 468px;
		padding: 40px 24px 22px;
	}

	.lesson-canvas h2 {
		font-size: 43px;
	}

	.lesson-footer > span {
		display: none;
	}

	.lesson-footer {
		justify-content: flex-end;
	}

	.manifesto-inner ul {
		grid-template-columns: 1fr 1fr;
	}

	.manifesto-inner li {
		padding-left: 14px;
		font-size: 12px;
	}

	.section-heading {
		margin-bottom: 38px;
	}

	.showcase-card {
		min-height: 560px;
		padding: 18px;
		border-radius: 23px;
	}

	.course-card-preview,
	.journey-preview,
	.intake-preview,
	.tools-preview {
		width: 100%;
	}

	.course-cover {
		height: 180px;
	}

	.journey-preview,
	.intake-preview {
		padding: 20px;
	}

	.journey-preview li {
		grid-template-columns: 34px 1fr;
	}

	.journey-preview li em {
		display: none;
	}

	.install-copy h2,
	.section-heading h2 {
		font-size: 50px;
	}

	.terminal-content {
		overflow-x: auto;
		padding: 26px 20px;
		font-size: 11px;
	}

	.registry-row {
		grid-template-columns: 34px 1fr;
	}

	.registry-actions {
		grid-column: 2;
		grid-row: 3;
	}

	.registry-description {
		grid-column: 2;
	}

	.footer-inner {
		grid-template-columns: 1fr;
	}

	.footer-links {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.nav-links > a,
	.button,
	.rail-progress i::after,
	.registry-row,
	[data-reveal] {
		transition: none;
	}

	[data-reveal] {
		opacity: 1;
		transform: none;
	}
}
