@charset "UTF-8";

/*
 * Future Stack Tech — LONGVIEW.
 *
 * The home page is a device-life observatory. Motion exists only to explain
 * a change of state: want, buy, settle, age, break and exit.
 */

.fsm-brand-fst .fsm-site-main {
	background: var(--fst-carbon);
}

/* Longview / device-life opening */
.fst-longview {
	--fst-progress: 0;
	--fst-stage-progress: 0;
	--fst-pointer-x: 0;
	--fst-pointer-y: 0;
	--fst-spread: 0px;
	--fst-title-opacity: 1;
	--fst-title-y: 0px;
	--fst-object-scale: 0.82;
	--fst-wires-opacity: 0;
	--fst-tilt-x: 58deg;
	--fst-tilt-z: -28deg;
	position: relative;
	height: auto;
	background: var(--fst-carbon);
	color: #fff;
}

.fst-longview__sticky {
	position: relative;
	top: auto;
	height: calc(100svh - var(--fst-header-h));
	min-height: 620px;
	overflow: hidden;
	isolation: isolate;
	background:
		linear-gradient(90deg, transparent 0 49.96%, rgba(255, 255, 255, 0.11) 50%, transparent 50.04%),
		linear-gradient(0deg, transparent 0 49.96%, rgba(255, 255, 255, 0.06) 50%, transparent 50.04%),
		radial-gradient(circle at 52% 45%, rgba(255, 77, 24, 0.13), transparent 20%),
		radial-gradient(circle at 55% 48%, rgba(118, 107, 255, 0.11), transparent 34%),
		var(--fst-carbon);
}

.has-fst-motion .fst-longview {
	height: 520svh;
}

.has-fst-motion .fst-longview__sticky {
	position: sticky;
	top: var(--fst-header-h);
}

.fst-longview__sticky::before,
.fst-longview__sticky::after {
	position: absolute;
	z-index: -1;
	content: "";
	pointer-events: none;
}

.fst-longview__sticky::before {
	inset: 0;
	background:
		repeating-linear-gradient(90deg, transparent 0 calc(8.333vw - 1px), rgba(255, 255, 255, 0.045) calc(8.333vw - 1px) 8.333vw),
		repeating-linear-gradient(0deg, transparent 0 9.95vh, rgba(255, 255, 255, 0.035) 9.95vh 10vh);
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	opacity: 0.7;
}

.fst-longview__sticky::after {
	inset: 0;
	border: clamp(14px, 1.35vw, 24px) solid var(--fst-carbon);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.fst-longview__grain {
	position: absolute;
	z-index: 7;
	inset: 0;
	opacity: 0.18;
	pointer-events: none;
	background-image:
		url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
}

.fst-longview__chapter {
	position: absolute;
	z-index: 8;
	top: clamp(28px, 3vw, 52px);
	right: clamp(30px, 4vw, 72px);
	left: clamp(30px, 4vw, 72px);
	display: flex;
	justify-content: space-between;
	gap: 20px;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.14em;
	color: rgba(255, 255, 255, 0.52);
}

.fst-longview__title {
	position: absolute;
	z-index: 5;
	top: clamp(94px, 14vh, 148px);
	left: clamp(30px, 5vw, 90px);
	width: min(69vw, 1040px);
	opacity: 1;
	transform: none;
	transition: opacity 160ms linear;
}

.has-fst-motion .fst-longview__title {
	opacity: var(--fst-title-opacity);
	transform: translate3d(0, var(--fst-title-y), 0);
}

.fst-longview__title > p:first-child {
	margin: 0 0 24px;
	font-family: var(--fst-code);
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--fst-thermal);
}

.fst-longview__title h1 {
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(48px, 5.35vw, 86px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.fst-longview__title h1 span,
.fst-longview__title h1 strong {
	display: inline;
	font-weight: inherit;
}

.fst-longview__title h1 strong {
	color: transparent;
	font-size: inherit;
	line-height: inherit;
	background:
		linear-gradient(105deg, #fff 8%, #d4d4d0 42%, var(--fst-thermal) 88%);
	background-clip: text;
	-webkit-background-clip: text;
}

.fst-longview__lead {
	max-width: 45em;
	margin: 24px 0 0;
	font-size: clamp(13px, 1.05vw, 16px);
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.68);
}

.fst-timecut {
	position: absolute;
	z-index: 2;
	top: 56%;
	left: 66%;
	width: min(45vw, 700px);
	aspect-ratio: 1;
	perspective: 1400px;
	transform:
		translate(-50%, -50%)
		rotateX(var(--fst-tilt-x))
		rotateZ(var(--fst-tilt-z))
		scale(var(--fst-object-scale));
	transform-style: preserve-3d;
	transition: transform 260ms var(--fst-ease);
}

.fst-timecut::before,
.fst-timecut::after {
	position: absolute;
	z-index: -2;
	top: 50%;
	left: 50%;
	content: "";
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.fst-timecut::before {
	width: 86%;
	height: 86%;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow:
		0 0 0 7vw rgba(255, 255, 255, 0.015),
		0 0 0 14vw rgba(255, 255, 255, 0.012);
}

.fst-timecut::after {
	width: 62%;
	height: 62%;
	border: 1px dashed rgba(255, 77, 24, 0.26);
}

.fst-timecut__shadow {
	position: absolute;
	z-index: -1;
	top: 57%;
	left: 50%;
	width: 56%;
	height: 25%;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.72);
	filter: blur(30px);
	transform: translate(-50%, -50%) translateZ(-220px);
}

.fst-timecut__slice {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 49%;
	aspect-ratio: 1.58;
	border: 1px solid rgba(255, 255, 255, 0.38);
	border-radius: 18px;
	transform-style: preserve-3d;
	transition:
		border-color 340ms ease,
		box-shadow 340ms ease,
		filter 340ms ease;
}

.fst-timecut__slice::before,
.fst-timecut__slice::after,
.fst-timecut__slice i {
	position: absolute;
	content: "";
	pointer-events: none;
}

.fst-timecut__slice::before {
	inset: 8%;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 12px;
}

.fst-timecut__slice::after {
	top: 14%;
	right: 9%;
	width: 8%;
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
}

.fst-timecut__slice i {
	top: 22%;
	left: 18%;
	width: 48%;
	height: 56%;
	border:
		1px solid rgba(255, 255, 255, 0.18);
	border-radius: 7px;
	background:
		repeating-linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, 0.08) 8px 9px);
}

.fst-timecut__slice b {
	position: absolute;
	right: 10%;
	bottom: 10%;
	font-family: var(--fst-code);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.48);
}

.fst-timecut__slice--shell {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02) 48%),
		linear-gradient(320deg, rgba(255, 77, 24, 0.2), transparent 34%),
		rgba(96, 99, 100, 0.54);
	box-shadow:
		0 34px 70px rgba(0, 0, 0, 0.54),
		inset 0 0 40px rgba(255, 255, 255, 0.08);
	transform: translate(-50%, -50%) translateZ(calc(58px + var(--fst-spread) * 1.05));
}

.fst-timecut__slice--glass {
	background:
		linear-gradient(155deg, rgba(255, 255, 255, 0.32), transparent 50%),
		rgba(131, 190, 197, 0.12);
	backdrop-filter: blur(7px);
	-webkit-backdrop-filter: blur(7px);
	transform: translate(-50%, -50%) translateZ(calc(20px + var(--fst-spread) * 0.45)) translateX(calc(var(--fst-spread) * -0.48));
}

.fst-timecut__slice--core {
	border-color: rgba(255, 77, 24, 0.62);
	background:
		radial-gradient(circle at 50% 50%, rgba(255, 77, 24, 0.22), transparent 45%),
		repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.07) 18px 19px),
		#161616;
	transform: translate(-50%, -50%) translateZ(calc(-20px + var(--fst-spread) * -0.25)) translateX(calc(var(--fst-spread) * 0.55));
}

.fst-timecut__slice--power {
	width: 41%;
	background:
		linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.08) 48% 52%, transparent 52%),
		linear-gradient(135deg, rgba(118, 107, 255, 0.36), rgba(18, 18, 19, 0.8));
	transform: translate(-50%, -50%) translateZ(calc(-56px + var(--fst-spread) * -0.7)) translateY(calc(var(--fst-spread) * 0.2));
}

.fst-timecut__slice--memory {
	width: 34%;
	border-color: rgba(118, 107, 255, 0.58);
	background:
		repeating-linear-gradient(0deg, transparent 0 14px, rgba(118, 107, 255, 0.2) 14px 15px),
		rgba(14, 14, 16, 0.94);
	transform: translate(-50%, -50%) translateZ(calc(-92px + var(--fst-spread) * -1.06)) translateX(calc(var(--fst-spread) * -0.22));
}

.fst-timecut__wires {
	position: absolute;
	z-index: -1;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	fill: rgba(255, 77, 24, 0.68);
	stroke: rgba(255, 77, 24, 0.42);
	stroke-width: 1.2;
	opacity: var(--fst-wires-opacity);
	transform: rotateZ(28deg) translateZ(-140px);
}

