@font-face {
	font-family: "STL Roboto";
	src: url("../fonts/Roboto-Regular.woff2") format("woff2");
	font-style: normal;
	font-weight: 400;
	font-display: swap;
}

:root {
	--stl-ink: #090c0b;
	--stl-ink-soft: #101613;
	--stl-forest: #143a33;
	--stl-teal: #7fd7c7;
	--stl-teal-deep: #0b6f66;
	--stl-gold: #d7ad63;
	--stl-gold-bright: #f0ce8b;
	--stl-parchment: #f3eadb;
	--stl-stone: #e6ebe7;
	--stl-white: #fffaf0;
	--stl-muted: #b9c2bc;
	--stl-rust: #a94f43;
	--stl-border: rgba(215, 173, 99, 0.28);
	--stl-header-height: 72px;
	--stl-container: 1200px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	background: var(--stl-ink);
}

body.welcome-page {
	min-width: 320px;
	margin: 0;
	color: var(--stl-parchment);
	font-family: "STL Roboto", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	background: var(--stl-ink);
	-webkit-font-smoothing: antialiased;
}

body.welcome-page a {
	color: inherit;
}

body.welcome-page h1,
body.welcome-page h2,
body.welcome-page h3,
body.welcome-page p {
	letter-spacing: 0;
}

body.welcome-page h2,
body.welcome-page h3 {
	margin-top: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 700;
}

body.welcome-page h2 {
	margin-bottom: 24px;
	font-size: 54px;
	line-height: 1.04;
}

body.welcome-page h3 {
	margin-bottom: 10px;
	font-size: 25px;
	line-height: 1.2;
}

body.welcome-page p {
	margin-top: 0;
}

.welcome-container {
	width: min(var(--stl-container), calc(100% - 64px));
	margin-inline: auto;
}

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

.skip-link {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 100;
	padding: 10px 14px;
	color: var(--stl-ink) !important;
	font-weight: 700;
	text-decoration: none;
	background: var(--stl-gold-bright);
	border-radius: 4px;
	transform: translateY(-140%);
}

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

.welcome-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 20;
	height: var(--stl-header-height);
	background: rgba(9, 12, 11, 0.55);
	border-bottom: 1px solid transparent;
	backdrop-filter: blur(12px);
	transition: background-color 180ms ease, border-color 180ms ease;
}

.welcome-header.is-scrolled {
	background: rgba(9, 12, 11, 0.94);
	border-bottom-color: var(--stl-border);
}

.welcome-header__inner {
	display: flex;
	align-items: center;
	gap: 28px;
	width: min(1320px, calc(100% - 48px));
	height: 100%;
	margin-inline: auto;
}

.welcome-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 230px;
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.welcome-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	color: var(--stl-ink);
	font-size: 13px;
	font-weight: 800;
	background: var(--stl-gold);
	border-radius: 6px;
}

.welcome-brand__name {
	color: var(--stl-white);
}

.welcome-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-left: auto;
}

.welcome-nav a {
	position: relative;
	color: #d6ddd8;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: color 160ms ease;
}

.welcome-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--stl-teal);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 160ms ease;
}

.welcome-nav a:hover,
.welcome-nav a:focus-visible {
	color: var(--stl-white);
}

.welcome-nav a:hover::after,
.welcome-nav a:focus-visible::after {
	transform: scaleX(1);
}

.welcome-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 22px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: 6px;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

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

.welcome-button:focus-visible,
.welcome-header a:focus-visible,
.welcome-faq summary:focus-visible {
	outline: 3px solid var(--stl-teal);
	outline-offset: 4px;
}

.welcome-button--header {
	min-height: 40px;
	padding-inline: 16px;
	color: var(--stl-ink) !important;
	font-size: 14px;
	background: var(--stl-gold);
}

.welcome-button--header:hover {
	background: var(--stl-gold-bright);
}

.welcome-button--primary {
	color: var(--stl-ink) !important;
	background: var(--stl-gold);
	border-color: var(--stl-gold-bright);
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.welcome-button--primary:hover {
	background: var(--stl-gold-bright);
	box-shadow: 0 20px 42px rgba(0, 0, 0, 0.34);
}

.welcome-button--secondary {
	color: var(--stl-white) !important;
	background: rgba(11, 111, 102, 0.24);
	border-color: rgba(127, 215, 199, 0.55);
}

.welcome-button--secondary:hover {
	background: rgba(11, 111, 102, 0.42);
	border-color: var(--stl-teal);
}

.welcome-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.welcome-actions--centered {
	justify-content: center;
}

.welcome-eyebrow,
.welcome-section-label {
	margin-bottom: 14px;
	color: var(--stl-teal);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	text-transform: uppercase;
}

.welcome-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 90svh;
	overflow: hidden;
	background: var(--stl-ink);
}