.fst-longview__readout {
	position: absolute;
	z-index: 6;
	right: clamp(30px, 5vw, 90px);
	bottom: clamp(132px, 16vh, 180px);
	width: min(32vw, 440px);
	padding: 24px 0 0 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
	border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.fst-longview__readout > p:first-child {
	margin: 0 0 14px;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.14em;
	color: var(--fst-thermal);
}

.fst-longview__readout h2 {
	max-width: 12em;
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(24px, 2.9vw, 46px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.025em;
	line-break: strict;
	text-wrap: balance;
}

.fst-longview__readout > p:nth-of-type(2) {
	max-width: 34em;
	margin: 18px 0 0;
	font-size: 13px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.56);
}

.fst-longview__readout a {
	display: inline-flex;
	gap: 24px;
	margin-top: 20px;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.06em;
	text-decoration: none;
}

.fst-longview__readout a span {
	color: var(--fst-thermal);
}

.fst-longview__timeline {
	position: absolute;
	z-index: 9;
	right: clamp(30px, 4vw, 72px);
	bottom: clamp(34px, 4.6vh, 54px);
	left: clamp(30px, 4vw, 72px);
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	list-style: none;
}

.fst-longview__timeline li {
	min-width: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fst-longview__timeline li:first-child {
	border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.fst-longview__timeline button {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 2px 12px;
	width: 100%;
	min-height: 70px;
	padding: 14px 16px;
	border: 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.44);
	font-family: var(--fst-code);
	text-align: left;
	cursor: pointer;
	transition:
		background 180ms ease,
		color 180ms ease;
}

.fst-longview__timeline button::before {
	position: absolute;
	top: -2px;
	right: 0;
	left: 0;
	height: 3px;
	background: var(--fst-thermal);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 260ms var(--fst-ease);
}

.fst-longview__timeline button[aria-current="step"] {
	background: rgba(255, 255, 255, 0.055);
	color: #fff;
}

.fst-longview__timeline button[aria-current="step"]::before {
	transform: scaleX(1);
}

.fst-longview__timeline span {
	grid-row: 1 / 3;
	font-size: 8px;
	color: var(--fst-thermal);
}

.fst-longview__timeline strong {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.fst-longview__timeline small {
	font-family: var(--fst-reading);
	font-size: 9px;
}

.fst-longview__scroll {
	position: absolute;
	z-index: 6;
	bottom: clamp(132px, 16vh, 180px);
	left: clamp(30px, 4vw, 72px);
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0;
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.13em;
	color: rgba(255, 255, 255, 0.42);
	writing-mode: vertical-rl;
}

.fst-longview__scroll span {
	width: 1px;
	height: 52px;
	background: linear-gradient(var(--fst-thermal) calc(var(--fst-progress) * 100%), rgba(255, 255, 255, 0.16) 0);
}

/* After the hype */
.fst-after-hype {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-top: 1px solid var(--fst-line-dark);
	background:
		radial-gradient(circle at 78% 22%, rgba(118, 107, 255, 0.16), transparent 30%),
		linear-gradient(128deg, rgba(255, 77, 24, 0.06), transparent 38%),
		var(--fst-carbon);
	color: #fff;
}

.fst-after-hype::before {
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		repeating-linear-gradient(90deg, transparent 0 calc(8.333vw - 1px), rgba(255, 255, 255, 0.04) calc(8.333vw - 1px) 8.333vw);
	content: "";
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	pointer-events: none;
}

.fst-after-hype__ticker {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 4vw;
	border-bottom: 1px solid var(--fst-line-dark);
	font-family: var(--fst-code);
	font-size: clamp(18px, 2.3vw, 36px);
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.16);
	white-space: nowrap;
}

.fst-after-hype__ticker i {
	color: var(--fst-thermal);
	font-style: normal;
}

.fst-after-hype__inner {
	position: relative;
	z-index: 2;
	width: var(--fst-shell);
	margin: 0 auto;
	padding: clamp(90px, 10vw, 148px) 0;
	display: grid;
	grid-template-columns: minmax(140px, 0.24fr) minmax(0, 1fr) minmax(270px, 0.42fr);
	gap: 38px 4.5vw;
	align-items: start;
}

.fst-after-hype__code {
	margin: 0;
	font-family: var(--fst-code);
	font-size: 10px;
	letter-spacing: 0.15em;
	color: var(--fst-thermal);
}

.fst-after-hype h2 {
	grid-column: 2 / -1;
	max-width: 1060px;
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(38px, 3.65vw, 56px);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	font-feature-settings: "palt" 1;
	line-break: strict;
}

.fst-after-hype h2 span {
	display: inline-block;
	margin-right: 0.12em;
	white-space: nowrap;
}

.fst-after-hype__inner > p:last-child {
	grid-column: 3;
	margin: 0;
	font-size: 14px;
	line-height: 1.95;
	color: rgba(255, 255, 255, 0.58);
}

.fst-after-hype__lifeline {
	position: absolute;
	z-index: -1;
	inset: 50px 0 0;
	opacity: 0.68;
	pointer-events: none;
	transition: opacity 800ms ease;
}

.has-fst-motion .fst-after-hype__lifeline {
	opacity: 0;
}

.has-fst-motion .fst-after-hype__lifeline.is-fst-entered {
	opacity: 0.68;
}

.fst-after-hype__lifeline svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
	fill: none;
}

.fst-after-hype__lifeline-grid {
	stroke: rgba(255, 255, 255, 0.055);
	stroke-width: 1;
}

.fst-after-hype__lifeline-value,
.fst-after-hype__lifeline-friction {
	stroke-width: 2;
	vector-effect: non-scaling-stroke;
	stroke-dasharray: 2200;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 1400ms var(--fst-ease);
}

.has-fst-motion .fst-after-hype__lifeline-value,
.has-fst-motion .fst-after-hype__lifeline-friction {
	stroke-dashoffset: 2200;
}

.has-fst-motion .fst-after-hype__lifeline.is-fst-entered .fst-after-hype__lifeline-value,
.has-fst-motion .fst-after-hype__lifeline.is-fst-entered .fst-after-hype__lifeline-friction {
	stroke-dashoffset: 0;
}

.fst-after-hype__lifeline-value {
	stroke: rgba(255, 77, 24, 0.48);
}

.fst-after-hype__lifeline-friction {
	stroke: rgba(118, 107, 255, 0.34);
}

.fst-after-hype__lifeline > span {
	position: absolute;
	top: var(--fst-point-y);
	left: var(--fst-point-x);
	display: grid;
	gap: 7px;
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.38);
	transform: translate(-50%, -50%);
}

.fst-after-hype__lifeline > span::before {
	width: 6px;
	height: 6px;
	margin: 0 auto;
	border: 1px solid var(--fst-thermal);
	border-radius: 50%;
	background: var(--fst-carbon);
	content: "";
}

/* One real current article */
.fst-now {
	padding: clamp(86px, 10vw, 160px) 0;
	background: var(--fst-alloy);
	color: var(--fst-ink);
}

.fst-now__story {
	width: var(--fst-shell);
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
	min-height: 610px;
	border: 1px solid var(--fst-line-light);
	text-decoration: none;
	background: var(--fst-paper-bright);
}

.fst-now__media {
	position: relative;
	min-height: 100%;
	overflow: hidden;
	background: var(--fst-carbon);
}

.fst-now__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.84) contrast(1.04);
	transition: transform 850ms var(--fst-ease);
}

.fst-now__story:hover .fst-now__media img {
	transform: scale(1.025);
}

.fst-now__typeplate {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-rows: auto 1fr auto;
	padding: clamp(26px, 3vw, 48px);
	background:
		radial-gradient(circle at 78% 20%, rgba(118, 107, 255, 0.32), transparent 24%),
		linear-gradient(135deg, transparent 0 64%, rgba(255, 77, 24, 0.18) 64.15% 64.35%, transparent 64.5%),
		repeating-linear-gradient(90deg, transparent 0 calc(12.5% - 1px), rgba(255, 255, 255, 0.055) calc(12.5% - 1px) 12.5%),
		repeating-linear-gradient(0deg, transparent 0 calc(16.666% - 1px), rgba(255, 255, 255, 0.04) calc(16.666% - 1px) 16.666%),
		var(--fst-carbon);
	color: #fff;
}

.fst-now__maphead {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--fst-line-dark);
}

.fst-now__maphead span,
.fst-now__maphead b {
	font-family: var(--fst-code);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.13em;
}

.fst-now__maphead b {
	color: var(--fst-thermal);
}

.fst-now__decision-map {
	align-self: center;
	display: grid;
	width: min(100%, 680px);
	border-top: 1px solid var(--fst-line-dark);
}

.fst-now__decision-map p {
	display: grid;
	grid-template-columns: 42px minmax(100px, 0.6fr) 1fr;
	align-items: center;
	gap: 18px;
	min-height: 92px;
	margin: 0;
	padding: 0 20px;
	border-bottom: 1px solid var(--fst-line-dark);
	background: rgba(9, 9, 10, 0.46);
	transition:
		background 240ms ease,
		color 240ms ease,
		transform 420ms var(--fst-ease);
}

.fst-now__decision-map p.is-primary {
	background: var(--fst-thermal);
	color: var(--fst-ink);
	transform: translateX(18px);
}

.fst-now__decision-map span {
	font-family: var(--fst-code);
	font-size: 9px;
}

.fst-now__decision-map strong {
	font-family: var(--fst-display);
	font-size: clamp(24px, 2.6vw, 40px);
	font-weight: 700;
	letter-spacing: -0.025em;
}

.fst-now__decision-map small {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
}

.fst-now__decision-map p.is-primary small {
	color: rgba(17, 17, 18, 0.68);
}

.fst-now__mapnote {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 0;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.58);
}

.fst-now__mapnote::before {
	width: 34px;
	height: 1px;
	background: var(--fst-thermal);
	content: "";
}

.fst-now__copy {
	display: flex;
	flex-direction: column;
	padding: clamp(34px, 4.5vw, 76px);
}

.fst-now__copy > p:first-child {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 0 0 auto;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.1em;
	color: rgba(17, 17, 18, 0.5);
}

.fst-now__copy > p:first-child span {
	color: var(--fst-thermal);
}

.fst-now__copy h2 {
	margin: 70px 0 0;
	font-family: var(--fst-display);
	font-size: clamp(36px, 4.2vw, 68px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.025em;
}

.fst-now__copy > p:not(:first-child) {
	margin: 26px 0 0;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(17, 17, 18, 0.64);
}

.fst-now__copy > strong {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin-top: auto;
	padding-top: 46px;
	border-top: 1px solid var(--fst-line-light);
	font-family: var(--fst-code);
	font-size: 10px;
	letter-spacing: 0.03em;
}

.fst-now__copy > strong i {
	color: var(--fst-thermal);
	font-style: normal;
}

/* Condition Composer */
.fst-composer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: clamp(96px, 10vw, 150px) max(4vw, calc((100vw - 1360px) / 2));
	background:
		radial-gradient(circle at 84% 10%, rgba(118, 107, 255, 0.08), transparent 18%),
		radial-gradient(circle at 8% 92%, rgba(255, 77, 24, 0.055), transparent 20%),
		linear-gradient(90deg, transparent 0 49.96%, rgba(17, 17, 18, 0.08) 50%, transparent 50.04%),
		repeating-linear-gradient(90deg, transparent 0 calc(8.333vw - 1px), rgba(17, 17, 18, 0.055) calc(8.333vw - 1px) 8.333vw),
		var(--fst-paper-bright);
	color: var(--fst-ink);
}

.fst-composer::before,
.fst-composer::after {
	position: absolute;
	z-index: -1;
	border: 1px solid rgba(17, 17, 18, 0.08);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.fst-composer::before {
	top: -28vw;
	right: -8vw;
	width: 58vw;
	aspect-ratio: 1;
	box-shadow:
		0 0 0 5vw rgba(17, 17, 18, 0.018),
		0 0 0 13vw rgba(17, 17, 18, 0.014);
}

.fst-composer::after {
	bottom: -25vw;
	left: -13vw;
	width: 42vw;
	aspect-ratio: 1;
	border-color: rgba(255, 77, 24, 0.1);
}

.fst-composer__intro {
	display: grid;
	grid-template-columns: minmax(90px, 0.2fr) minmax(0, 1.25fr) minmax(250px, 0.45fr);
	gap: 3vw;
	align-items: start;
}

.fst-composer__intro > p:first-child {
	margin: 10px 0 0;
	font-family: var(--fst-code);
	font-size: 10px;
	letter-spacing: 0.13em;
	color: var(--fst-thermal);
}

.fst-composer__intro h2 {
	margin: 0;
	font-family: var(--fst-reading);
	font-size: clamp(40px, 4.15vw, 62px);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -0.025em;
	font-feature-settings: "palt" 1;
	line-break: strict;
}

.fst-composer__intro h2 span {
	white-space: nowrap;
}

.fst-composer__intro > p:last-child {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(17, 17, 18, 0.6);
}

.fst-composer__form {
	margin-top: clamp(64px, 7vw, 102px);
}

.fst-composer__bench {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 7fr) minmax(350px, 5fr);
	border: 1px solid var(--fst-ink);
	background: var(--fst-paper-bright);
	box-shadow: 18px 18px 0 rgba(17, 17, 18, 0.035);
}

.fst-composer__inputs {
	min-width: 0;
	border-right: 1px solid var(--fst-ink);
}

.fst-composer__input-head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 7px 28px;
	align-items: end;
	min-height: 94px;
	padding: 20px 22px 18px;
	border-bottom: 1px solid var(--fst-line-light);
}

.fst-composer__input-head > span,
.fst-composer__output header > span {
	font-family: var(--fst-code);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	color: var(--fst-thermal);
}

.fst-composer__input-head > strong {
	grid-column: 1;
	font-family: var(--fst-reading);
	font-size: clamp(18px, 1.55vw, 23px);
	font-weight: 600;
	letter-spacing: -0.02em;
}

.fst-composer__input-head > small {
	grid-column: 2;
	grid-row: 1 / 3;
	display: flex;
	align-items: center;
	gap: 8px;
	align-self: center;
	font-size: 11px;
	color: rgba(17, 17, 18, 0.5);
}

.fst-composer__input-head > small i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--fst-thermal);
	box-shadow: 0 0 0 5px rgba(255, 77, 24, 0.1);
}

.fst-composer__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fst-composer__field {
	min-width: 0;
	margin: 0;
	border: 0;
	border-bottom: 1px solid var(--fst-line-light);
	background: rgba(251, 250, 246, 0.88);
}

.fst-composer__field:nth-child(odd) {
	border-right: 1px solid var(--fst-line-light);
}

.fst-composer__field:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.fst-composer__field summary {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 22px;
	grid-template-rows: auto auto 1fr;
	gap: 5px 14px;
	min-height: 154px;
	padding: 20px 22px 22px;
	list-style: none;
	cursor: pointer;
	transition:
		background 220ms var(--fst-ease),
		color 220ms var(--fst-ease);
}

.fst-composer__field summary::-webkit-details-marker {
	display: none;
}

.fst-composer__field summary:focus-visible {
	z-index: 2;
	outline: 3px solid var(--fst-thermal);
	outline-offset: -3px;
}

.fst-composer__field summary > span {
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.11em;
	color: var(--fst-thermal);
}

.fst-composer__field summary > small {
	font-size: 11px;
	color: rgba(17, 17, 18, 0.5);
}

.fst-composer__field summary > strong {
	align-self: end;
	max-width: 17em;
	font-family: var(--fst-reading);
	font-size: clamp(19px, 1.6vw, 24px);
	font-weight: 600;
	line-height: 1.38;
	letter-spacing: -0.02em;
}

.fst-composer__field summary > i {
	position: relative;
	grid-column: 2;
	grid-row: 1 / 4;
	align-self: center;
	width: 18px;
	height: 18px;
}

.fst-composer__field summary > i::before,
.fst-composer__field summary > i::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 1px;
	background: currentColor;
	content: "";
	transform: translate(-50%, -50%);
	transition: transform 200ms var(--fst-ease);
}

.fst-composer__field summary > i::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.fst-composer__field[open] summary {
	background: var(--fst-carbon);
	color: #fff;
	box-shadow: inset 0 3px 0 var(--fst-thermal);
}

.fst-composer__field[open] summary > small {
	color: rgba(255, 255, 255, 0.54);
}

.fst-composer__field[open] summary > i::after {
	transform: translate(-50%, -50%) rotate(0deg);
}

.fst-composer__field fieldset {
	display: grid;
	gap: 5px;
	margin: 0;
	padding: 12px;
	border: 0;
	border-top: 1px solid var(--fst-line-light);
	animation: fst-composer-open 220ms var(--fst-ease) both;
}

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

.fst-composer__field fieldset label {
	position: relative;
	display: grid;
	grid-template-columns: 16px minmax(0, 1fr) auto;
	gap: 11px;
	align-items: center;
	min-height: 56px;
	padding: 9px 10px;
	border: 1px solid rgba(17, 17, 18, 0.12);
	background: rgba(255, 255, 255, 0.34);
	cursor: pointer;
	transition:
		border-color 180ms ease,
		background 180ms ease,
		color 180ms ease;
}

.fst-composer__field fieldset label:hover {
	border-color: rgba(17, 17, 18, 0.42);
}

.fst-composer__field fieldset label.is-selected {
	border-color: var(--fst-carbon);
	background: var(--fst-carbon);
	color: #fff;
}

.fst-composer__field input[type="radio"] {
	width: 13px;
	height: 13px;
	margin: 0;
	border: 1px solid currentColor;
	border-radius: 50%;
	background: transparent;
	appearance: none;
}

.fst-composer__field input[type="radio"]:checked {
	border: 3px solid var(--fst-carbon);
	background: var(--fst-thermal);
	box-shadow: 0 0 0 1px var(--fst-thermal);
}

.fst-composer__field label.is-selected input[type="radio"] {
	border-color: var(--fst-carbon);
}

.fst-composer__field input[type="radio"]:focus-visible {
	outline: 3px solid var(--fst-thermal);
	outline-offset: 3px;
}

.fst-composer__field label span {
	display: grid;
	gap: 2px;
	min-width: 0;
}

.fst-composer__field label b {
	font-family: var(--fst-reading);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
}

.fst-composer__field label small {
	font-size: 9px;
	color: rgba(17, 17, 18, 0.48);
}

.fst-composer__field label.is-selected small {
	color: rgba(255, 255, 255, 0.52);
}

.fst-composer__field label > i {
	font-family: var(--fst-code);
	font-size: 7px;
	font-style: normal;
	letter-spacing: 0.06em;
	color: rgba(17, 17, 18, 0.3);
}