.welcome-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(6, 9, 8, 0.96) 0%, rgba(6, 9, 8, 0.86) 37%, rgba(6, 9, 8, 0.25) 70%, rgba(6, 9, 8, 0.52) 100%),
		linear-gradient(180deg, rgba(6, 9, 8, 0.2) 55%, rgba(6, 9, 8, 0.92) 100%);
	pointer-events: none;
}

.welcome-hero__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.welcome-hero__inner {
	position: relative;
	z-index: 2;
	width: min(var(--stl-container), calc(100% - 64px));
	margin: calc(var(--stl-header-height) + 36px) auto 58px;
}

.welcome-hero__content {
	width: min(660px, 58%);
}

.welcome-hero__banner {
	display: block;
	width: min(610px, 100%);
	height: auto;
	margin-bottom: 26px;
	filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.5)) brightness(1.08);
	animation: welcome-arrive 620ms ease-out both;
}

.welcome-hero__statement {
	max-width: 610px;
	margin-bottom: 18px;
	color: var(--stl-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.15;
	animation: welcome-arrive 620ms 80ms ease-out both;
}

.welcome-hero__lede {
	max-width: 600px;
	margin-bottom: 0;
	color: #e2e8e3;
	font-size: 19px;
	line-height: 1.55;
	animation: welcome-arrive 620ms 130ms ease-out both;
}

.welcome-hero .welcome-actions,
.welcome-hero__signals {
	animation: welcome-arrive 620ms 180ms ease-out both;
}

.welcome-hero__signals {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	padding: 20px 0 0;
	margin: 24px 0 0;
	color: #d2dbd5;
	font-size: 13px;
	font-weight: 700;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.welcome-hero__signals li {
	position: relative;
	padding-left: 15px;
}

.welcome-hero__signals li::before {
	content: "";
	position: absolute;
	top: 0.65em;
	left: 0;
	width: 6px;
	height: 6px;
	background: var(--stl-teal);
	border-radius: 50%;
}

.welcome-intro {
	padding: 108px 0 116px;
	color: #17221e;
	background: var(--stl-stone);
}

.welcome-intro__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
	align-items: end;
	gap: 80px;
}

.welcome-intro h2 {
	grid-column: 1;
	margin-bottom: 0;
	font-size: 62px;
}

.welcome-intro .welcome-section-label {
	grid-column: 1 / -1;
	margin-bottom: -48px;
	color: var(--stl-teal-deep);
}

.welcome-intro__inner > p:last-child {
	grid-column: 2;
	margin-bottom: 4px;
	font-size: 19px;
	line-height: 1.7;
}

.welcome-steps {
	padding: 112px 0 128px;
	background: var(--stl-ink-soft);
}

.welcome-section-heading {
	max-width: 850px;
	margin-bottom: 62px;
}

.welcome-section-heading h2 {
	margin-bottom: 0;
}

.welcome-steps__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
	border-top: 1px solid var(--stl-border);
}

.welcome-step {
	min-width: 0;
	padding: 28px 26px 0 0;
	border-right: 1px solid var(--stl-border);
}

.welcome-step + .welcome-step {
	padding-left: 26px;
}

.welcome-step:last-child {
	padding-right: 0;
	border-right: 0;
}

.welcome-step__number,
.welcome-experience__index {
	display: block;
	margin-bottom: 32px;
	color: var(--stl-rust);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	font-weight: 700;
}

.welcome-step h3 {
	color: var(--stl-gold-bright);
}

.welcome-step p {
	margin-bottom: 0;
	color: var(--stl-muted);
	font-size: 15px;
}

.welcome-framework {
	position: relative;
	min-height: 760px;
	overflow: hidden;
	background: var(--stl-ink);
}

.welcome-framework::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(5, 8, 7, 0.98) 0%, rgba(5, 8, 7, 0.88) 48%, rgba(5, 8, 7, 0.28) 78%),
		linear-gradient(180deg, rgba(5, 8, 7, 0.18), rgba(5, 8, 7, 0.88));
}

.welcome-framework__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.82) contrast(1.04);
}

.welcome-framework__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
	align-items: center;
	gap: 90px;
	min-height: 760px;
	padding-block: 100px;
}

.welcome-framework__copy {
	max-width: 560px;
}

.welcome-framework__copy h2 {
	font-size: 64px;
}