.fst-composer__field label.is-selected > i {
	color: var(--fst-thermal);
}

.fst-composer__output {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	min-width: 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 112% -8%, rgba(118, 107, 255, 0.28), transparent 36%),
		repeating-linear-gradient(90deg, transparent 0 calc(25% - 1px), rgba(255, 255, 255, 0.045) calc(25% - 1px) 25%),
		var(--fst-carbon);
	color: #fff;
}

.fst-composer__output::before {
	position: absolute;
	right: -116px;
	bottom: -116px;
	width: 270px;
	height: 270px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	box-shadow:
		0 0 0 28px rgba(255, 255, 255, 0.018),
		0 0 0 62px rgba(255, 255, 255, 0.014);
	content: "";
}

.fst-composer__output header {
	position: relative;
	z-index: 1;
	padding: 28px 30px 30px;
	border-bottom: 1px solid var(--fst-line-dark);
}

.fst-composer__output header h3 {
	margin: 44px 0 20px;
	font-family: var(--fst-reading);
	font-size: clamp(31px, 3vw, 45px);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.035em;
	font-feature-settings: "palt" 1;
}

.fst-composer__output header > small {
	display: block;
	max-width: 25em;
	font-size: 11px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.48);
}

.fst-composer__result {
	display: grid;
	grid-template-columns: 1fr;
}

.fst-composer__result div {
	position: relative;
	z-index: 1;
	display: grid;
	align-content: center;
	min-height: 148px;
	padding: 24px 30px;
	border-bottom: 1px solid var(--fst-line-dark);
	transition:
		opacity 150ms ease,
		transform 180ms var(--fst-ease);
}

.fst-composer__result div:last-child {
	border-bottom: 0;
}

.fst-composer__result div > span {
	display: block;
	margin-bottom: 18px;
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.1em;
	color: var(--fst-thermal);
}

.fst-composer__result strong {
	font-family: var(--fst-reading);
	font-size: clamp(17px, 1.5vw, 21px);
	font-weight: 600;
	line-height: 1.55;
	letter-spacing: -0.018em;
}

.fst-composer__result div > small {
	width: max-content;
	max-width: 100%;
	margin-top: 16px;
	padding: 5px 7px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	font-family: var(--fst-code);
	font-size: 7px;
	line-height: 1.45;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.48);
}

.fst-composer.is-updating .fst-composer__result div {
	opacity: 0.35;
	transform: translateY(5px);
}

.fst-composer__signal {
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(58.333% - 1px);
	z-index: 3;
	width: 2px;
	overflow: hidden;
	pointer-events: none;
}

.fst-composer__signal::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent, var(--fst-thermal) 35%, var(--fst-thermal) 65%, transparent);
	content: "";
	opacity: 0;
	transform: translateY(-100%);
}

.fst-composer.is-signaling .fst-composer__signal::after {
	animation: fst-composer-signal 420ms var(--fst-ease);
}

.fst-composer__action {
	display: grid;
	grid-template-columns: 1fr minmax(300px, 440px);
	gap: 32px;
	align-items: center;
	padding: 26px 0 0;
}

.fst-composer__action > p {
	margin: 0;
	font-size: 11px;
	line-height: 1.75;
	color: rgba(17, 17, 18, 0.48);
}

.fst-composer__action > p span {
	display: block;
	margin-bottom: 4px;
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.08em;
	color: var(--fst-thermal);
}

.fst-composer__submit {
	display: flex;
	justify-content: space-between;
	gap: 30px;
	width: min(100%, 440px);
	margin: 0 0 0 auto;
	padding: 22px 24px;
	border: 0;
	background: var(--fst-carbon);
	color: #fff;
	font-family: var(--fst-code);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition:
		background 180ms ease,
		color 180ms ease;
}

.fst-composer__submit:hover,
.fst-composer__submit:focus-visible {
	background: var(--fst-thermal);
}

.fst-composer__noscript {
	margin: 22px 0 0;
	padding: 14px 16px;
	border-left: 3px solid var(--fst-thermal);
	font-size: 12px;
	line-height: 1.7;
	background: rgba(255, 77, 24, 0.06);
}

@keyframes fst-composer-open {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fst-composer-signal {
	0% {
		opacity: 0;
		transform: translateY(-100%);
	}

	24% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateY(100%);
	}
}

/* Tech Atlas — an asymmetric field, not a card row */
.fst-atlas {
	--fst-atlas-x: 30%;
	--fst-atlas-y: 62%;
	--fst-atlas-angle: 14deg;
	--fst-atlas-glow: rgba(255, 77, 24, 0.2);
	position: relative;
	isolation: isolate;
	padding: clamp(100px, 12vw, 190px) max(4vw, calc((100vw - 1360px) / 2));
	background:
		linear-gradient(142deg, rgba(255, 77, 24, 0.055), transparent 38%),
		var(--fst-carbon);
	color: #fff;
	overflow: hidden;
}

.fst-atlas::before,
.fst-atlas::after {
	position: absolute;
	z-index: -2;
	inset: 0;
	content: "";
	pointer-events: none;
	transition:
		background 420ms ease,
		opacity 420ms ease;
}

.fst-atlas::before {
	background:
		radial-gradient(circle at var(--fst-atlas-x) var(--fst-atlas-y), var(--fst-atlas-glow), transparent 21%),
		repeating-linear-gradient(90deg, transparent 0 calc(8.333vw - 1px), rgba(255, 255, 255, 0.035) calc(8.333vw - 1px) 8.333vw);
}

.fst-atlas::after {
	background:
		linear-gradient(var(--fst-atlas-angle), transparent 0 49.92%, rgba(255, 255, 255, 0.11) 50%, transparent 50.08%);
	opacity: 0.54;
}

.fst-atlas[data-fst-atlas-active="1"] {
	--fst-atlas-x: 78%;
	--fst-atlas-y: 48%;
	--fst-atlas-angle: -18deg;
	--fst-atlas-glow: rgba(226, 232, 255, 0.2);
}

.fst-atlas[data-fst-atlas-active="2"] {
	--fst-atlas-x: 62%;
	--fst-atlas-y: 68%;
	--fst-atlas-angle: 0deg;
	--fst-atlas-glow: rgba(118, 107, 255, 0.24);
}

.fst-atlas[data-fst-atlas-active="3"] {
	--fst-atlas-x: 26%;
	--fst-atlas-y: 78%;
	--fst-atlas-angle: 38deg;
	--fst-atlas-glow: rgba(102, 197, 190, 0.2);
}

.fst-atlas[data-fst-atlas-active="4"] {
	--fst-atlas-x: 74%;
	--fst-atlas-y: 78%;
	--fst-atlas-angle: -42deg;
	--fst-atlas-glow: rgba(255, 191, 71, 0.2);
}

.fst-atlas__instrument {
	position: absolute;
	z-index: -1;
	top: var(--fst-atlas-y);
	left: var(--fst-atlas-x);
	width: clamp(260px, 34vw, 540px);
	aspect-ratio: 1;
	color: rgba(255, 255, 255, 0.22);
	transform: translate(-50%, -50%) rotate(var(--fst-atlas-angle));
	transition:
		top 520ms var(--fst-ease),
		left 520ms var(--fst-ease),
		transform 520ms var(--fst-ease);
	pointer-events: none;
}

.fst-atlas__instrument span {
	position: absolute;
	top: 50%;
	left: 50%;
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.13em;
	transform: translate(-50%, -50%) rotate(calc(var(--fst-atlas-angle) * -1));
}

.fst-atlas__instrument i,
.fst-atlas__instrument b {
	position: absolute;
	inset: 10%;
	border: 1px solid currentColor;
	border-radius: 50%;
	content: "";
}

.fst-atlas__instrument i {
	box-shadow:
		0 0 0 clamp(24px, 4vw, 64px) rgba(255, 255, 255, 0.018),
		0 0 0 clamp(48px, 8vw, 128px) rgba(255, 255, 255, 0.012);
}

.fst-atlas__instrument b {
	inset: 0 49.9%;
	border: 0;
	border-radius: 0;
	background: currentColor;
}

.fst-atlas__header {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.25fr 0.45fr;
	gap: 8vw;
	align-items: end;
}

.fst-atlas__header > div > p {
	margin: 0 0 24px;
	font-family: var(--fst-code);
	font-size: 10px;
	letter-spacing: 0.14em;
	color: var(--fst-thermal);
}