.welcome-framework__lede {
	color: #d9e1dc;
	font-size: 19px;
}

.welcome-framework__columns {
	display: grid;
	gap: 0;
	padding: 0 0 0 38px;
	background: rgba(9, 12, 11, 0.68);
	border-left: 3px solid var(--stl-gold);
	backdrop-filter: blur(10px);
}

.welcome-framework__columns > div {
	padding: 30px 34px;
	border-bottom: 1px solid var(--stl-border);
}

.welcome-framework__columns > div:last-child {
	border-bottom: 0;
}

.welcome-framework__columns h3 {
	color: var(--stl-teal);
}

.welcome-framework__columns p {
	margin-bottom: 0;
	color: #d3dcd6;
}

.welcome-fit {
	padding: 108px 0;
	color: #14201c;
	background: var(--stl-stone);
	border-top: 7px solid var(--stl-teal-deep);
}

.welcome-fit__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
	align-items: start;
	gap: 96px;
}

.welcome-fit .welcome-section-label {
	color: var(--stl-teal-deep);
}

.welcome-fit h2 {
	margin-bottom: 0;
	font-size: 66px;
}

.welcome-fit__copy {
	padding-left: 36px;
	border-left: 1px solid rgba(20, 58, 51, 0.28);
}

.welcome-fit__lead {
	margin-bottom: 18px;
	color: var(--stl-forest);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.35;
}

.welcome-fit__copy p:last-child {
	margin-bottom: 0;
	font-size: 18px;
}

.welcome-experiences {
	padding: 118px 0 130px;
	background: #0c1310;
}

.welcome-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
	align-items: end;
	gap: 80px;
	max-width: none;
}

.welcome-section-heading--split > p {
	margin-bottom: 6px;
	color: var(--stl-muted);
	font-size: 18px;
}

.welcome-experiences__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	border-top: 1px solid var(--stl-border);
	border-bottom: 1px solid var(--stl-border);
}

.welcome-experience {
	min-height: 278px;
	padding: 36px 42px 38px 0;
}

.welcome-experience:nth-child(odd) {
	padding-right: 54px;
	border-right: 1px solid var(--stl-border);
}

.welcome-experience:nth-child(even) {
	padding-left: 54px;
}

.welcome-experience:nth-child(-n + 2) {
	border-bottom: 1px solid var(--stl-border);
}

.welcome-experience__index {
	margin-bottom: 24px;
}

.welcome-experience h3 {
	color: var(--stl-gold-bright);
	font-size: 30px;
}

.welcome-experience p:last-child {
	max-width: 500px;
	margin-bottom: 0;
	color: var(--stl-muted);
}

.welcome-dms {
	padding: 120px 0;
	color: #f7eee2;
	background: var(--stl-forest);
	border-top: 1px solid rgba(127, 215, 199, 0.3);
}

.welcome-dms__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
	align-items: center;
	gap: 96px;
}

.welcome-dms__copy {
	max-width: 680px;
}

.welcome-dms h2 {
	font-size: 66px;
}

.welcome-dms__copy > p:not(.welcome-section-label) {
	color: #d6e4de;
	font-size: 18px;
}

.welcome-dms__quote {
	padding: 42px 0 42px 48px;
	margin: 0;
	border-left: 3px solid var(--stl-gold);
}

.welcome-dms__quote p {
	margin: 0;
	color: var(--stl-gold-bright);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.25;
}

.welcome-faq {
	padding: 112px 0 124px;
	color: #18221e;
	background: var(--stl-stone);
}

.welcome-faq__inner {
	display: grid;
	grid-template-columns: minmax(300px, 0.75fr) minmax(520px, 1.25fr);
	gap: 92px;
}

.welcome-faq .welcome-section-label {
	color: var(--stl-teal-deep);
}

.welcome-faq__list {
	border-top: 1px solid rgba(20, 58, 51, 0.3);
}

.welcome-faq details {
	border-bottom: 1px solid rgba(20, 58, 51, 0.3);
}

.welcome-faq summary {
	padding: 24px 36px 24px 0;
	color: #15231e;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 21px;
	font-weight: 700;
	cursor: pointer;
}

.welcome-faq details[open] summary {
	color: var(--stl-teal-deep);
}

.welcome-faq details p {
	max-width: 700px;
	padding: 0 36px 24px 0;
	margin-bottom: 0;
	color: #3f4d47;
}

.welcome-final {
	padding: 126px 0 132px;
	text-align: center;
	background:
		linear-gradient(180deg, rgba(9, 12, 11, 0.84), rgba(9, 12, 11, 0.96)),
		url("../img/stl-public/storytellers-lounge-backdrop.jpg") center 62% / cover;
}