.fst-atlas__header h2 {
	max-width: 100%;
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(38px, 4.4vw, 64px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.fst-atlas__header > p {
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.56);
}

.fst-atlas__map {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-template-rows: repeat(9, minmax(52px, 6vw));
	margin-top: clamp(74px, 9vw, 134px);
	border-top: 1px solid var(--fst-line-dark);
	border-left: 1px solid var(--fst-line-dark);
	background:
		repeating-linear-gradient(90deg, transparent 0 calc(8.333% - 1px), rgba(255, 255, 255, 0.05) calc(8.333% - 1px) 8.333%),
		repeating-linear-gradient(0deg, transparent 0 calc(11.111% - 1px), rgba(255, 255, 255, 0.04) calc(11.111% - 1px) 11.111%);
}

.fst-atlas__field {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-width: 0;
	padding: clamp(20px, 2.7vw, 42px);
	border-right: 1px solid var(--fst-line-dark);
	border-bottom: 1px solid var(--fst-line-dark);
	background: rgba(9, 9, 10, 0.76);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	text-decoration: none;
	overflow: hidden;
	transition:
		background 320ms ease,
		color 320ms ease,
		transform 520ms var(--fst-ease);
}

.fst-atlas__field::before,
.fst-atlas__field::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.fst-atlas__field::before {
	inset: 0;
	background:
		linear-gradient(135deg, transparent 0 50%, rgba(255, 255, 255, 0.1) 50.15% 50.35%, transparent 50.5%);
	opacity: 0;
	transition: opacity 280ms ease;
}

.fst-atlas__field::after {
	right: -12%;
	bottom: -44%;
	width: 62%;
	aspect-ratio: 1;
	border: 1px solid currentColor;
	border-radius: 50%;
	opacity: 0.18;
}

.fst-atlas__field:hover,
.fst-atlas__field:focus-visible,
.fst-atlas__field.is-active {
	z-index: 3;
	background: var(--fst-alloy);
	color: var(--fst-ink);
	transform: translate3d(0, -8px, 0);
}

.fst-atlas__field:hover::before,
.fst-atlas__field:focus-visible::before,
.fst-atlas__field.is-active::before {
	opacity: 1;
}

.fst-atlas__field > span {
	font-family: var(--fst-code);
	font-size: 9px;
	color: var(--fst-thermal);
}

.fst-atlas__field small {
	font-family: var(--fst-code);
	font-size: 8px;
	letter-spacing: 0.12em;
	color: rgba(255, 255, 255, 0.46);
}

.fst-atlas__field:hover small,
.fst-atlas__field:focus-visible small,
.fst-atlas__field.is-active small {
	color: rgba(17, 17, 18, 0.48);
}

.fst-atlas__field h3 {
	margin: 10px 0 0;
	font-family: var(--fst-display);
	font-size: clamp(28px, 3.3vw, 52px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.025em;
}

.fst-atlas__field p {
	max-width: 28em;
	margin: 16px 0 0;
	font-size: 12px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.52);
}

.fst-atlas__field:hover p,
.fst-atlas__field:focus-visible p,
.fst-atlas__field.is-active p {
	color: rgba(17, 17, 18, 0.62);
}

.fst-atlas__field > i {
	position: absolute;
	right: clamp(18px, 2.4vw, 36px);
	bottom: clamp(18px, 2.4vw, 36px);
	font-style: normal;
	color: var(--fst-thermal);
}

.fst-atlas__field--compute {
	grid-area: 1 / 1 / 6 / 8;
}

.fst-atlas__field--vision {
	grid-area: 1 / 8 / 4 / 13;
}

.fst-atlas__field--sound {
	grid-area: 4 / 8 / 7 / 13;
}

.fst-atlas__field--network {
	grid-area: 6 / 1 / 10 / 5;
}

.fst-atlas__field--power {
	grid-area: 7 / 5 / 10 / 13;
}

/* Hidden spec translator */
.fst-hidden-spec {
	--fst-spec-x: 78%;
	--fst-spec-y: 22%;
	--fst-spec-angle: -22deg;
	--fst-spec-halo: rgba(17, 17, 18, 0.16);
	position: relative;
	isolation: isolate;
	padding: clamp(88px, 9vw, 150px) max(4vw, calc((100vw - 1360px) / 2));
	background: var(--fst-thermal);
	color: var(--fst-ink);
	overflow: hidden;
}

.fst-hidden-spec::before,
.fst-hidden-spec::after {
	position: absolute;
	z-index: 0;
	inset: 0;
	content: "";
	transition:
		background 420ms ease,
		opacity 420ms ease;
	pointer-events: none;
}

.fst-hidden-spec::before {
	background:
		linear-gradient(90deg, transparent 0 49.95%, rgba(17, 17, 18, 0.14) 50%, transparent 50.05%),
		repeating-linear-gradient(90deg, transparent 0 calc(8.333vw - 1px), rgba(17, 17, 18, 0.08) calc(8.333vw - 1px) 8.333vw);
}

.fst-hidden-spec::after {
	background:
		radial-gradient(circle at var(--fst-spec-x) var(--fst-spec-y), transparent 0 74px, var(--fst-spec-halo) 75px 76px, transparent 77px 112px, var(--fst-spec-halo) 113px 114px, transparent 115px),
		linear-gradient(var(--fst-spec-angle), transparent 0 49.82%, rgba(17, 17, 18, 0.22) 49.94% 50.06%, transparent 50.18%),
		radial-gradient(circle at var(--fst-spec-x) var(--fst-spec-y), rgba(255, 255, 255, 0.15), transparent 24%);
	opacity: 0.74;
}

.fst-hidden-spec[data-fst-spec-active="power"] {
	--fst-spec-x: 22%;
	--fst-spec-y: 76%;
	--fst-spec-angle: 18deg;
	--fst-spec-halo: rgba(17, 17, 18, 0.19);
}

.fst-hidden-spec[data-fst-spec-active="light"] {
	--fst-spec-x: 76%;
	--fst-spec-y: 66%;
	--fst-spec-angle: -42deg;
	--fst-spec-halo: rgba(255, 255, 255, 0.38);
}

.fst-hidden-spec[data-fst-spec-active="compute"] {
	--fst-spec-x: 18%;
	--fst-spec-y: 24%;
	--fst-spec-angle: 42deg;
	--fst-spec-halo: rgba(118, 107, 255, 0.3);
}

.fst-hidden-spec > * {
	position: relative;
	z-index: 1;
}

.fst-hidden-spec__top {
	display: grid;
	grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
	gap: clamp(32px, 5vw, 80px);
	align-items: start;
}

.fst-hidden-spec__top > p {
	margin: 10px 0 0;
	font-family: var(--fst-code);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.12em;
}

.fst-hidden-spec__top h2 {
	margin: 0;
	font-family: var(--fst-reading);
	font-size: clamp(38px, 3.8vw, 58px);
	font-weight: 600;
	line-height: 1.18;
	letter-spacing: -0.025em;
	font-feature-settings: "palt" 1;
	text-wrap: balance;
	word-break: auto-phrase;
}

.fst-hidden-spec__stage {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
	gap: 6vw;
	align-items: center;
	margin-top: clamp(62px, 7vw, 108px);
	padding-bottom: clamp(46px, 5vw, 74px);
	border-bottom: 2px solid var(--fst-ink);
}

.fst-hidden-spec__number {
	margin: 0;
	font-family: var(--fst-signal);
	font-size: clamp(96px, 12.5vw, 200px);
	font-weight: 500;
	line-height: 0.82;
	letter-spacing: -0.065em;
	font-variant-numeric: lining-nums tabular-nums;
	white-space: nowrap;
}

.fst-hidden-spec__number small {
	margin-left: 12px;
	font-family: var(--fst-code);
	font-size: 0.15em;
	font-weight: 500;
	letter-spacing: 0;
}

.fst-hidden-spec__meaning > p {
	margin: 0 0 18px;
	font-family: var(--fst-code);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.fst-hidden-spec__meaning h3 {
	max-width: 17em;
	margin: 0;
	font-family: var(--fst-reading);
	font-size: clamp(28px, 2.8vw, 42px);
	font-weight: 600;
	line-height: 1.28;
	letter-spacing: -0.018em;
	font-feature-settings: "palt" 1;
	text-wrap: balance;
	word-break: auto-phrase;
}

.fst-hidden-spec__meaning dl {
	margin: 34px 0 0;
	border-top: 1px solid rgba(17, 17, 18, 0.3);
}

.fst-hidden-spec__meaning dl div {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 20px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(17, 17, 18, 0.3);
}

.fst-hidden-spec__meaning dt {
	font-family: var(--fst-code);
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.fst-hidden-spec__meaning dd {
	margin: 0;
	font-family: var(--fst-reading);
	font-size: 14px;
	line-height: 1.65;
}

.fst-hidden-spec__choices {
	display: none;
	grid-template-columns: repeat(4, 1fr);
}

.fst-hidden-spec.is-fst-spec-ready .fst-hidden-spec__choices {
	display: grid;
}

.fst-hidden-spec__choices button {
	display: grid;
	gap: 10px;
	min-height: 96px;
	padding: 18px 20px;
	border: 0;
	border-right: 1px solid rgba(17, 17, 18, 0.32);
	border-bottom: 1px solid rgba(17, 17, 18, 0.32);
	background: transparent;
	color: var(--fst-ink);
	text-align: left;
	cursor: pointer;
}

.fst-hidden-spec__choices button:first-child {
	border-left: 1px solid rgba(17, 17, 18, 0.32);
}

.fst-hidden-spec__choices button[aria-pressed="true"] {
	background: var(--fst-carbon);
	color: #fff;
}

.fst-hidden-spec__choices button span {
	font-family: var(--fst-signal);
	font-size: clamp(20px, 1.8vw, 28px);
	font-weight: 500;
	letter-spacing: -0.025em;
	font-variant-numeric: lining-nums tabular-nums;
}

.fst-hidden-spec__choices button small {
	font-family: var(--fst-reading);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.fst-hidden-spec__note {
	margin: 18px 0 0;
	font-family: var(--fst-reading);
	font-size: 11px;
	line-height: 1.65;
}

/* Device Lifeline */
.fst-lifeline {
	position: relative;
	height: auto;
	background: var(--fst-carbon);
	color: #fff;
}

.fst-lifeline__sticky {
	position: relative;
	top: auto;
	height: auto;
	min-height: 620px;
	overflow: visible;
	display: grid;
	grid-template-rows: auto 1fr auto;
	padding: clamp(36px, 4vw, 64px) 4vw clamp(28px, 3vw, 48px);
	background:
		linear-gradient(90deg, transparent 0 49.96%, rgba(255, 255, 255, 0.08) 50%, transparent 50.04%),
		radial-gradient(circle at 82% 18%, rgba(118, 107, 255, 0.16), transparent 25%),
		var(--fst-carbon);
}

/*
 * The horizontal ownership sequence is a desktop-only enhancement. Keeping
 * these rules inside the same breakpoint as the JavaScript controller avoids
 * a mobile specificity conflict that can leave a 430svh sticky scroll trap.
 */
@media (min-width: 1025px) {
	.has-fst-motion .fst-lifeline {
		height: 430svh;
	}

	.has-fst-motion .fst-lifeline__sticky {
		position: sticky;
		top: var(--fst-header-h);
		height: calc(100svh - var(--fst-header-h));
		overflow: hidden;
	}
}

.fst-lifeline__sticky > header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 40px;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--fst-line-dark);
}

.fst-lifeline__sticky > header p {
	margin: 0;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.14em;
	color: var(--fst-thermal);
}

.fst-lifeline__sticky > header h2 {
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(40px, 4.8vw, 72px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.025em;
}

.fst-lifeline__viewport {
	min-height: 0;
	overflow-x: auto;
	overflow-y: hidden;
}

@media (min-width: 1025px) {
	.has-fst-motion .fst-lifeline__viewport {
		overflow: hidden;
	}
}

.fst-lifeline__track {
	display: flex;
	height: 100%;
	width: max-content;
	margin: 0;
	padding: 0;
	list-style: none;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.fst-lifeline__track li {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	width: min(62vw, 860px);
	min-width: min(62vw, 860px);
	padding: clamp(40px, 6vw, 92px);
	border-right: 1px solid var(--fst-line-dark);
	overflow: hidden;
}

.fst-lifeline__track li::before {
	position: absolute;
	top: 12%;
	right: 10%;
	width: clamp(160px, 22vw, 350px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 3vw rgba(255, 255, 255, 0.018),
		0 0 0 7vw rgba(255, 255, 255, 0.012);
}

.fst-lifeline__track li:nth-child(2)::before {
	border-radius: 0;
	transform: rotate(25deg);
}

.fst-lifeline__track li:nth-child(3)::before {
	border-color: rgba(255, 77, 24, 0.34);
}

.fst-lifeline__track li:nth-child(4)::before {
	border-style: dashed;
}

.fst-lifeline__track li:nth-child(5)::before {
	border-color: rgba(118, 107, 255, 0.42);
	transform: scale(0.74);
}

.fst-lifeline__track span {
	position: relative;
	margin-bottom: 28px;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.13em;
	color: var(--fst-thermal);
}

.fst-lifeline__track strong {
	position: relative;
	font-family: var(--fst-display);
	font-size: clamp(44px, 5.6vw, 84px);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.025em;
}

.fst-lifeline__track p {
	position: relative;
	max-width: 34em;
	margin: 28px 0 0;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.57);
}

.fst-lifeline__track a {
	position: relative;
	display: flex;
	justify-content: space-between;
	gap: 30px;
	width: min(100%, 380px);
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.23);
	font-family: var(--fst-code);
	font-size: 9px;
	text-decoration: none;
}

.fst-lifeline__track a i {
	color: var(--fst-thermal);
	font-style: normal;
}

.fst-lifeline__progress {
	height: 3px;
	background: rgba(255, 255, 255, 0.1);
}

.fst-lifeline__progress span {
	display: block;
	width: 100%;
	height: 100%;
	background: var(--fst-thermal);
	transform: scaleX(0);
	transform-origin: left;
}

/* Evidence drawers */
.fst-observatory {
	padding: clamp(100px, 12vw, 190px) max(4vw, calc((100vw - 1360px) / 2));
	background: var(--fst-alloy);
	color: var(--fst-ink);
}

.fst-observatory__head {
	display: grid;
	grid-template-columns: 0.25fr 1.3fr 0.42fr;
	gap: 5vw;
	align-items: start;
}

.fst-observatory__head > p:first-child {
	margin: 10px 0 0;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.12em;
	color: var(--fst-thermal);
}

.fst-observatory__head h2 {
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(42px, 4.9vw, 72px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.025em;
}

.fst-observatory__head h2 span {
	display: block;
	white-space: nowrap;
}

.fst-observatory__head > p:last-child {
	margin: 12px 0 0;
	font-size: 14px;
	line-height: 1.9;
	color: rgba(17, 17, 18, 0.6);
}

.fst-observatory__drawers {
	margin-top: clamp(74px, 9vw, 136px);
	border-top: 1px solid var(--fst-line-light);
}

.fst-observatory__drawers details {
	border-bottom: 1px solid var(--fst-line-light);
}

.fst-observatory__drawers summary {
	display: grid;
	grid-template-columns: 74px 1fr auto;
	gap: 24px;
	align-items: center;
	min-height: 108px;
	padding: 20px 0;
	cursor: pointer;
	list-style: none;
}

.fst-observatory__drawers summary::-webkit-details-marker {
	display: none;
}

.fst-observatory__drawers summary span {
	font-family: var(--fst-code);
	font-size: 9px;
	color: var(--fst-thermal);
}

.fst-observatory__drawers summary strong {
	font-family: var(--fst-display);
	font-size: clamp(22px, 2.6vw, 40px);
	font-weight: 700;
	letter-spacing: -0.02em;
}

.fst-observatory__drawers summary i {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--fst-line-light);
	font-style: normal;
	transition: transform 240ms ease;
}

.fst-observatory__drawers details[open] summary i {
	transform: rotate(45deg);
}

.fst-observatory__drawers details > p {
	max-width: 62em;
	margin: 0;
	padding: 0 0 42px 98px;
	font-size: 14px;
	line-height: 1.95;
	color: rgba(17, 17, 18, 0.66);
}

/* Outcomes rather than a single conversion funnel */
.fst-exit-paths {
	display: grid;
	grid-template-columns: minmax(250px, 0.42fr) minmax(520px, 0.82fr);
	align-items: start;
	gap: clamp(54px, 8vw, 130px);
	padding: clamp(100px, 12vw, 190px) max(4vw, calc((100vw - 1360px) / 2));
	background:
		radial-gradient(circle at 15% 18%, rgba(255, 77, 24, 0.08), transparent 28%),
		repeating-linear-gradient(90deg, transparent 0 calc(8.333vw - 1px), rgba(17, 17, 18, 0.04) calc(8.333vw - 1px) 8.333vw),
		var(--fst-paper-bright);
	color: var(--fst-ink);
}

.fst-exit-paths > header {
	display: block;
}

.fst-exit-paths > header p {
	margin: 12px 0 0;
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.12em;
	color: var(--fst-thermal);
}

.fst-exit-paths > header h2 {
	margin: 28px 0 0;
	font-family: var(--fst-display);
	font-size: clamp(38px, 4.3vw, 64px);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.fst-exit-paths nav {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 0;
	border-top: 1px solid var(--fst-line-light);
}

.fst-exit-paths nav a {
	position: relative;
	display: grid;
	grid-template-columns: 74px minmax(150px, 0.62fr) minmax(190px, 1fr) 24px;
	align-items: center;
	gap: 22px;
	min-height: 96px;
	padding: 20px 0;
	border-bottom: 1px solid var(--fst-line-light);
	text-decoration: none;
	overflow: hidden;
	transition:
		background 220ms ease,
		color 220ms ease,
		padding 320ms var(--fst-ease);
}

.fst-exit-paths nav a:hover,
.fst-exit-paths nav a:focus-visible {
	background: var(--fst-carbon);
	color: #fff;
	padding-inline: 20px;
}

.fst-exit-paths nav a > span {
	font-family: var(--fst-code);
	font-size: 9px;
	letter-spacing: 0.1em;
	color: var(--fst-thermal);
}

.fst-exit-paths nav a > strong {
	margin: 0;
	font-family: var(--fst-display);
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.fst-exit-paths nav a > small {
	margin: 0;
	font-size: 12px;
	line-height: 1.6;
	color: rgba(17, 17, 18, 0.56);
}

.fst-exit-paths nav a:hover > small,
.fst-exit-paths nav a:focus-visible > small {
	color: rgba(255, 255, 255, 0.55);
}

.fst-exit-paths nav a > i {
	position: static;
	justify-self: end;
	color: var(--fst-thermal);
	font-style: normal;
}

/* Finite entry */
.fst-after-hype__inner,
.fst-composer__intro,
.fst-atlas__header,
.fst-hidden-spec__top,
.fst-observatory__head,
.fst-exit-paths > header {
	opacity: 1;
	transform: none;
	transition:
		opacity 680ms ease,
		transform 780ms var(--fst-ease);
}

.has-fst-motion .fst-after-hype__inner,
.has-fst-motion .fst-composer__intro,
.has-fst-motion .fst-atlas__header,
.has-fst-motion .fst-hidden-spec__top,
.has-fst-motion .fst-observatory__head,
.has-fst-motion .fst-exit-paths > header {
	opacity: 0;
	transform: translate3d(0, 34px, 0);
}

.has-fst-motion .fst-after-hype__inner.is-fst-entered,
.has-fst-motion .fst-composer__intro.is-fst-entered,
.has-fst-motion .fst-atlas__header.is-fst-entered,
.has-fst-motion .fst-hidden-spec__top.is-fst-entered,
.has-fst-motion .fst-observatory__head.is-fst-entered,
.has-fst-motion .fst-exit-paths > header.is-fst-entered {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
	.fst-longview__title {
		width: 45vw;
	}

	.fst-longview__readout {
		width: 36vw;
	}

	.fst-after-hype__inner {
		grid-template-columns: 0.3fr 1.2fr;
	}

	.fst-after-hype h2 {
		grid-column: 2;
	}

	.fst-after-hype__inner > p:last-child {
		grid-column: 2;
	}

	.fst-atlas__map {
		grid-template-rows: repeat(9, minmax(58px, 7vw));
	}

	.fst-exit-paths nav {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 860px) {
	.fst-longview {
		height: auto;
	}

	.has-fst-motion .fst-longview {
		height: 400svh;
	}

	.fst-longview__sticky {
		min-height: 560px;
	}

	.fst-longview__chapter {
		top: 24px;
		right: 22px;
		left: 22px;
	}

	.fst-longview__title {
		top: 78px;
		left: 22px;
		width: calc(100% - 44px);
	}

	.fst-longview__title h1 {
		max-width: none;
		font-size: clamp(44px, 8vw, 64px);
		line-height: 1.06;
	}

	.fst-longview__lead {
		max-width: 26em;
	}

	.fst-timecut {
		top: 49%;
		left: 50%;
		width: min(82vw, 600px);
		transform:
			translate(-50%, -50%)
			rotateX(var(--fst-tilt-x))
			rotateZ(var(--fst-tilt-z))
			scale(var(--fst-object-scale));
	}

	.fst-longview__readout {
		right: 22px;
		bottom: 116px;
		width: min(56vw, 390px);
	}

	.fst-longview__readout > p:nth-of-type(2) {
		display: none;
	}

	.fst-longview__scroll {
		display: none;
	}

	.fst-longview__timeline {
		right: 22px;
		bottom: 24px;
		left: 22px;
	}

	.fst-longview__timeline button {
		min-height: 58px;
		padding: 12px 8px;
	}

	.fst-longview__timeline small {
		display: none;
	}

	.fst-longview__timeline span {
		grid-row: auto;
	}

	.fst-longview__timeline strong {
		font-size: 8px;
	}

	.fst-after-hype__inner,
	.fst-composer__intro,
	.fst-atlas__header,
	.fst-hidden-spec__top,
	.fst-observatory__head,
	.fst-exit-paths > header {
		grid-template-columns: 1fr;
	}

	.fst-after-hype__inner > p:last-child {
		grid-column: 1;
		max-width: 42em;
	}

	.fst-after-hype h2 {
		grid-column: 1;
	}

	.fst-now__story {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.fst-now__media {
		min-height: 62vw;
	}

	.fst-now__copy > p:first-child {
		margin-bottom: 0;
	}

	.fst-now__copy h2 {
		margin-top: 54px;
	}

	.fst-now__copy > strong {
		margin-top: 48px;
	}

	.fst-composer__intro > p:first-child,
	.fst-atlas__header > div > p,
	.fst-hidden-spec__top > p,
	.fst-observatory__head > p:first-child,
	.fst-exit-paths > header p {
		margin-bottom: 24px;
	}

	.fst-composer__intro > p:last-child,
	.fst-atlas__header > p,
	.fst-observatory__head > p:last-child {
		max-width: 40em;
		margin-top: 30px;
	}

	.fst-composer__intro h2 span {
		white-space: normal;
	}

	.fst-composer__bench {
		grid-template-columns: 1fr;
	}

	.fst-composer__inputs {
		border-right: 0;
		border-bottom: 1px solid var(--fst-ink);
	}

	.fst-composer__output {
		grid-template-columns: minmax(230px, 0.75fr) minmax(0, 1.25fr);
		grid-template-rows: 1fr;
	}

	.fst-composer__output header {
		border-right: 1px solid var(--fst-line-dark);
		border-bottom: 0;
	}

	.fst-composer__output header h3 {
		margin-top: 54px;
	}

	.fst-composer__result {
		grid-template-columns: 1fr;
	}

	.fst-composer__result div {
		min-height: 132px;
	}

	.fst-composer__signal {
		display: none;
	}

	.fst-atlas__map {
		grid-template-rows: repeat(11, minmax(64px, 8vw));
	}

	.fst-atlas__field--compute {
		grid-area: 1 / 1 / 5 / 9;
	}

	.fst-atlas__field--vision {
		grid-area: 1 / 9 / 6 / 13;
	}

	.fst-atlas__field--sound {
		grid-area: 5 / 1 / 8 / 9;
	}

	.fst-atlas__field--network {
		grid-area: 6 / 9 / 9 / 13;
	}

	.fst-atlas__field--power {
		grid-area: 8 / 1 / 12 / 13;
	}

	.fst-atlas__field h3 {
		font-size: clamp(24px, 5vw, 42px);
	}

	.fst-atlas__field p {
		display: none;
	}

	.fst-hidden-spec__stage {
		grid-template-columns: 1fr;
	}

	.fst-hidden-spec__number {
		font-size: clamp(100px, 24vw, 190px);
	}

	.fst-hidden-spec__meaning {
		max-width: 620px;
	}

	.fst-lifeline__track li {
		width: 78vw;
		min-width: 78vw;
	}

	.fst-observatory__drawers details > p {
		padding-left: 0;
	}

	.fst-exit-paths nav {
		grid-template-columns: 1fr;
	}

	.fst-exit-paths {
		grid-template-columns: 1fr;
		gap: 56px;
	}
}

@media (max-width: 1024px) {
	.fst-lifeline {
		height: auto;
	}

	.fst-lifeline__sticky {
		position: static;
		top: auto;
		height: auto;
		min-height: 0;
		overflow: visible;
		padding: 64px 4vw 72px;
	}

	.fst-lifeline__sticky > header {
		display: grid;
		gap: 14px;
		padding-bottom: 28px;
	}

	.fst-lifeline__viewport {
		overflow: visible;
	}

	.fst-lifeline__track {
		display: grid;
		width: 100%;
		height: auto;
		transform: none !important;
	}

	.fst-lifeline__track li {
		width: 100%;
		min-width: 0;
		min-height: 280px;
		padding: 44px 4vw;
		border-right: 0;
		border-bottom: 1px solid var(--fst-line-dark);
	}

	.fst-lifeline__progress {
		display: none;
	}
}

@media (max-width: 620px) {
	.fst-longview {
		height: auto;
	}

	.fst-observatory__head h2 span {
		white-space: normal;
	}

	.has-fst-motion .fst-longview {
		height: 330svh;
	}

	.fst-longview__sticky {
		height: calc(100svh - var(--fst-header-h));
		min-height: 520px;
	}

	.fst-longview__sticky::after {
		border-width: 8px;
	}

	.fst-longview__chapter {
		top: 18px;
		right: 18px;
		left: 18px;
		font-size: 7px;
	}

	.fst-longview__title {
		top: 60px;
		left: 20px;
		width: calc(100% - 40px);
	}

	.fst-longview__title > p:first-child {
		margin-bottom: 15px;
		font-size: 8px;
	}

	.fst-longview__title h1 {
		font-size: clamp(40px, 11.5vw, 50px);
		line-height: 1.1;
		white-space: normal;
	}

	.fst-longview__title h1 span,
	.fst-longview__title h1 strong {
		display: inline-block;
	}

	.fst-longview__lead {
		max-width: 20em;
		margin-top: 18px;
		font-size: 11px;
		line-height: 1.65;
	}

	.fst-timecut {
		top: 51%;
		width: 104vw;
		transform:
			translate(-50%, -50%)
			rotateX(65deg)
			rotateZ(-31deg)
			scale(calc(0.7 + var(--fst-progress) * 0.06));
	}

	.fst-timecut__slice {
		border-radius: 12px;
	}

	.fst-longview__readout {
		right: 20px;
		bottom: 92px;
		width: calc(100% - 80px);
		padding: 14px 0 0 18px;
	}

	.fst-longview__readout > p:first-child {
		margin-bottom: 9px;
		font-size: 7px;
	}

	.fst-longview__readout h2 {
		max-width: 15em;
		font-size: clamp(19px, 6vw, 28px);
		line-height: 1.18;
	}

	.fst-longview__readout a {
		margin-top: 12px;
		font-size: 8px;
	}

	.fst-longview__timeline {
		right: 20px;
		bottom: 18px;
		left: 20px;
	}

	.fst-longview__timeline button {
		display: grid;
		place-items: center;
		min-height: 44px;
		padding: 7px 2px;
	}

	.fst-longview__timeline strong {
		display: block;
		font-size: 5px;
		letter-spacing: 0.04em;
	}

	.fst-longview__timeline span {
		font-size: 7px;
	}

	.fst-after-hype__ticker {
		justify-content: flex-start;
		overflow: hidden;
		font-size: 17px;
	}

	.fst-after-hype__inner,
	.fst-now,
	.fst-composer,
	.fst-atlas,
	.fst-hidden-spec,
	.fst-observatory,
	.fst-exit-paths {
		padding-block: 88px;
	}

	.fst-after-hype__inner,
	.fst-now__story {
		width: calc(100% - 40px);
	}

	.fst-composer__intro h2,
	.fst-hidden-spec__top h2,
	.fst-observatory__head h2,
	.fst-exit-paths > header h2 {
		font-size: clamp(36px, 10vw, 46px);
		line-height: 1.12;
		letter-spacing: -0.025em;
	}

	.fst-atlas__header h2 {
		font-size: clamp(32px, 9vw, 38px);
		line-height: 1.14;
	}

	.fst-after-hype h2 {
		font-size: clamp(30px, 9.2vw, 42px);
		line-height: 1.18;
		letter-spacing: -0.02em;
	}

	.fst-after-hype h2 span {
		margin-right: 0.08em;
	}

	.fst-after-hype__lifeline {
		inset: 36px -36% 0;
		opacity: 0.42;
	}

	.has-fst-motion .fst-after-hype__lifeline.is-fst-entered {
		opacity: 0.42;
	}

	.fst-now__media {
		min-height: 118vw;
	}

	.fst-now__typeplate {
		padding: 22px;
	}

	.fst-now__decision-map {
		width: 100%;
	}

	.fst-now__decision-map p {
		grid-template-columns: 30px minmax(86px, 0.7fr) 1fr;
		gap: 10px;
		min-height: 70px;
		padding-inline: 12px;
	}

	.fst-now__decision-map p.is-primary {
		transform: translateX(8px);
	}

	.fst-now__decision-map strong {
		font-size: 22px;
	}

	.fst-now__decision-map small {
		font-size: 10px;
	}

	.fst-now__copy {
		padding: 26px 24px;
	}

	.fst-now__copy h2 {
		margin-top: 44px;
		font-size: 34px;
	}

	.fst-composer,
	.fst-atlas,
	.fst-hidden-spec,
	.fst-observatory,
	.fst-exit-paths {
		padding-inline: 20px;
	}

	.fst-composer__form {
		margin-top: 62px;
	}

	.fst-composer__input-head {
		grid-template-columns: 1fr;
		min-height: 0;
		padding: 18px;
	}

	.fst-composer__input-head > small {
		grid-column: 1;
		grid-row: auto;
		margin-top: 8px;
	}

	.fst-composer__fields {
		grid-template-columns: 1fr;
	}

	.fst-composer__field,
	.fst-composer__field:nth-child(odd),
	.fst-composer__field:nth-last-child(-n + 2) {
		border-right: 0;
		border-bottom: 1px solid var(--fst-line-light);
	}

	.fst-composer__field:last-child {
		border-bottom: 0;
	}

	.fst-composer__field summary {
		min-height: 112px;
		padding: 16px 18px 18px;
	}

	.fst-composer__field summary > strong {
		font-size: 20px;
	}

	.fst-composer__field fieldset {
		padding: 8px;
	}

	.fst-composer__field fieldset label {
		min-height: 52px;
	}

	.fst-composer__output {
		grid-template-columns: 1fr;
	}

	.fst-composer__output header {
		padding: 24px 20px 26px;
		border-right: 0;
		border-bottom: 1px solid var(--fst-line-dark);
	}

	.fst-composer__output header h3 {
		margin: 36px 0 16px;
		font-size: 35px;
	}

	.fst-composer__result div {
		min-height: 132px;
		padding: 22px 20px;
	}

	.fst-composer__action {
		grid-template-columns: 1fr;
		gap: 18px;
		padding-top: 20px;
	}

	.fst-composer__submit {
		width: 100%;
		max-width: none;
	}

	.fst-atlas__map {
		display: block;
		margin-top: 60px;
		border-left: 0;
	}

	.fst-atlas__field {
		min-height: 205px;
		border-left: 1px solid var(--fst-line-dark);
	}

	.fst-atlas__field p {
		display: block;
	}

	.fst-hidden-spec__stage {
		margin-top: 58px;
	}

	.fst-hidden-spec__top {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.fst-hidden-spec__top > p {
		margin-top: 0;
	}

	.fst-hidden-spec__number {
		font-size: clamp(84px, 28vw, 128px);
	}

	.fst-hidden-spec__meaning h3 {
		font-size: clamp(27px, 8vw, 32px);
	}

	.fst-hidden-spec__meaning dl div {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.fst-hidden-spec__choices {
		grid-template-columns: 1fr 1fr;
	}

	.fst-hidden-spec__choices button:nth-child(3) {
		border-left: 1px solid rgba(17, 17, 18, 0.32);
	}

	.fst-lifeline {
		height: auto;
	}

	.fst-lifeline__sticky {
		position: static;
		top: auto;
		height: auto;
		min-height: 0;
		overflow: visible;
		padding: 56px 20px 60px;
	}

	.fst-lifeline__sticky > header {
		display: grid;
		gap: 12px;
		padding-bottom: 24px;
	}

	.fst-lifeline__sticky > header p {
		font-size: 10px;
	}

	.fst-lifeline__sticky > header h2 {
		font-size: clamp(32px, 8.7vw, 38px);
		font-weight: 600;
		line-height: 1.16;
		letter-spacing: -0.018em;
		text-wrap: balance;
		word-break: auto-phrase;
	}

	.fst-lifeline__viewport {
		overflow-x: visible;
		overflow-y: visible;
		overflow: visible;
	}

	.fst-lifeline__track {
		display: grid;
		width: 100%;
		transform: none !important;
	}

	.fst-lifeline__track li {
		width: 100%;
		min-width: 0;
		min-height: 220px;
		padding: 32px 0;
		border-right: 0;
		border-bottom: 1px solid var(--fst-line-dark);
	}

	.fst-lifeline__track span {
		margin-bottom: 16px;
		font-size: 10px;
	}

	.fst-lifeline__track strong {
		font-size: clamp(34px, 9.2vw, 40px);
		line-height: 1.12;
		letter-spacing: -0.018em;
		text-wrap: balance;
		word-break: auto-phrase;
	}

	.fst-lifeline__track p {
		margin-top: 18px;
		line-height: 1.75;
	}

	.fst-lifeline__track a {
		margin-top: 24px;
		font-size: 11px;
	}

	.fst-lifeline__progress {
		display: none;
	}

	.fst-observatory__drawers {
		margin-top: 58px;
	}

	.fst-observatory__drawers summary {
		grid-template-columns: 36px 1fr auto;
		gap: 12px;
		min-height: 92px;
	}

	.fst-observatory__drawers summary strong {
		font-size: 20px;
	}

	.fst-observatory__drawers summary i {
		width: 34px;
		height: 34px;
	}

	.fst-exit-paths nav {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.fst-exit-paths nav a {
		grid-template-columns: 52px 1fr 24px;
		gap: 8px 12px;
		min-height: 0;
		padding: 18px 0;
	}

	.fst-exit-paths nav a > span {
		grid-row: 1 / 3;
	}

	.fst-exit-paths nav a > strong,
	.fst-exit-paths nav a > small {
		grid-column: 2;
	}

	.fst-exit-paths nav a > i {
		grid-column: 3;
		grid-row: 1 / 3;
	}
}

.no-js .fst-lifeline {
	height: auto;
}

.no-js .fst-lifeline__sticky {
	position: static;
	top: auto;
	height: auto;
	overflow: visible;
}

.no-js .fst-lifeline__viewport {
	overflow: visible;
}

.no-js .fst-lifeline__track {
	display: grid;
	width: 100%;
	height: auto;
	transform: none !important;
}

.no-js .fst-lifeline__track li {
	width: 100%;
	min-width: 0;
	min-height: 280px;
	border-right: 0;
	border-bottom: 1px solid var(--fst-line-dark);
}

.no-js .fst-lifeline__progress {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.fst-longview {
		height: auto;
	}

	.fst-longview__sticky {
		position: relative;
		top: auto;
	}

	.fst-longview__title {
		opacity: 1;
		transform: none;
	}

	.fst-timecut {
		transform: translate(-50%, -50%) rotateX(58deg) rotateZ(-28deg) scale(0.82);
	}

	.fst-timecut__wires {
		opacity: 0.7;
	}

	.fst-lifeline {
		height: auto;
	}

	.fst-lifeline__sticky {
		position: static;
		height: auto;
		overflow: visible;
	}

	.fst-lifeline__viewport {
		overflow: visible;
	}

	.fst-lifeline__track {
		display: grid;
		width: 100%;
		height: auto;
		transform: none !important;
	}

	.fst-lifeline__track li {
		width: 100%;
		min-width: 0;
		min-height: 280px;
		border-right: 0;
		border-bottom: 1px solid var(--fst-line-dark);
	}

	.fst-after-hype__inner,
	.fst-after-hype__lifeline,
	.fst-composer__intro,
	.fst-atlas__header,
	.fst-hidden-spec__top,
	.fst-observatory__head,
	.fst-exit-paths > header {
		opacity: 1;
		transform: none;
	}

	.fst-composer__field fieldset {
		animation: none;
	}

	.fst-composer__result div {
		transition: none;
	}

	.fst-composer__signal {
		display: none;
	}
}