.welcome-final__inner {
	max-width: 780px;
}

.welcome-final h2 {
	margin-bottom: 18px;
	font-size: 74px;
	color: var(--stl-gold-bright);
}

.welcome-final__inner > p:not(.welcome-section-label) {
	margin-bottom: 0;
	color: #d5ded8;
	font-size: 19px;
}

.welcome-footer {
	padding: 28px 0;
	color: #8f9b94;
	font-size: 12px;
	background: #060807;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.welcome-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.welcome-footer p {
	max-width: 620px;
	margin-bottom: 0;
}

html.has-js .reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 480ms ease, transform 480ms ease;
}

html.has-js .reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@keyframes welcome-arrive {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media screen and (max-width: 1080px) {
	.welcome-nav {
		gap: 20px;
	}

	.welcome-intro__inner,
	.welcome-framework__inner,
	.welcome-fit__inner,
	.welcome-dms__inner,
	.welcome-faq__inner {
		gap: 56px;
	}

	.welcome-steps__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.welcome-step {
		padding: 28px 30px 34px 0;
		border-bottom: 1px solid var(--stl-border);
	}

	.welcome-step:nth-child(even) {
		padding-right: 0;
		border-right: 0;
	}

	.welcome-step:nth-child(n + 3) {
		padding-top: 34px;
		border-bottom: 0;
	}
}

@media screen and (max-width: 900px) {
	:root {
		--stl-header-height: 64px;
	}

	body.welcome-page h2 {
		font-size: 44px;
	}

	.welcome-container,
	.welcome-hero__inner {
		width: min(100% - 40px, var(--stl-container));
	}

	.welcome-header__inner {
		width: calc(100% - 32px);
	}

	.welcome-nav {
		display: none;
	}

	.welcome-brand {
		min-width: 0;
		margin-right: auto;
	}

	.welcome-hero {
		min-height: 88svh;
	}

	.welcome-hero::before {
		background:
			linear-gradient(90deg, rgba(6, 9, 8, 0.96) 0%, rgba(6, 9, 8, 0.82) 64%, rgba(6, 9, 8, 0.35) 100%),
			linear-gradient(180deg, rgba(6, 9, 8, 0.3) 45%, rgba(6, 9, 8, 0.94) 100%);
	}

	.welcome-hero__media {
		object-position: 62% center;
	}

	.welcome-hero__content {
		width: min(620px, 78%);
	}

	.welcome-hero__statement {
		font-size: 30px;
	}

	.welcome-intro__inner,
	.welcome-framework__inner,
	.welcome-fit__inner,
	.welcome-section-heading--split,
	.welcome-dms__inner,
	.welcome-faq__inner {
		grid-template-columns: 1fr;
	}

	.welcome-intro .welcome-section-label,
	.welcome-intro h2,
	.welcome-intro__inner > p:last-child {
		grid-column: 1;
	}

	.welcome-intro .welcome-section-label {
		margin-bottom: -30px;
	}

	.welcome-intro h2 {
		font-size: 50px;
	}

	.welcome-framework__inner {
		align-content: center;
		min-height: 760px;
	}

	.welcome-framework__columns {
		max-width: 650px;
	}

	.welcome-fit__copy {
		padding-left: 0;
		border-left: 0;
	}

	.welcome-section-heading--split {
		gap: 20px;
	}

	.welcome-experience {
		min-height: 250px;
	}

	.welcome-dms__quote {
		max-width: 600px;
	}

	.welcome-faq__inner {
		gap: 18px;
	}

	.welcome-footer__inner {
		flex-direction: column;
		gap: 8px;
	}
}

@media screen and (max-width: 620px) {
	:root {
		--stl-header-height: 60px;
	}

	body.welcome-page h2 {
		font-size: 38px;
	}

	.welcome-container,
	.welcome-hero__inner {
		width: calc(100% - 36px);
	}

	.welcome-brand__name {
		display: none;
	}

	.welcome-button--header {
		min-height: 38px;
		padding-inline: 13px;
		font-size: 13px;
	}

	.welcome-hero {
		align-items: flex-end;
		min-height: 92svh;
	}

	.welcome-hero::before {
		background:
			linear-gradient(180deg, rgba(6, 9, 8, 0.2) 0%, rgba(6, 9, 8, 0.66) 34%, rgba(6, 9, 8, 0.98) 86%),
			linear-gradient(90deg, rgba(6, 9, 8, 0.72), rgba(6, 9, 8, 0.22));
	}

	.welcome-hero__media {
		object-position: 69% center;
	}

	.welcome-hero__inner {
		margin-top: calc(var(--stl-header-height) + 28px);
		margin-bottom: 34px;
	}

	.welcome-hero__content {
		width: 100%;
	}

	.welcome-eyebrow {
		margin-bottom: 10px;
		font-size: 11px;
	}

	.welcome-hero__banner {
		width: min(100%, 430px);
		margin-bottom: 16px;
	}

	.welcome-hero__statement {
		font-size: 28px;
	}

	.welcome-hero__lede {
		font-size: 16px;
		line-height: 1.5;
	}

	.welcome-actions {
		margin-top: 22px;
	}

	.welcome-hero .welcome-actions {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.welcome-hero .welcome-button {
		min-height: 46px;
		padding-inline: 12px;
		font-size: 13px;
	}

	.welcome-hero__signals {
		gap: 8px 14px;
		padding-top: 14px;
		margin-top: 16px;
		font-size: 11px;
	}

	.welcome-intro,
	.welcome-steps,
	.welcome-fit,
	.welcome-experiences,
	.welcome-dms,
	.welcome-faq,
	.welcome-final {
		padding-top: 82px;
		padding-bottom: 88px;
	}

	.welcome-intro__inner {
		gap: 36px;
	}

	.welcome-intro .welcome-section-label {
		margin-bottom: -18px;
	}

	.welcome-intro h2 {
		font-size: 40px;
	}

	.welcome-intro__inner > p:last-child {
		font-size: 16px;
	}

	.welcome-section-heading {
		margin-bottom: 42px;
	}

	.welcome-steps__grid,
	.welcome-experiences__grid {
		grid-template-columns: 1fr;
	}

	.welcome-step,
	.welcome-step + .welcome-step,
	.welcome-step:nth-child(even),
	.welcome-step:nth-child(n + 3) {
		padding: 26px 0 30px;
		border-right: 0;
		border-bottom: 1px solid var(--stl-border);
	}

	.welcome-step:last-child {
		border-bottom: 0;
	}

	.welcome-step__number,
	.welcome-experience__index {
		margin-bottom: 18px;
	}

	.welcome-framework,
	.welcome-framework__inner {
		min-height: 820px;
	}

	.welcome-framework::before {
		background: linear-gradient(180deg, rgba(5, 8, 7, 0.68), rgba(5, 8, 7, 0.98));
	}

	.welcome-framework__media {
		object-position: 68% center;
	}

	.welcome-framework__inner {
		gap: 34px;
		padding-block: 78px;
	}

	.welcome-framework__copy h2,
	.welcome-fit h2,
	.welcome-dms h2,
	.welcome-final h2 {
		font-size: 44px;
	}

	.welcome-framework__columns {
		padding-left: 0;
		border-top: 3px solid var(--stl-gold);
		border-left: 0;
	}

	.welcome-framework__columns > div {
		padding: 24px 0;
	}

	.welcome-fit__inner {
		gap: 30px;
	}

	.welcome-fit__lead {
		font-size: 23px;
	}

	.welcome-experiences__grid {
		border-bottom: 0;
	}

	.welcome-experience,
	.welcome-experience:nth-child(odd),
	.welcome-experience:nth-child(even) {
		min-height: 0;
		padding: 30px 0 34px;
		border-right: 0;
		border-bottom: 1px solid var(--stl-border);
	}

	.welcome-experience h3 {
		font-size: 26px;
	}

	.welcome-dms__inner {
		gap: 50px;
	}

	.welcome-dms__copy > p:not(.welcome-section-label) {
		font-size: 16px;
	}

	.welcome-dms__quote {
		padding: 30px 0 30px 24px;
	}

	.welcome-dms__quote p {
		font-size: 30px;
	}

	.welcome-dms .welcome-actions,
	.welcome-final .welcome-actions {
		flex-direction: column;
	}

	.welcome-dms .welcome-button,
	.welcome-final .welcome-button {
		width: 100%;
	}

	.welcome-faq summary {
		font-size: 19px;
	}

	.welcome-final__inner > p:not(.welcome-section-label) {
		font-size: 16px;
	}
}

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

	.welcome-header,
	.welcome-button,
	.welcome-nav a,
	.welcome-nav a::after,
	.welcome-hero__banner,
	.welcome-hero__statement,
	.welcome-hero__lede,
	.welcome-hero .welcome-actions,
	.welcome-hero__signals,
	html.has-js .reveal {
		animation: none;
		transition: none;
	}

	html.has-js .reveal {
		opacity: 1;
		transform: none;
	}
}
