/*
 * Super Slidernator 3000 by Ivy Labs
 * A stable interface plane over a single cinematic world plane.
 */

.ss3k {
	--ss3k-accent: #72c7ff;
	--ss3k-height: 840px;
	--ss3k-progress: 0;
	--ss3k-ease: cubic-bezier(.2,.72,.18,1);
	position: relative;
	width: 100%;
	max-width: 1920px;
	min-width: 0;
	margin: 0 auto;
	color: #f7fbff;
	font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	isolation: isolate;
	overflow: hidden;
	background: #050912;
	color-scheme: dark;
}

.ss3k--full {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.ss3k *,
.ss3k *::before,
.ss3k *::after {
	box-sizing: border-box;
}

.ss3k button,
.ss3k a {
	font: inherit;
}

.ss3k button:focus-visible,
.ss3k a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.ss3k__stage {
	position: relative;
	height: min(var(--ss3k-height), 91svh);
	min-height: 680px;
	overflow: hidden;
	background:
		radial-gradient(circle at 72% 36%, rgba(72, 160, 255, .14), transparent 38%),
		#050912;
}

.ss3k__chapters,
.ss3k__chapter,
.ss3k__media,
.ss3k__media picture,
.ss3k__media img,
.ss3k__video,
.ss3k__shade,
.ss3k__grain {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.ss3k__chapter {
	z-index: 0;
	visibility: hidden;
	overflow: hidden;
	opacity: 0;
	transform: translate3d(0, 0, 0) scale(1);
	filter: none;
	clip-path: inset(0);
	backface-visibility: hidden;
	transform-style: preserve-3d;
	will-change: opacity, transform, clip-path;
	pointer-events: none;
	contain: layout paint style;
}

.ss3k__chapter.is-active,
.ss3k__chapter.is-entering,
.ss3k__chapter.is-leaving {
	visibility: visible;
}

.ss3k__chapter.is-active {
	z-index: 2;
	opacity: 1;
	pointer-events: auto;
}

.ss3k__chapter.is-entering {
	z-index: 4;
	opacity: 1;
}

.ss3k__chapter.is-leaving {
	z-index: 3;
	opacity: 1;
}

.ss3k__media {
	z-index: 0;
	overflow: hidden;
	background: #07101b;
}

.ss3k__media picture {
	display: block;
}

.ss3k__media img,
.ss3k__video {
	object-fit: cover;
	object-position: var(--ss3k-focal, 50% 50%);
	transform: translate3d(0, 0, 0) scale(1.015);
	backface-visibility: hidden;
	will-change: transform;
}

.ss3k__video {
	z-index: 2;
	opacity: 0;
	transition: opacity .7s ease;
}

.ss3k__video.is-ready {
	opacity: 1;
}

.ss3k__chapter.is-active[data-camera="push"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="push"] .ss3k__video {
	animation: ss3k-camera-push 12s linear both;
}

.ss3k__chapter.is-active[data-camera="drift-left"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="drift-left"] .ss3k__video {
	animation: ss3k-camera-left 12s linear both;
}

.ss3k__chapter.is-active[data-camera="pull"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="pull"] .ss3k__video {
	animation: ss3k-camera-pull 12s linear both;
}

.ss3k__chapter.is-active[data-camera="rise"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="rise"] .ss3k__video {
	animation: ss3k-camera-rise 12s linear both;
}

.ss3k__chapter.is-active[data-camera="drift-right"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="drift-right"] .ss3k__video {
	animation: ss3k-camera-right 12s linear both;
}

.ss3k__chapter.is-active[data-camera="dolly"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="dolly"] .ss3k__video {
	animation: ss3k-camera-dolly 12s linear both;
}

.ss3k__chapter.is-active[data-camera="finale"] .ss3k__media img,
.ss3k__chapter.is-active[data-camera="finale"] .ss3k__video {
	animation: ss3k-camera-finale 12s linear both;
}

@keyframes ss3k-camera-push {
	from { transform: translate3d(0, 0, 0) scale(1.012); }
	to { transform: translate3d(-.55%, -.25%, 0) scale(1.035); }
}

@keyframes ss3k-camera-left {
	from { transform: translate3d(.5%, 0, 0) scale(1.027); }
	to { transform: translate3d(-.45%, -.18%, 0) scale(1.035); }
}

@keyframes ss3k-camera-pull {
	from { transform: translate3d(-.25%, -.1%, 0) scale(1.035); }
	to { transform: translate3d(.2%, .1%, 0) scale(1.012); }
}

@keyframes ss3k-camera-rise {
	from { transform: translate3d(0, .48%, 0) scale(1.022); }
	to { transform: translate3d(-.25%, -.42%, 0) scale(1.035); }
}

@keyframes ss3k-camera-right {
	from { transform: translate3d(-.48%, -.12%, 0) scale(1.032); }
	to { transform: translate3d(.42%, .1%, 0) scale(1.035); }
}

@keyframes ss3k-camera-dolly {
	from { transform: translate3d(.2%, 0, 0) scale(1.012); }
	to { transform: translate3d(-.22%, -.1%, 0) scale(1.035); }
}

@keyframes ss3k-camera-finale {
	from { transform: translate3d(.35%, .12%, 0) scale(1.028); }
	to { transform: translate3d(-.2%, -.2%, 0) scale(1.035); }
}

.ss3k__shade {
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(2, 7, 15, .96) 0%, rgba(3, 9, 19, .83) 24%, rgba(3, 9, 19, .44) 43%, rgba(3, 9, 19, .06) 68%),
		linear-gradient(180deg, rgba(2, 7, 13, .28) 0%, transparent 24%, transparent 69%, rgba(2, 6, 12, .78) 100%);
}

.ss3k__grain {
	z-index: 8;
	pointer-events: none;
	opacity: .12;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
	mix-blend-mode: soft-light;
}

.ss3k__content {
	position: absolute;
	z-index: 6;
	top: 49%;
	left: clamp(30px, 6vw, 118px);
	width: min(54vw, 960px);
	transform: translateY(-48%);
	text-shadow: 0 2px 24px rgba(0, 0, 0, .28);
}

.ss3k__eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 28px;
	color: rgba(238, 248, 255, .78);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .2em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(10px);
}

.ss3k__eyebrow::after {
	content: "";
	width: clamp(38px, 5vw, 90px);
	height: 1px;
	margin-left: 3px;
	background: linear-gradient(90deg, var(--ss3k-accent), transparent);
	box-shadow: 0 0 12px rgba(114, 199, 255, .45);
	transform: scaleX(0);
	transform-origin: left center;
}

.ss3k__eyebrow span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border: 1px solid rgba(130, 205, 255, .55);
	border-radius: 50%;
	color: #fff;
	letter-spacing: .05em;
	background: rgba(5, 13, 25, .38);
	backdrop-filter: blur(10px);
}

.ss3k__headline {
	max-width: 940px;
	margin: 0;
	color: #fff;
	font-size: clamp(64px, 5.7vw, 108px);
	font-weight: 650;
	line-height: .91;
	letter-spacing: -.066em;
	text-wrap: balance;
	text-shadow: 0 8px 38px rgba(0, 0, 0, .22);
}

.ss3k__headline > span {
	display: block;
	overflow: hidden;
	padding: 0 .07em .12em 0;
}

.ss3k__headline i {
	display: block;
	font: inherit;
	opacity: .18;
	filter: blur(5px);
	transform: translateY(118%) rotate(1.2deg);
	transform-origin: left bottom;
	will-change: transform;
}

.ss3k__description {
	max-width: 690px;
	margin: 26px 0 0;
	color: rgba(240, 248, 255, .88);
	font-size: clamp(17px, 1.25vw, 22px);
	font-weight: 480;
	line-height: 1.55;
	letter-spacing: -.012em;
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateY(14px);
}

.ss3k__cta {
	display: inline-flex;
	align-items: center;
	gap: 22px;
	min-height: 56px;
	margin-top: 36px;
	padding: 0 7px 0 0;
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: .08em;
	text-decoration: none !important;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, .38);
	opacity: 0;
	transform: translateY(12px);
	transition: border-color .25s ease, color .25s ease;
}

.ss3k__cta i {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	color: #06101b;
	font-style: normal;
	border-radius: 50%;
	background: #fff;
	transition: transform .3s var(--ss3k-ease), background .25s ease;
}

.ss3k__cta i svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ss3k__cta:hover {
	color: var(--ss3k-accent) !important;
	border-color: var(--ss3k-accent);
}

.ss3k__cta:hover i {
	transform: rotate(45deg);
	background: var(--ss3k-accent);
}

.ss3k__chapter.is-visual-active .ss3k__eyebrow {
	animation: ss3k-copy-in .62s .28s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__eyebrow::after {
	animation: ss3k-rule-in .82s .64s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__headline > span:nth-child(1) i {
	animation: ss3k-line-in .86s .34s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__headline > span:nth-child(2) i {
	animation: ss3k-line-in .86s .43s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__headline > span:nth-child(3) i {
	animation: ss3k-line-in .86s .51s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__description {
	animation: ss3k-copy-in .7s .62s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__cta {
	animation: ss3k-copy-in .7s .72s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-leaving .ss3k__content {
	animation: ss3k-copy-out .3s ease forwards;
}

@keyframes ss3k-line-in {
	to {
		opacity: 1;
		filter: blur(0);
		transform: translateY(0) rotate(0);
	}
}

@keyframes ss3k-copy-in {
	to {
		opacity: 1;
		clip-path: inset(0 0 0 0);
		transform: translateY(0);
	}
}

@keyframes ss3k-rule-in {
	to { transform: scaleX(1); }
}

@keyframes ss3k-copy-out {
	to { opacity: 0; transform: translateY(-51%); }
}

.ss3k__proof {
	position: absolute;
	z-index: 5;
	top: 50%;
	right: clamp(28px, 5vw, 102px);
	width: min(29vw, 500px);
	transform: translate3d(30px, -46%, 0) perspective(1300px) rotateY(-4deg);
	transform-origin: right center;
	opacity: 0;
	pointer-events: none;
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .32));
}

.ss3k__proof::after {
	content: "";
	position: absolute;
	inset: -8% -18%;
	z-index: 4;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(112deg, transparent 36%, rgba(190, 229, 255, .19) 49%, transparent 62%);
	transform: translateX(-75%);
}

.ss3k__chapter.is-visual-active .ss3k__proof {
	animation: ss3k-proof-in .95s .74s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__proof::after {
	animation: ss3k-proof-glint 1.15s 1.12s var(--ss3k-ease) both;
}

.ss3k__chapter.is-leaving .ss3k__proof {
	animation: ss3k-proof-out .28s ease forwards;
}

@keyframes ss3k-proof-in {
	to { opacity: 1; transform: translate3d(0, -46%, 0) perspective(1300px) rotateY(-2deg); }
}

@keyframes ss3k-proof-out {
	to { opacity: 0; transform: translate3d(20px, -46%, 0) perspective(1300px) rotateY(-2deg); }
}

@keyframes ss3k-proof-glint {
	0% { opacity: 0; transform: translateX(-75%); }
	25% { opacity: .32; }
	100% { opacity: 0; transform: translateX(75%); }
}

.ss3k-proof-card,
.ss3k-browser,
.ss3k-console,
.ss3k-search,
.ss3k-shop,
.ss3k-shield,
.ss3k-studio {
	color: #ecf8ff;
	border: 1px solid rgba(154, 214, 255, .24);
	border-radius: 3px;
	background:
		linear-gradient(140deg, rgba(14, 29, 46, .88), rgba(5, 13, 24, .74)),
		rgba(4, 10, 19, .72);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .08),
		0 28px 80px rgba(0, 0, 0, .36);
	backdrop-filter: blur(18px) saturate(130%);
}

.ss3k-proof-card--signal {
	padding: 28px;
}

.ss3k-proof-kicker,
.ss3k-studio > small {
	display: block;
	margin-bottom: 17px;
	color: rgba(213, 237, 255, .54);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .18em;
}

.ss3k-proof-card--signal > strong {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: clamp(16px, 1.3vw, 22px);
	font-weight: 500;
	letter-spacing: -.02em;
}

.ss3k-proof-card--signal > strong i {
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--ss3k-accent);
	box-shadow: 0 0 12px var(--ss3k-accent);
}

.ss3k-proof-card--signal > div {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto;
	align-items: center;
	gap: 9px;
	margin-top: 26px;
	color: rgba(229, 244, 255, .74);
	font-size: 9px;
	letter-spacing: .14em;
}

.ss3k-proof-card--signal > div span {
	height: 1px;
	background: linear-gradient(90deg, var(--ss3k-accent), rgba(114, 199, 255, .1));
}

.ss3k-browser {
	overflow: hidden;
	background: rgba(7, 14, 24, .9);
}

.ss3k-browser__bar {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 38px;
	padding: 0 14px;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.ss3k-browser__bar i {
	width: 6px;
	height: 6px;
	border: 1px solid rgba(255, 255, 255, .4);
	border-radius: 50%;
}

.ss3k-browser__bar span {
	margin-left: auto;
	color: rgba(255, 255, 255, .38);
	font-size: 8px;
	font-weight: 700;
	letter-spacing: .15em;
}

.ss3k-browser__nav {
	display: flex;
	justify-content: space-between;
	padding: 18px 22px;
	font-size: 8px;
	letter-spacing: .1em;
}

.ss3k-browser__nav span {
	color: rgba(255, 255, 255, .44);
}

.ss3k-browser__hero {
	padding: 26px 22px 32px;
	background:
		radial-gradient(circle at 90% 12%, rgba(83, 184, 255, .22), transparent 39%),
		linear-gradient(145deg, #0e2234, #08111e);
}

.ss3k-browser__hero small {
	color: var(--ss3k-accent);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .18em;
}

.ss3k-browser__hero strong {
	display: block;
	max-width: 330px;
	margin: 13px 0 22px;
	font-size: clamp(26px, 2.5vw, 42px);
	font-weight: 500;
	line-height: .96;
	letter-spacing: -.045em;
}

.ss3k-browser__hero i {
	display: inline-block;
	padding-bottom: 4px;
	color: rgba(255, 255, 255, .8);
	font-size: 9px;
	font-style: normal;
	border-bottom: 1px solid rgba(255, 255, 255, .34);
}

.ss3k-browser__tiles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: rgba(255, 255, 255, .09);
}

.ss3k-browser__tiles span {
	height: 55px;
	background:
		linear-gradient(140deg, rgba(118, 204, 255, .17), transparent),
		#0b1623;
}

.ss3k-console {
	padding: 22px;
}

.ss3k-console__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 17px;
	color: rgba(225, 241, 253, .45);
	font-size: 8px;
	font-weight: 800;
	letter-spacing: .15em;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ss3k-console__top b {
	color: #9fe8c1;
	font-size: 7px;
}

.ss3k-console__top b i {
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: 6px;
	border-radius: 50%;
	background: #75e6ad;
	box-shadow: 0 0 12px #75e6ad;
}

.ss3k__chapter.is-active .ss3k-console__top b i,
.ss3k__chapter.is-active .ss3k-shield__ring i {
	animation: ss3k-status-pulse 1.5s 1.3s ease-in-out 2;
}

.ss3k-console__score {
	display: flex;
	align-items: end;
	gap: 17px;
	padding: 25px 0;
}

.ss3k-console__score strong {
	font-size: clamp(42px, 4vw, 67px);
	font-weight: 350;
	line-height: .85;
	letter-spacing: -.06em;
}

.ss3k-console__score span {
	color: rgba(230, 244, 255, .48);
	font-size: 8px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: .12em;
}

.ss3k-console__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.ss3k-console__grid span {
	padding: 13px;
	color: rgba(229, 242, 252, .54);
	font-size: 8px;
	line-height: 1.4;
	background: rgba(255, 255, 255, .045);
}

.ss3k-console__grid b {
	display: block;
	margin-bottom: 6px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
}

.ss3k-search {
	padding: 15px;
}

.ss3k-search__query {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 13px;
	color: rgba(236, 247, 255, .72);
	font-size: 9px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 30px;
	background: rgba(255, 255, 255, .05);
}

.ss3k-search__query i {
	width: 9px;
	height: 9px;
	border: 1px solid var(--ss3k-accent);
	border-radius: 50%;
}

.ss3k-search__result {
	position: relative;
	margin-top: 12px;
	padding: 20px;
	background: rgba(255, 255, 255, .055);
}

.ss3k-search__result small {
	color: var(--ss3k-accent);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .16em;
}

.ss3k-search__result strong {
	display: block;
	margin: 7px 0 4px;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: -.035em;
}

.ss3k-search__result p {
	margin: 0;
	color: rgba(232, 244, 253, .6);
	font-size: 9px;
}

.ss3k-search__result div {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 17px;
}

.ss3k-search__result div span {
	padding: 6px 8px;
	color: rgba(237, 247, 255, .66);
	font-size: 7px;
	border: 1px solid rgba(255, 255, 255, .12);
}

.ss3k-search__gain {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 12px;
	padding: 12px 15px;
	background: linear-gradient(90deg, rgba(91, 194, 255, .16), transparent);
}

.ss3k-search__gain b {
	color: var(--ss3k-accent);
	font-size: 22px;
	font-weight: 500;
}

.ss3k-search__gain span {
	color: rgba(235, 246, 255, .5);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .14em;
}

.ss3k-shop {
	padding: 17px;
}

.ss3k-shop__product {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 16px;
	align-items: center;
}

.ss3k-shop__image {
	height: 86px;
	background:
		linear-gradient(140deg, transparent 42%, rgba(255, 255, 255, .16)),
		linear-gradient(135deg, #d3ad73, #433425);
	box-shadow: inset 0 0 0 14px rgba(7, 13, 21, .35);
}

.ss3k-shop__product small,
.ss3k-shop__total span {
	color: var(--ss3k-accent);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .16em;
}

.ss3k-shop__product strong {
	display: block;
	margin: 5px 0 1px;
	font-size: 21px;
	font-weight: 500;
}

.ss3k-shop__product p {
	margin: 0;
	color: #99e1b8;
	font-size: 9px;
}

.ss3k-shop__flow {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto;
	align-items: center;
	gap: 8px;
	margin: 21px 0;
	color: rgba(235, 246, 255, .46);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .1em;
}

.ss3k-shop__flow i {
	height: 1px;
	background: linear-gradient(90deg, var(--ss3k-accent), transparent);
	transform: scaleX(0);
	transform-origin: left center;
}

.ss3k__chapter.is-active .ss3k-shop__flow i {
	animation: ss3k-flow-in .85s 1.35s var(--ss3k-ease) forwards;
}

.ss3k-shop__total {
	display: flex;
	justify-content: space-between;
	align-items: end;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, .09);
}

.ss3k-shop__total b {
	font-size: 34px;
	font-weight: 350;
	letter-spacing: -.05em;
}

.ss3k-shield {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 18px;
	align-items: center;
	padding: 20px;
}

.ss3k-shield__ring {
	position: relative;
	display: grid;
	width: 80px;
	height: 80px;
	place-items: center;
	border: 1px solid rgba(114, 199, 255, .34);
	border-radius: 50%;
}

.ss3k-shield__ring::before,
.ss3k-shield__ring::after {
	content: "";
	position: absolute;
	inset: 8px;
	border: 1px solid rgba(114, 199, 255, .18);
	border-radius: inherit;
}

.ss3k-shield__ring::after {
	inset: -4px;
	border-top-color: var(--ss3k-accent);
	transform: rotate(42deg);
}

.ss3k__chapter.is-active .ss3k-shield__ring::after {
	animation: ss3k-ring-check 1.2s 1.05s var(--ss3k-ease) both;
}

.ss3k-shield__ring i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #82edba;
	box-shadow: 0 0 16px #82edba;
}

.ss3k-shield__ring strong {
	position: absolute;
	bottom: 17px;
	font-size: 7px;
	letter-spacing: .14em;
}

.ss3k-shield__copy small {
	color: rgba(232, 245, 255, .48);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .15em;
}

.ss3k-shield__copy strong {
	display: block;
	margin-top: 6px;
	font-size: 21px;
	font-weight: 500;
	letter-spacing: -.03em;
}

.ss3k-shield ul {
	grid-column: 1 / -1;
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid rgba(255, 255, 255, .09);
}

.ss3k-shield li {
	display: flex;
	justify-content: space-between;
	padding: 9px 0;
	color: rgba(234, 245, 253, .56);
	font-size: 8px;
	border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.ss3k-shield li b {
	color: #a1e8c3;
	font-weight: 700;
}

.ss3k-studio {
	padding: 25px;
}

.ss3k-studio > strong {
	display: block;
	font-size: clamp(30px, 3.2vw, 53px);
	font-weight: 750;
	line-height: .85;
	letter-spacing: -.055em;
}

.ss3k-studio > strong em {
	color: var(--ss3k-accent);
	font-style: normal;
	font-weight: 330;
}

.ss3k-studio > div {
	display: grid;
	grid-template-columns: auto 1fr auto 1fr auto;
	align-items: center;
	gap: 8px;
	margin-top: 25px;
	color: rgba(235, 247, 255, .46);
	font-size: 7px;
	font-weight: 800;
	letter-spacing: .15em;
}

.ss3k-studio > div i {
	height: 1px;
	background: linear-gradient(90deg, var(--ss3k-accent), transparent);
}

@keyframes ss3k-status-pulse {
	50% {
		transform: scale(1.45);
		box-shadow: 0 0 22px #82edba;
	}
}

@keyframes ss3k-flow-in {
	to { transform: scaleX(1); }
}

@keyframes ss3k-ring-check {
	from { transform: rotate(-28deg); opacity: .25; }
	to { transform: rotate(42deg); opacity: 1; }
}

.ss3k__chrome {
	position: absolute;
	z-index: 12;
	inset: 0;
	pointer-events: none;
}

.ss3k__chrome button {
	pointer-events: auto;
}

.ss3k__city {
	position: absolute;
	top: 32px;
	right: clamp(26px, 3.8vw, 74px);
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(235, 247, 255, .58);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: .15em;
	text-transform: uppercase;
}

.ss3k__city i {
	width: 36px;
	height: 1px;
	background: linear-gradient(90deg, rgba(114, 199, 255, .85), transparent);
}

.ss3k__city span:last-child {
	color: rgba(235, 247, 255, .3);
}

.ss3k__rail {
	position: absolute;
	right: clamp(25px, 3.8vw, 74px);
	bottom: 108px;
	left: clamp(25px, 3.8vw, 74px);
	display: grid;
	grid-template-columns: repeat(var(--ss3k-count, 7), minmax(0, 1fr));
	gap: 0;
}

.ss3k__rail-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	height: 46px;
	padding: 0 14px 0 0;
	color: rgba(236, 246, 253, .4);
	text-align: left;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, .17);
	background: transparent;
	cursor: pointer;
	transition: color .28s ease, border-color .28s ease;
}

.ss3k__rail-item::before {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--ss3k-accent);
	box-shadow: 0 0 10px rgba(114, 199, 255, .5);
	transition: width .55s var(--ss3k-ease);
}

.ss3k__rail-item:hover,
.ss3k__rail-item.is-active {
	color: rgba(247, 252, 255, .92);
	border-top-color: rgba(255, 255, 255, .28);
}

.ss3k__rail-item.is-active::before {
	width: 38%;
}

.ss3k__rail-number {
	font-size: 9px;
	font-weight: 900;
	letter-spacing: .1em;
}

.ss3k__rail-label {
	overflow: hidden;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: .1em;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ss3k__transport {
	position: absolute;
	right: clamp(25px, 3.8vw, 74px);
	bottom: 28px;
	display: flex;
	align-items: center;
	gap: 4px;
	min-height: 54px;
	padding: 5px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 30px;
	background: linear-gradient(145deg, rgba(14, 28, 43, .7), rgba(3, 9, 17, .56));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, .08),
		0 16px 42px rgba(0, 0, 0, .2);
	backdrop-filter: blur(18px) saturate(135%);
}

.ss3k__icon-button,
.ss3k__pause {
	display: inline-grid;
	height: 44px;
	place-items: center;
	color: rgba(245, 251, 255, .8);
	border: 0;
	background: transparent;
	cursor: pointer;
	transition: color .25s ease, background .25s ease, transform .25s var(--ss3k-ease);
}

.ss3k__icon-button {
	width: 44px;
	border-radius: 50%;
}

.ss3k__icon-button svg,
.ss3k__pause svg {
	width: 20px;
	height: 20px;
	overflow: visible;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.ss3k__pause {
	grid-auto-flow: column;
	gap: 10px;
	min-width: 112px;
	padding: 0 15px 0 8px;
	border-radius: 24px;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ss3k__icon-button:hover,
.ss3k__pause:hover {
	color: #fff;
	background: rgba(114, 199, 255, .12);
	transform: translateY(-1px);
}

.ss3k__pause-glyph {
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(140, 211, 255, .34);
	border-radius: 50%;
	background: rgba(114, 199, 255, .1);
	box-shadow: inset 0 0 18px rgba(114, 199, 255, .07);
}

.ss3k__pause-glyph svg {
	grid-area: 1 / 1;
	width: 17px;
	height: 17px;
	transition: opacity .2s ease, transform .25s var(--ss3k-ease);
}

.ss3k__glyph-play {
	opacity: 0;
	transform: scale(.72);
}

.ss3k.is-paused .ss3k__glyph-pause {
	opacity: 0;
	transform: scale(.72);
}

.ss3k.is-paused .ss3k__glyph-play {
	opacity: 1;
	transform: scale(1);
}

.ss3k__pause:disabled {
	color: rgba(236, 246, 253, .36);
	cursor: not-allowed;
}

.ss3k__pause:disabled:hover {
	background: transparent;
	transform: none;
}

.ss3k__counter {
	min-width: 68px;
	margin: 0 8px 0 10px;
	color: rgba(242, 249, 254, .48);
	font-size: 10px;
	letter-spacing: .14em;
}

.ss3k__counter b {
	color: #fff;
	font-size: 16px;
	font-weight: 650;
}

.ss3k__progress {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: rgba(255, 255, 255, .12);
}

.ss3k__progress i {
	display: block;
	width: calc(var(--ss3k-progress) * 100%);
	height: 100%;
	background: linear-gradient(90deg, var(--ss3k-accent), #fff);
	box-shadow: 0 0 13px var(--ss3k-accent);
}

.ss3k__transition-line {
	position: absolute;
	z-index: 9;
	top: 0;
	bottom: 0;
	left: -12%;
	width: 12%;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(90deg, transparent, rgba(196, 230, 255, .22), transparent);
	mix-blend-mode: screen;
	transform: skewX(-7deg);
}

.ss3k__transition-line.is-running {
	animation: ss3k-transition-line 1.25s var(--ss3k-ease) both;
}

@keyframes ss3k-transition-line {
	0% { left: -12%; opacity: 0; }
	18% { opacity: .72; }
	100% { left: 105%; opacity: 0; }
}

/* v1.2.0 — continuous camera hand-off and scene-specific unfolding motion. */
.ss3k__ambient,
.ss3k__folds {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.ss3k__ambient {
	z-index: 1;
	overflow: hidden;
	mix-blend-mode: screen;
	opacity: .64;
}

.ss3k__shade { z-index: 2; }

.ss3k__ambient i {
	position: absolute;
	width: 48vw;
	aspect-ratio: 1;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(93, 185, 255, .18), rgba(41, 126, 255, .06) 42%, transparent 72%);
	filter: blur(18px);
	transform: translate3d(0,0,0) scale(.88);
	opacity: 0;
}

.ss3k__ambient i:nth-child(1) { top: -26%; right: 2%; }
.ss3k__ambient i:nth-child(2) { right: 28%; bottom: -48%; width: 62vw; }
.ss3k__ambient i:nth-child(3) { top: 16%; left: -30%; width: 44vw; }

.ss3k__chapter.is-visual-active .ss3k__ambient i:nth-child(1) { animation: ss3k-ambient-one var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active .ss3k__ambient i:nth-child(2) { animation: ss3k-ambient-two var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active .ss3k__ambient i:nth-child(3) { animation: ss3k-ambient-three var(--ss3k-motion-duration, 10800ms) linear both; }

.ss3k__chapter[data-energy="electric"] .ss3k__ambient { opacity: .88; }
.ss3k__chapter[data-energy="electric"] .ss3k__ambient i { background: radial-gradient(circle, rgba(78, 151, 255, .26), rgba(76, 80, 255, .08) 46%, transparent 72%); }
.ss3k__chapter[data-energy="discovery"] .ss3k__ambient i { background: radial-gradient(circle, rgba(73, 214, 255, .22), rgba(22, 131, 207, .07) 46%, transparent 72%); }
.ss3k__chapter[data-energy="momentum"] .ss3k__ambient i { background: radial-gradient(circle, rgba(75, 195, 255, .19), rgba(41, 108, 255, .06) 46%, transparent 72%); }
.ss3k__chapter[data-energy="fortified"] .ss3k__ambient { opacity: .42; }
.ss3k__chapter[data-energy="finale"] .ss3k__ambient { opacity: .9; }

@keyframes ss3k-ambient-one {
	0% { opacity: 0; transform: translate3d(5%,2%,0) scale(.82); }
	16% { opacity: .72; }
	100% { opacity: .32; transform: translate3d(-8%,6%,0) scale(1.12); }
}
@keyframes ss3k-ambient-two {
	0% { opacity: .08; transform: translate3d(-4%,8%,0) scale(.9); }
	42% { opacity: .48; }
	100% { opacity: .2; transform: translate3d(7%,-4%,0) scale(1.08); }
}
@keyframes ss3k-ambient-three {
	0% { opacity: 0; transform: translate3d(-6%,0,0) scale(.84); }
	30% { opacity: .4; }
	100% { opacity: .14; transform: translate3d(10%,-6%,0) scale(1.16); }
}

.ss3k__folds {
	z-index: 4;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	perspective: 1500px;
	overflow: hidden;
}

.ss3k__folds i {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(120deg, rgba(8, 22, 40, .96), rgba(25, 86, 145, .42) 45%, rgba(5, 14, 25, .96));
	box-shadow: inset -1px 0 rgba(153, 219, 255, .16), inset 0 0 50px rgba(84, 175, 255, .08);
	transform: scaleX(1) rotateY(0deg);
	transform-origin: right center;
}

.ss3k__chapter.is-visual-active .ss3k__folds i { animation: ss3k-fold-open 1.22s var(--ss3k-ease) forwards; }
.ss3k__chapter.is-visual-active .ss3k__folds i:nth-child(1) { animation-delay: .02s; }
.ss3k__chapter.is-visual-active .ss3k__folds i:nth-child(2) { animation-delay: .08s; }
.ss3k__chapter.is-visual-active .ss3k__folds i:nth-child(3) { animation-delay: .14s; }
.ss3k__chapter.is-visual-active .ss3k__folds i:nth-child(4) { animation-delay: .20s; }
.ss3k__chapter[data-transition="map"] .ss3k__folds i:nth-child(odd),
.ss3k__chapter[data-transition="leaf"] .ss3k__folds i:nth-child(odd) { transform-origin: left center; }
.ss3k__chapter[data-transition="iris"] .ss3k__folds { clip-path: circle(78% at 72% 50%); }

@keyframes ss3k-fold-open {
	0% { opacity: 1; transform: scaleX(1) rotateY(0deg); filter: brightness(.75); }
	58% { opacity: .92; }
	100% { opacity: 0; transform: scaleX(.018) rotateY(-74deg); filter: brightness(1); }
}

/* Keep the camera animation alive through entering -> active. This removes the end-of-transition snap. */
.ss3k__chapter.is-visual-active[data-camera="push"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="push"] .ss3k__video { animation: ss3k-camera-push var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="drift-left"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="drift-left"] .ss3k__video { animation: ss3k-camera-left var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="pull"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="pull"] .ss3k__video { animation: ss3k-camera-pull var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="rise"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="rise"] .ss3k__video { animation: ss3k-camera-rise var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="drift-right"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="drift-right"] .ss3k__video { animation: ss3k-camera-right var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="dolly"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="dolly"] .ss3k__video { animation: ss3k-camera-dolly var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="finale"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="finale"] .ss3k__video { animation: ss3k-camera-finale var(--ss3k-motion-duration, 10800ms) linear both; }
.ss3k__chapter.is-visual-active[data-camera="still"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="still"] .ss3k__video { animation: none; transform: translate3d(0,0,0) scale(1.02); }

.ss3k__content {
	top: var(--ss3k-content-y, 43%);
	width: min(59vw, 1040px);
	transform: translateY(-43%);
}

.ss3k__headline {
	font-size: clamp(var(--ss3k-headline-min, 72px), var(--ss3k-headline-fluid, 6.35vw), var(--ss3k-headline-max, 121px));
	font-weight: 690;
	line-height: .88;
}

.ss3k__description {
	max-width: 760px;
	font-size: clamp(18px, 1.35vw, 24px);
}

/* Each scene has its own copy choreography. */
.ss3k__chapter[data-copy-animation="editorial-fold"] .ss3k__headline i { transform: perspective(1000px) translateY(86%) rotateX(-74deg); transform-origin: left bottom; }
.ss3k__chapter[data-copy-animation="editorial-fold"].is-visual-active .ss3k__headline i { animation-name: ss3k-line-fold !important; }

.ss3k__chapter[data-copy-animation="stack-reveal"] .ss3k__headline i { transform: translate3d(-48px, 54%, 0); clip-path: inset(0 100% 0 0); }
.ss3k__chapter[data-copy-animation="stack-reveal"].is-visual-active .ss3k__headline i { animation-name: ss3k-line-stack !important; }

.ss3k__chapter[data-copy-animation="scan-reveal"] .ss3k__headline i { transform: translate3d(0, 26px, 0); clip-path: inset(0 100% 0 0); filter: blur(1px); }
.ss3k__chapter[data-copy-animation="scan-reveal"].is-visual-active .ss3k__headline i { animation-name: ss3k-line-scan !important; }

.ss3k__chapter[data-copy-animation="card-fan"] .ss3k__headline > span:nth-child(1) i { transform: perspective(900px) translate3d(-40px, 70%, 0) rotateY(16deg) rotateZ(-1deg); }
.ss3k__chapter[data-copy-animation="card-fan"] .ss3k__headline > span:nth-child(2) i { transform: perspective(900px) translate3d(28px, 70%, 0) rotateY(-14deg) rotateZ(1deg); }
.ss3k__chapter[data-copy-animation="card-fan"].is-visual-active .ss3k__headline i { animation-name: ss3k-line-card !important; }

.ss3k__chapter[data-copy-animation="shield-lock"] .ss3k__headline i { transform: scale(.78) translateY(24%); letter-spacing: .025em; filter: blur(10px); }
.ss3k__chapter[data-copy-animation="shield-lock"].is-visual-active .ss3k__headline i { animation-name: ss3k-line-lock !important; }

.ss3k__chapter[data-copy-animation="finale-bloom"] .ss3k__headline i { transform: scale(.68) translate3d(-3%, 18%, 0); filter: blur(18px); }
.ss3k__chapter[data-copy-animation="finale-bloom"].is-visual-active .ss3k__headline i { animation-name: ss3k-line-bloom !important; }

@keyframes ss3k-line-fold { to { opacity: 1; filter: blur(0); transform: perspective(1000px) translateY(0) rotateX(0); } }
@keyframes ss3k-line-stack { to { opacity: 1; filter: blur(0); clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); } }
@keyframes ss3k-line-scan { to { opacity: 1; filter: blur(0); clip-path: inset(0 0 0 0); transform: translate3d(0,0,0); } }
@keyframes ss3k-line-card { to { opacity: 1; filter: blur(0); transform: perspective(900px) translate3d(0,0,0) rotateY(0) rotateZ(0); } }
@keyframes ss3k-line-lock { to { opacity: 1; filter: blur(0); letter-spacing: inherit; transform: scale(1) translateY(0); } }
@keyframes ss3k-line-bloom { to { opacity: 1; filter: blur(0); transform: scale(1) translate3d(0,0,0); } }

/* Proof interfaces unfold instead of merely fading in. */
.ss3k__chapter[data-proof-animation="browser-unfold"].is-visual-active .ss3k__proof { animation-name: ss3k-proof-browser; }
.ss3k__chapter[data-proof-animation="system-assemble"].is-visual-active .ss3k__proof { animation-name: ss3k-proof-system; }
.ss3k__chapter[data-proof-animation="map-draw"].is-visual-active .ss3k__proof { animation-name: ss3k-proof-map; }
.ss3k__chapter[data-proof-animation="commerce-flow"].is-visual-active .ss3k__proof { animation-name: ss3k-proof-commerce; }
.ss3k__chapter[data-proof-animation="shield-pulse"].is-visual-active .ss3k__proof { animation-name: ss3k-proof-shield; }
.ss3k__chapter[data-proof-animation="studio-build"].is-visual-active .ss3k__proof { animation-name: ss3k-proof-studio; }

@keyframes ss3k-proof-browser {
	0% { opacity: 0; clip-path: polygon(0 0, 9% 0, 0 100%, 0 100%); transform: translate3d(70px,-46%,0) perspective(1300px) rotateY(-22deg) scale(.92); }
	64% { opacity: 1; clip-path: polygon(0 0,100% 0,92% 100%,0 100%); }
	100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg) scale(1); }
}
@keyframes ss3k-proof-system {
	0% { opacity: 0; transform: translate3d(24px,-38%,0) perspective(1300px) rotateX(14deg) scale(.9); filter: blur(8px); }
	100% { opacity: 1; transform: translate3d(0,-46%,0) perspective(1300px) rotateX(0) scale(1); filter: blur(0); }
}
@keyframes ss3k-proof-map {
	0% { opacity: 0; clip-path: inset(0 100% 0 0); transform: translate3d(10px,-46%,0) perspective(1300px) rotateY(-2deg); }
	100% { opacity: 1; clip-path: inset(0 0 0 0); transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg); }
}
@keyframes ss3k-proof-commerce {
	0% { opacity: 0; transform: translate3d(70px,-42%,0) perspective(1300px) rotateY(-16deg) rotateZ(2deg) scale(.86); }
	100% { opacity: 1; transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg) rotateZ(0) scale(1); }
}
@keyframes ss3k-proof-shield {
	0% { opacity: 0; transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg) scale(.64); filter: blur(12px) brightness(1.5); }
	68% { opacity: 1; transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg) scale(1.035); }
	100% { opacity: 1; transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg) scale(1); filter: blur(0) brightness(1); }
}
@keyframes ss3k-proof-studio {
	0% { opacity: 0; clip-path: inset(48% 48% 48% 48% round 50%); transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-8deg) scale(.8); }
	100% { opacity: 1; clip-path: inset(0 0 0 0 round 0); transform: translate3d(0,-46%,0) perspective(1300px) rotateY(-2deg) scale(1); }
}

.ss3k__chapter.is-visual-active[data-proof-animation="browser-unfold"] .ss3k-browser__bar,
.ss3k__chapter.is-visual-active[data-proof-animation="system-assemble"] .ss3k-console__grid > *,
.ss3k__chapter.is-visual-active[data-proof-animation="commerce-flow"] .ss3k-shop__product,
.ss3k__chapter.is-visual-active[data-proof-animation="studio-build"] .ss3k-studio > * {
	animation: ss3k-proof-child .72s .98s var(--ss3k-ease) both;
}

@keyframes ss3k-proof-child {
	from { opacity: 0; transform: translateY(14px) scale(.96); filter: blur(5px); }
	to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}


@media (max-width: 1180px) {
	.ss3k__content {
		width: min(56vw, 720px);
	}

	.ss3k__headline {
		font-size: clamp(58px, 6.2vw, 82px);
	}

	.ss3k__proof {
		right: 3.5vw;
		width: min(31vw, 410px);
	}

	.ss3k__rail-label {
		display: none;
	}
}

@media (max-height: 820px) and (min-width: 861px) {
	.ss3k__content {
		top: 45.5%;
	}
}

@media (max-width: 860px) {
	.ss3k__stage {
		height: min(var(--ss3k-height), 90svh);
		min-height: 700px;
	}

	.ss3k__content {
		top: auto;
		right: 28px;
		bottom: 164px;
		left: 28px;
		width: auto;
		transform: none;
	}

	.ss3k__headline {
		max-width: 720px;
		font-size: clamp(50px, 8.6vw, 76px);
	}

	.ss3k__description {
		max-width: 570px;
	}

	.ss3k__proof {
		top: 22%;
		right: 22px;
		width: min(43vw, 370px);
		transform: translate3d(20px, -50%, 0) perspective(1000px) rotateY(-2deg);
	}

	@keyframes ss3k-proof-in {
		to { opacity: .82; transform: translate3d(0, -50%, 0) perspective(1000px) rotateY(-2deg); }
	}

	@keyframes ss3k-proof-out {
		to { opacity: 0; transform: translate3d(18px, -50%, 0) perspective(1000px) rotateY(-2deg); }
	}

	.ss3k__shade {
		background:
			linear-gradient(0deg, rgba(2, 7, 15, .98) 0%, rgba(2, 7, 15, .87) 33%, rgba(2, 7, 15, .2) 67%, rgba(2, 7, 15, .35) 100%),
			linear-gradient(90deg, rgba(2, 7, 15, .38), transparent 70%);
	}

	.ss3k__rail {
		bottom: 97px;
	}

	.ss3k__transport {
		bottom: 23px;
	}
}

@media (max-width: 700px) {
	.ss3k,
	.ss3k--full {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.ss3k__stage {
		height: min(900px, 92svh);
		min-height: 720px;
	}

	.ss3k__media img,
	.ss3k__video {
		object-position: 50% 36%;
	}

	.ss3k__shade {
		background:
			linear-gradient(0deg, rgba(2, 6, 13, .99) 0%, rgba(2, 7, 15, .94) 35%, rgba(2, 7, 15, .44) 58%, rgba(2, 7, 15, .1) 78%, rgba(2, 7, 15, .3) 100%);
	}

	.ss3k__city {
		top: 22px;
		right: 19px;
		font-size: 8px;
	}

	.ss3k__city i {
		width: 18px;
	}

	.ss3k__content {
		right: 22px;
		bottom: 132px;
		left: 22px;
	}

	.ss3k__eyebrow {
		gap: 10px;
		margin-bottom: 16px;
		font-size: 9px;
		letter-spacing: .16em;
	}

	.ss3k__eyebrow span {
		width: 30px;
		height: 30px;
	}

	.ss3k__headline {
		font-size: clamp(39px, 10.8vw, 58px);
		font-weight: 680;
		line-height: .95;
		letter-spacing: -.058em;
	}

	.ss3k__description {
		display: -webkit-box;
		margin-top: 13px;
		overflow: hidden;
		font-size: 15px;
		line-height: 1.5;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.ss3k__cta {
		min-height: 42px;
		margin-top: 17px;
		font-size: 9px;
	}

	.ss3k__cta i {
		width: 31px;
		height: 31px;
	}

	.ss3k__proof {
		display: none;
	}

	.ss3k__rail {
		right: 20px;
		bottom: 77px;
		left: 20px;
		gap: 8px;
	}

	.ss3k__rail-item {
		display: block;
		width: auto;
		height: 24px;
		padding: 0;
		border-top-color: rgba(255, 255, 255, .2);
	}

	.ss3k__rail-number,
	.ss3k__rail-label {
		display: none;
	}

	.ss3k__rail-item.is-active::before {
		width: 100%;
	}

	.ss3k__transport {
		right: 17px;
		bottom: 18px;
		gap: 2px;
		min-height: 48px;
		padding: 3px;
	}

	.ss3k__icon-button {
		width: 38px;
		height: 38px;
	}

	.ss3k__pause {
		width: 40px;
		min-width: 40px;
		height: 40px;
		padding: 0;
	}

	.ss3k__pause-glyph {
		width: 34px;
		height: 34px;
	}

	.ss3k__pause [data-ss3k-pause-label] {
		display: none;
	}

	.ss3k__counter {
		min-width: 49px;
		margin: 0 5px 0 4px;
	}
}

@media (max-width: 420px) {
	.ss3k__stage {
		min-height: 680px;
	}

	.ss3k__content {
		bottom: 126px;
	}

	.ss3k__description {
		-webkit-line-clamp: 2;
	}

}

@media (prefers-reduced-motion: reduce) {
	.ss3k *,
	.ss3k *::before,
	.ss3k *::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}

	.ss3k__media img,
	.ss3k__video {
		transform: none !important;
	}

	.ss3k__video {
		display: none !important;
	}
}

/* ========================================================================
 * v1.2.1 — AWARD CUT TYPOGRAPHY
 * The approved reference uses monument-scale uppercase copy, a metallic
 * white face and deliberate electric-blue accent words.
 * ===================================================================== */
.ss3k__headline {
	font-family: "Arial Black", "Inter Tight", Inter, "Helvetica Neue", Arial, sans-serif;
	font-weight: 900;
	line-height: .835;
	letter-spacing: -.064em;
	text-transform: uppercase;
	text-wrap: nowrap;
	filter: drop-shadow(0 12px 28px rgba(0, 0, 0, .34));
}

.ss3k__headline > span {
	padding: .045em .08em .11em 0;
}

.ss3k__headline .ss3k__text,
.ss3k__headline .ss3k__accent {
	display: inline;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

.ss3k__headline .ss3k__text {
	background-image: linear-gradient(180deg, #ffffff 0%, #f7f9fc 35%, #c9d1dc 72%, #ffffff 100%);
	text-shadow: 0 1px 0 rgba(255,255,255,.13);
}

.ss3k__headline .ss3k__accent {
	background-image: linear-gradient(180deg, #65c8ff 0%, #208cff 38%, #0759db 80%, #43beff 100%);
	filter: drop-shadow(0 0 18px rgba(20, 126, 255, .36));
}

.ss3k__strapline {
	max-width: 780px;
	margin: 24px 0 0;
	color: #f8fbff;
	font-size: clamp(15px, 1.18vw, 22px);
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: .18em;
	text-transform: uppercase;
	opacity: 0;
	clip-path: inset(0 100% 0 0);
	transform: translateY(12px);
}

.ss3k__strapline .ss3k__accent {
	color: var(--ss3k-accent);
	text-shadow: 0 0 18px rgba(61, 171, 255, .46);
}

.ss3k__chapter.is-visual-active .ss3k__strapline {
	animation: ss3k-copy-in .72s .58s var(--ss3k-ease) forwards;
}

.ss3k__chapter.is-visual-active .ss3k__description {
	animation-delay: .72s;
}

.ss3k__chapter.is-visual-active .ss3k__cta {
	animation-delay: .86s;
}

.ss3k__description {
	margin-top: 22px;
	font-size: clamp(18px, 1.18vw, 23px);
	line-height: 1.48;
}

.ss3k__cta {
	gap: 18px;
	min-height: 62px;
	margin-top: 31px;
	padding: 0 10px 0 24px;
	border: 1px solid rgba(142, 213, 255, .68);
	border-bottom-color: rgba(142, 213, 255, .68);
	border-radius: 12px;
	background: linear-gradient(135deg, #168aff 0%, #075ee5 58%, #0c48bd 100%);
	box-shadow: 0 16px 34px rgba(0, 79, 204, .27), inset 0 1px 0 rgba(255,255,255,.28);
	letter-spacing: .035em;
	text-transform: none;
}

.ss3k__cta:hover {
	color: #fff !important;
	border-color: #a8ddff;
	background: linear-gradient(135deg, #38a4ff 0%, #0874f6 58%, #0751ce 100%);
	box-shadow: 0 19px 40px rgba(0, 102, 255, .36), 0 0 0 4px rgba(68, 171, 255, .09);
}

.ss3k__cta i {
	width: 42px;
	height: 42px;
	background: rgba(255,255,255,.96);
}

@media (min-width: 1181px) {
	.ss3k__content {
		top: var(--ss3k-content-y, 37%);
		left: clamp(38px, 4.8vw, 96px);
		width: min(55vw, 1080px);
		transform: translateY(-34%);
	}

	.ss3k__headline {
		max-width: 1080px;
		font-size: clamp(var(--ss3k-headline-min, 79px), var(--ss3k-headline-fluid, 7.020vw), var(--ss3k-headline-max, 134px));
	}

	.ss3k__rail {
		bottom: 72px;
	}
}

@media (min-width: 861px) and (max-width: 1180px) {
	.ss3k__content {
		top: var(--ss3k-content-y, 37%);
		left: clamp(34px, 5vw, 70px);
		width: min(60vw, 760px);
		transform: translateY(-32%);
	}

	.ss3k__headline {
		max-width: 760px;
		font-size: clamp(60px, 7.25vw, 94px);
		text-wrap: balance;
	}

	.ss3k__strapline {
		font-size: clamp(13px, 1.45vw, 18px);
	}
}

@media (max-width: 860px) {
	.ss3k__headline {
		font-size: clamp(50px, 9.4vw, 82px);
		line-height: .87;
		text-wrap: balance;
	}

	.ss3k__strapline {
		margin-top: 17px;
		font-size: clamp(12px, 2vw, 17px);
		letter-spacing: .13em;
	}

	.ss3k__description {
		margin-top: 16px;
	}
}

@media (max-width: 700px) {
	.ss3k__headline {
		font-size: clamp(40px, 11.4vw, 62px);
		line-height: .9;
		letter-spacing: -.058em;
	}

	.ss3k__strapline {
		margin-top: 14px;
		font-size: 10px;
		line-height: 1.45;
		letter-spacing: .11em;
	}

	.ss3k__description {
		margin-top: 12px;
		font-size: 14px;
	}

	.ss3k__cta {
		min-height: 48px;
		margin-top: 16px;
		padding-left: 16px;
		border-radius: 10px;
		font-size: 10px;
	}

	.ss3k__cta i {
		width: 34px;
		height: 34px;
	}
}

/* v1.3.0 — three visual systems, micro controls and Future Is Now award mode. */
.ss3k {
	--ss3k-headline-weight: 820;
	--ss3k-copy-width: 59vw;
	--ss3k-overlay-strength: .66;
}

.ss3k__content {
	width: min(var(--ss3k-copy-width, 59vw), 1120px);
}

.ss3k__headline {
	font-weight: var(--ss3k-headline-weight, 820);
	text-transform: uppercase;
}

.ss3k__shade {
	opacity: var(--ss3k-overlay-strength, .66);
}

.ss3k__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 31px;
}

.ss3k__actions .ss3k__cta {
	margin-top: 0;
}

.ss3k__cta--secondary {
	min-height: 62px;
	padding: 0 24px;
	color: rgba(247, 252, 255, .94) !important;
	border-color: rgba(183, 224, 255, .34);
	background: rgba(5, 15, 28, .38);
	box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 12px 34px rgba(0,0,0,.18);
	backdrop-filter: blur(16px) saturate(135%);
}

.ss3k__cta--secondary:hover {
	color: #fff !important;
	border-color: rgba(144, 216, 255, .72);
	background: rgba(16, 78, 139, .38);
}

.ss3k__future-grid {
	position: absolute;
	z-index: 3;
	inset: 0;
	display: none;
	pointer-events: none;
	overflow: hidden;
	mix-blend-mode: screen;
}

.ss3k__future-grid::before,
.ss3k__future-grid::after {
	content: "";
	position: absolute;
	inset: -12%;
	opacity: .18;
	background:
		linear-gradient(rgba(98, 198, 255, .14) 1px, transparent 1px) 0 0 / 82px 82px,
		linear-gradient(90deg, rgba(98, 198, 255, .12) 1px, transparent 1px) 0 0 / 82px 82px;
	transform: perspective(800px) rotateX(64deg) translateY(54%);
	transform-origin: center bottom;
	mask-image: linear-gradient(to top, #000, transparent 72%);
}

.ss3k__future-grid::after {
	opacity: .11;
	transform: perspective(900px) rotateX(68deg) translateY(60%) scale(1.16);
}

.ss3k__future-grid i {
	position: absolute;
	width: 36vw;
	height: 1px;
	right: -6vw;
	top: 24%;
	background: linear-gradient(90deg, transparent, rgba(110, 213, 255, .82), transparent);
	box-shadow: 0 0 18px rgba(67, 179, 255, .65);
	opacity: 0;
	transform: rotate(-18deg) translateX(15%);
}

.ss3k__future-grid i:nth-child(2) { top: 38%; width: 29vw; transform: rotate(-13deg) translateX(10%); }
.ss3k__future-grid i:nth-child(3) { top: 55%; width: 42vw; transform: rotate(-8deg) translateX(18%); }

.ss3k--v3 .ss3k__future-grid {
	display: block;
}

.ss3k--v3 .ss3k__chapter.is-visual-active .ss3k__future-grid i {
	animation: ss3k-future-scan 2.2s .22s var(--ss3k-ease) both;
}
.ss3k--v3 .ss3k__chapter.is-visual-active .ss3k__future-grid i:nth-child(2) { animation-delay: .38s; }
.ss3k--v3 .ss3k__chapter.is-visual-active .ss3k__future-grid i:nth-child(3) { animation-delay: .54s; }

@keyframes ss3k-future-scan {
	0% { opacity: 0; transform: translateX(34%) rotate(-16deg) scaleX(.2); }
	38% { opacity: .42; }
	100% { opacity: 0; transform: translateX(-58%) rotate(-10deg) scaleX(1.08); }
}

/* Version 1 — clean editorial cinema. */
.ss3k--v1 .ss3k__proof,
.ss3k--v1 .ss3k__folds,
.ss3k--v1 .ss3k__future-grid {
	display: none;
}

.ss3k--v1 .ss3k__shade {
	background:
		linear-gradient(90deg, rgba(2, 7, 15, .98) 0%, rgba(3, 9, 19, .82) 31%, rgba(3, 9, 19, .32) 57%, transparent 76%),
		linear-gradient(180deg, rgba(2, 7, 13, .25), transparent 54%, rgba(2, 6, 12, .66));
}

.ss3k--v1 .ss3k__content {
	width: min(var(--ss3k-copy-width, 61vw), 1160px);
}

.ss3k--v1 .ss3k__headline {
	letter-spacing: -.072em;
	line-height: .86;
}

/* Version 2 — real photography plus premium interface proof. */
.ss3k--v2 .ss3k__proof {
	width: min(31vw, 520px);
}

.ss3k--v2 .ss3k__folds i {
	background: linear-gradient(120deg, rgba(8, 22, 40, .94), rgba(25, 86, 145, .33) 45%, rgba(5, 14, 25, .94));
}

/* Version 3 — signature Future Is Now award mode. */
.ss3k--v3 {
	background: #020712;
}

.ss3k--v3 .ss3k__stage {
	background:
		radial-gradient(circle at 75% 28%, rgba(30, 138, 255, .23), transparent 34%),
		linear-gradient(145deg, #030713, #071526 72%, #020711);
}

.ss3k--v3 .ss3k__media img,
.ss3k--v3 .ss3k__video {
	filter: saturate(1.08) contrast(1.045);
}

.ss3k--v3 .ss3k__shade {
	background:
		linear-gradient(90deg, rgba(1, 5, 14, .99) 0%, rgba(2, 8, 20, .9) 27%, rgba(4, 14, 31, .49) 48%, rgba(4, 12, 26, .06) 71%),
		linear-gradient(180deg, rgba(1, 5, 13, .32), transparent 39%, rgba(1, 5, 13, .76));
}

.ss3k--v3 .ss3k__content {
	left: clamp(30px, 4.6vw, 92px);
	width: min(var(--ss3k-copy-width, 59vw), 1160px);
}

.ss3k--v3 .ss3k__headline {
	line-height: .84;
	letter-spacing: -.074em;
	text-shadow: 0 14px 60px rgba(0,0,0,.36), 0 0 26px rgba(54, 158, 255, .08);
}

.ss3k--v3 .ss3k__headline .ss3k__text {
	background-image: linear-gradient(180deg, #fff 0%, #f7fbff 32%, #aebbc9 72%, #f7fbff 100%);
}

.ss3k--v3 .ss3k__headline .ss3k__accent {
	background-image: linear-gradient(180deg, #84dcff 0%, #2f9cff 31%, #075bdc 73%, #54c7ff 100%);
	filter: drop-shadow(0 0 26px rgba(24, 132, 255, .46));
}

.ss3k--v3 .ss3k__strapline {
	font-weight: 950;
	letter-spacing: .2em;
}

.ss3k--v3 .ss3k__description {
	max-width: 760px;
	font-weight: 540;
	text-shadow: 0 8px 24px rgba(0,0,0,.4);
}

.ss3k--v3 .ss3k__proof {
	right: clamp(24px, 4.2vw, 84px);
	width: min(32vw, 560px);
	filter: drop-shadow(0 34px 70px rgba(0, 0, 0, .46)) drop-shadow(0 0 36px rgba(34, 135, 255, .12));
}

.ss3k--v3 .ss3k__folds {
	grid-template-columns: repeat(4, 1fr);
}

.ss3k--v3 .ss3k__folds i {
	background:
		linear-gradient(104deg, rgba(3, 11, 27, .98), rgba(20, 82, 151, .58) 46%, rgba(2, 8, 20, .98)),
		radial-gradient(circle at 50% 50%, rgba(89, 196, 255, .16), transparent 55%);
	box-shadow: inset -1px 0 rgba(164, 225, 255, .21), inset 0 0 70px rgba(47, 148, 255, .14);
}

.ss3k--v3 .ss3k__chapter.is-visual-active .ss3k__folds i {
	animation-name: ss3k-award-fold-open;
	animation-duration: 1.42s;
}

@keyframes ss3k-award-fold-open {
	0% { opacity: 1; transform: scaleX(1) rotateY(0) translateZ(0); filter: brightness(.62) saturate(.7); }
	42% { opacity: .82; filter: brightness(1.04) saturate(1.06); }
	100% { opacity: 0; transform: scaleX(.012) rotateY(-88deg) translateZ(34px); filter: brightness(1) saturate(1.02); }
}

.ss3k--v3 .ss3k__ambient {
	opacity: .86;
}

.ss3k--v3 .ss3k__ambient i {
	background: radial-gradient(circle, rgba(82, 189, 255, .28), rgba(45, 94, 255, .09) 44%, transparent 73%);
	filter: blur(24px);
}

.ss3k__chapter.is-visual-active[data-camera="orbit"] .ss3k__media img,
.ss3k__chapter.is-visual-active[data-camera="orbit"] .ss3k__video {
	animation: ss3k-camera-orbit var(--ss3k-motion-duration, 10800ms) linear both;
}

@keyframes ss3k-camera-orbit {
	0% { transform: translate3d(.75%, .28%, 0) scale(1.045) rotate(.12deg); }
	48% { transform: translate3d(-.18%, -.18%, 0) scale(1.058) rotate(0); }
	100% { transform: translate3d(-.74%, -.46%, 0) scale(1.066) rotate(-.12deg); }
}

.ss3k__chapter[data-copy-animation="future-slice"] .ss3k__headline i {
	clip-path: polygon(0 0, 0 0, 8% 100%, 0 100%);
	transform: translate3d(-36px, 26px, 0) skewX(-5deg);
	filter: blur(6px);
}

.ss3k__chapter[data-copy-animation="future-slice"].is-visual-active .ss3k__headline i {
	animation-name: ss3k-line-future-slice !important;
}

@keyframes ss3k-line-future-slice {
	0% { opacity: .12; clip-path: polygon(0 0, 0 0, 8% 100%, 0 100%); transform: translate3d(-36px, 26px, 0) skewX(-5deg); filter: blur(6px); }
	62% { opacity: 1; clip-path: polygon(0 0, 85% 0, 73% 100%, 0 100%); }
	100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,0,0) skewX(0); filter: blur(0); }
}

.ss3k__chapter[data-proof-animation="holo-unfold"].is-visual-active .ss3k__proof {
	animation-name: ss3k-proof-holo;
}

@keyframes ss3k-proof-holo {
	0% { opacity: 0; clip-path: polygon(50% 0,50% 0,50% 100%,50% 100%); transform: translate3d(62px,-46%,0) perspective(1400px) rotateY(-26deg) scale(.88); filter: blur(12px) brightness(1.5); }
	62% { opacity: 1; clip-path: polygon(0 0,100% 0,92% 100%,8% 100%); filter: blur(0) brightness(1.1); }
	100% { opacity: 1; clip-path: inset(0); transform: translate3d(0,-46%,0) perspective(1400px) rotateY(-2deg) scale(1); filter: blur(0) brightness(1); }
}

/* UI Screenshot Maker proof used on the busy-owner opening scene. */
.ss3k-ui-maker {
	overflow: hidden;
	color: #eaf7ff;
	border: 1px solid rgba(129, 211, 255, .33);
	border-radius: 14px;
	background: linear-gradient(145deg, rgba(7, 24, 43, .93), rgba(2, 9, 19, .86));
	box-shadow: inset 0 1px rgba(255,255,255,.08), 0 26px 80px rgba(0,0,0,.38);
	backdrop-filter: blur(20px) saturate(140%);
}

.ss3k-ui-maker__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 18px;
	border-bottom: 1px solid rgba(145, 211, 255, .14);
	font-size: 10px;
}

.ss3k-ui-maker__bar b { font-weight: 750; }
.ss3k-ui-maker__bar span { color: rgba(222, 242, 255, .48); font-size: 8px; letter-spacing: .12em; }

.ss3k-ui-maker__body {
	display: grid;
	grid-template-columns: 104px 1fr;
	min-height: 260px;
}

.ss3k-ui-maker__body nav {
	display: flex;
	flex-direction: column;
	gap: 13px;
	padding: 18px 13px;
	color: rgba(222, 241, 255, .48);
	font-size: 8px;
	border-right: 1px solid rgba(145, 211, 255, .12);
	background: rgba(3, 12, 23, .52);
}

.ss3k-ui-maker__body nav i {
	width: 20px;
	height: 20px;
	margin-bottom: 4px;
	border: 1px solid var(--ss3k-accent);
	border-radius: 50% 50% 50% 10%;
	transform: rotate(45deg);
}

.ss3k-ui-maker__body nav b {
	margin: 0 -6px;
	padding: 8px 6px;
	color: #fff;
	border-radius: 6px;
	background: linear-gradient(90deg, rgba(20, 126, 255, .54), rgba(20, 126, 255, .08));
}

.ss3k-ui-maker__body section {
	padding: 22px;
}

.ss3k-ui-maker__body small {
	color: var(--ss3k-accent);
	font-size: 7px;
	font-weight: 850;
	letter-spacing: .15em;
}

.ss3k-ui-maker__body section > strong {
	display: block;
	max-width: 300px;
	margin: 8px 0 18px;
	font-size: clamp(18px, 1.45vw, 25px);
	font-weight: 560;
	line-height: 1.08;
	letter-spacing: -.035em;
}

.ss3k-ui-maker__shots {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.ss3k-ui-maker__shots i {
	display: block;
	height: 98px;
	border: 1px solid rgba(143, 214, 255, .18);
	border-radius: 7px;
	background:
		linear-gradient(90deg, rgba(2,8,18,.9), rgba(5,18,36,.28)),
		radial-gradient(circle at 72% 40%, rgba(30,142,255,.42), transparent 28%),
		linear-gradient(145deg, #09192c, #020916);
	box-shadow: inset 0 0 24px rgba(28,132,255,.12);
}

.ss3k-ui-maker__shots i:nth-child(2) {
	background:
		linear-gradient(90deg, rgba(2,8,18,.9), rgba(5,18,36,.28)),
		radial-gradient(circle at 68% 32%, rgba(73,194,255,.38), transparent 25%),
		linear-gradient(145deg, #0b1d31, #030a17);
}

.ss3k-ui-maker__body footer {
	display: flex;
	gap: 7px;
	margin-top: 12px;
}

.ss3k-ui-maker__body footer span {
	padding: 5px 7px;
	color: rgba(226, 242, 255, .5);
	font-size: 7px;
	border: 1px solid rgba(145, 211, 255, .12);
	border-radius: 4px;
}

/* Tiny navigation: the slider stays the star. */
.ss3k--controls-micro .ss3k__rail {
	right: auto;
	bottom: 24px;
	left: clamp(28px, 4.8vw, 94px);
	width: min(46vw, 650px);
	gap: 14px;
}

.ss3k--controls-micro .ss3k__rail-item {
	height: 24px;
	padding: 0;
	gap: 6px;
	border-top-color: rgba(255,255,255,.12);
}

.ss3k--controls-micro .ss3k__rail-number,
.ss3k--controls-micro .ss3k__rail-label {
	font-size: 7px;
	letter-spacing: .09em;
}

.ss3k--controls-micro .ss3k__rail-label {
	opacity: .72;
}

.ss3k--controls-micro .ss3k__rail-item.is-active::before { width: 28%; }

.ss3k--controls-micro .ss3k__transport {
	right: clamp(20px, 3vw, 58px);
	bottom: 17px;
	min-height: 38px;
	padding: 3px 7px;
	gap: 1px;
	border-radius: 22px;
	background: rgba(4, 13, 25, .54);
}

.ss3k--controls-micro .ss3k__icon-button,
.ss3k--controls-micro .ss3k__pause-glyph {
	width: 30px;
	height: 30px;
}

.ss3k--controls-micro .ss3k__pause {
	gap: 0;
	padding: 0;
}

.ss3k--controls-micro [data-ss3k-pause-label] { display: none; }
.ss3k--controls-micro .ss3k__counter { padding: 0 8px; font-size: 8px; }
.ss3k--controls-micro .ss3k__counter b { font-size: 11px; }

.ss3k--controls-dots .ss3k__rail {
	right: auto;
	bottom: 28px;
	left: clamp(28px, 4.8vw, 94px);
	display: flex;
	gap: 9px;
}

.ss3k--controls-dots .ss3k__rail-item {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 1px solid rgba(203,235,255,.45);
	border-radius: 50%;
	background: transparent;
}

.ss3k--controls-dots .ss3k__rail-item::before,
.ss3k--controls-dots .ss3k__rail-number,
.ss3k--controls-dots .ss3k__rail-label { display: none; }

.ss3k--controls-dots .ss3k__rail-item.is-active {
	background: var(--ss3k-accent);
	box-shadow: 0 0 14px var(--ss3k-accent);
}

.ss3k--controls-dots .ss3k__transport {
	right: clamp(20px, 3vw, 58px);
	bottom: 16px;
	transform: scale(.72);
	transform-origin: right bottom;
}

.ss3k--controls-hidden .ss3k__rail,
.ss3k--controls-hidden .ss3k__transport { display: none; }

.ss3k--controls-hidden .ss3k__progress { height: 1px; opacity: .55; }

@media (min-width: 1181px) {
	.ss3k__headline {
		font-size: clamp(var(--ss3k-headline-min, 86px), var(--ss3k-headline-fluid, 7.72vw), var(--ss3k-headline-max, 148px));
	}
}

@media (max-width: 1180px) {
	.ss3k--v3 .ss3k__proof { width: min(34vw, 430px); }
	.ss3k--controls-micro .ss3k__rail-label { display: none; }
}

@media (max-width: 860px) {
	.ss3k__actions { gap: 10px; }
	.ss3k__cta--secondary { min-height: 54px; padding: 0 18px; }
	.ss3k--v3 .ss3k__proof { opacity: .72; }
}

@media (max-width: 700px) {
	.ss3k__content,
	.ss3k--v3 .ss3k__content {
		width: auto;
		right: 20px;
		left: 20px;
	}

	.ss3k__headline {
		font-weight: min(var(--ss3k-headline-weight, 820), 900);
	}

	.ss3k__actions {
		align-items: stretch;
		gap: 8px;
		margin-top: 16px;
	}

	.ss3k__actions .ss3k__cta {
		min-height: 48px;
	}

	.ss3k__cta--secondary {
		padding: 0 14px;
		font-size: 9px;
	}

	.ss3k--v1 .ss3k__proof,
	.ss3k--v2 .ss3k__proof,
	.ss3k--v3 .ss3k__proof { display: none; }

	.ss3k--controls-micro .ss3k__rail {
		bottom: 14px;
		left: 20px;
		width: 42vw;
		gap: 6px;
	}

	.ss3k--controls-micro .ss3k__rail-number { display: none; }
	.ss3k--controls-micro .ss3k__rail-item { height: 6px; border-top: 0; background: rgba(255,255,255,.18); }
	.ss3k--controls-micro .ss3k__rail-item::before { top: 0; height: 2px; }
	.ss3k--controls-micro .ss3k__transport { bottom: 6px; right: 10px; transform: scale(.78); transform-origin: right bottom; }
	.ss3k__future-grid::before,
	.ss3k__future-grid::after { opacity: .08; }
}

@media (prefers-reduced-motion: reduce) {
	.ss3k__future-grid,
	.ss3k--v3 .ss3k__future-grid { display: none; }
}

.ss3k--v3 .ss3k__chapter.is-visual-active .ss3k__proof { animation-name: ss3k-proof-holo; }

/* ========================================================================
 * v1.3.1 — OPENING COMPOSITION REBUILD
 * Three deliberate lines, cleaner display typography and a higher visual
 * centre. The hero now reads like an art-directed campaign, not a widget.
 * ===================================================================== */
.ss3k {
	--ss3k-display-font: "Segoe UI Variable Display", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.ss3k__headline {
	font-family: var(--ss3k-display-font);
	font-weight: var(--ss3k-headline-weight, 880);
	font-variation-settings: "wght" var(--ss3k-headline-weight, 880);
	line-height: .86;
	letter-spacing: -.055em;
	text-wrap: initial;
	filter: none;
}

.ss3k__headline > span {
	padding: 0 .06em .055em 0;
}

.ss3k__headline .ss3k__text {
	background-image: linear-gradient(180deg, #ffffff 0%, #f8fbff 54%, #dce5ef 100%);
	text-shadow: none;
}

.ss3k__headline .ss3k__accent {
	background-image: linear-gradient(180deg, #8edcff 0%, #2f9fff 34%, #0864e9 78%, #46bdff 100%);
	filter: drop-shadow(0 8px 25px rgba(6, 103, 232, .34));
}

.ss3k--v3 .ss3k__content {
	top: var(--ss3k-content-y, 29%);
	left: clamp(34px, 4.7vw, 94px);
	width: min(var(--ss3k-copy-width, 53vw), 970px);
	transform: translateY(-14%);
}

.ss3k--v3 .ss3k__eyebrow {
	margin-bottom: 18px;
	font-size: 11px;
	letter-spacing: .185em;
}

.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
	width: min(var(--ss3k-copy-width, 53vw), 930px);
}

.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
	max-width: 930px;
	font-size: clamp(var(--ss3k-headline-min, 91px), var(--ss3k-headline-fluid, 7.6vw), var(--ss3k-headline-max, 152px));
	line-height: .825;
	letter-spacing: -.052em;
}

.ss3k--v3 .ss3k__strapline {
	margin-top: 17px;
	font-size: clamp(14px, 1.05vw, 20px);
	line-height: 1.18;
	letter-spacing: .17em;
}

.ss3k--v3 .ss3k__description {
	max-width: 650px;
	margin-top: 16px;
	font-size: clamp(17px, 1.08vw, 21px);
	font-weight: 500;
	line-height: 1.42;
}

.ss3k--v3 .ss3k__actions {
	gap: 11px;
	margin-top: 22px;
}

.ss3k--v3 .ss3k__cta {
	min-height: 56px;
	padding-left: 20px;
	border-radius: 10px;
	font-size: 12px;
}

.ss3k--v3 .ss3k__cta i {
	width: 38px;
	height: 38px;
}

.ss3k--v3 .ss3k__cta--secondary {
	min-height: 56px;
	padding: 0 20px;
}

.ss3k--v3 .ss3k__proof {
	top: 40%;
	right: clamp(24px, 3.4vw, 68px);
	width: min(28vw, 500px);
}

.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
	top: 38%;
	width: min(27vw, 485px);
}

.ss3k--v3 .ss3k-ui-maker {
	border-color: rgba(139, 215, 255, .4);
	border-radius: 12px;
	background: linear-gradient(145deg, rgba(7, 25, 46, .92), rgba(2, 10, 21, .88));
	box-shadow: inset 0 1px rgba(255,255,255,.09), 0 28px 85px rgba(0,0,0,.46), 0 0 42px rgba(25,120,255,.08);
}

.ss3k--v3 .ss3k__shade {
	background:
		linear-gradient(90deg, rgba(1, 5, 14, .99) 0%, rgba(2, 8, 20, .89) 25%, rgba(4, 14, 31, .42) 47%, rgba(4, 12, 26, .025) 70%),
		linear-gradient(180deg, rgba(1, 5, 13, .24), transparent 43%, rgba(1, 5, 13, .66));
}

.ss3k--v3 .ss3k__media img,
.ss3k--v3 .ss3k__video {
	filter: saturate(1.15) contrast(1.055) brightness(1.035);
}

.ss3k--controls-dots .ss3k__rail {
	bottom: 20px;
}

.ss3k--controls-dots .ss3k__transport {
	bottom: 10px;
	transform: scale(.62);
}

/* The browser height in the supplied screenshot is unusually short. Keep
 * the full message and both calls to action above the fold without making
 * the headline timid. */
@media (max-height: 820px) and (min-width: 1181px) {
	.ss3k--v3 .ss3k__content {
		top: 27%;
		transform: translateY(-10%);
	}

	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(88px, 6.15vw, 112px);
		line-height: .82;
	}

	.ss3k--v3 .ss3k__eyebrow {
		margin-bottom: 13px;
	}

	.ss3k--v3 .ss3k__strapline {
		margin-top: 12px;
		font-size: 14px;
	}

	.ss3k--v3 .ss3k__description {
		max-width: 600px;
		margin-top: 12px;
		font-size: 17px;
		line-height: 1.36;
	}

	.ss3k--v3 .ss3k__actions {
		margin-top: 17px;
	}

	.ss3k--v3 .ss3k__proof,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
		top: 39%;
		width: min(25.5vw, 450px);
	}
}

@media (min-width: 861px) and (max-width: 1180px) {
	.ss3k--v3 .ss3k__content {
		top: var(--ss3k-content-y, 29%);
		width: min(57vw, 700px);
		transform: translateY(-10%);
	}

	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(66px, 7.2vw, 90px);
	}

	.ss3k--v3 .ss3k__proof,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
		top: 35%;
		width: min(31vw, 390px);
	}
}

@media (max-width: 860px) {
	.ss3k--v3 .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		top: auto;
		right: 24px;
		bottom: 112px;
		left: 24px;
		width: auto;
		transform: none;
	}

	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(48px, 9.5vw, 78px);
		line-height: .86;
	}
}

@media (max-width: 700px) {
	.ss3k--v3 .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		right: 20px;
		bottom: 98px;
		left: 20px;
	}

	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(42px, 12vw, 62px);
		line-height: .84;
		letter-spacing: -.045em;
	}

	.ss3k--v3 .ss3k__eyebrow {
		margin-bottom: 12px;
	}

	.ss3k--v3 .ss3k__strapline {
		margin-top: 11px;
		font-size: 10px;
	}

	.ss3k--v3 .ss3k__description {
		margin-top: 10px;
		font-size: 14px;
	}

	.ss3k--v3 .ss3k__actions {
		margin-top: 13px;
	}
}

/* v1.3.1 optical correction after browser render: large, not cartoonishly huge. */
.ss3k--v3 .ss3k__content,
.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
	width: min(var(--ss3k-copy-width, 58vw), 1050px);
}

.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
	max-width: 1050px;
	font-size: clamp(var(--ss3k-headline-min, 79px), var(--ss3k-headline-fluid, 6.08vw), var(--ss3k-headline-max, 125px));
}

.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
	top: 31%;
	width: min(26vw, 470px);
}

.ss3k--controls-dots .ss3k__transport {
	display: none;
}

@media (max-height: 820px) and (min-width: 1181px) {
	.ss3k--v3 .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		top: 25%;
		width: min(var(--ss3k-copy-width, 58vw), 1050px);
		transform: translateY(-8%);
	}

	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(78px, 5.15vw, 94px);
		line-height: .84;
	}

	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
		top: 29%;
		width: min(24.5vw, 440px);
	}
}

/* Avoid Chromium creating a dark compositing rectangle around filtered
 * background-clipped accent text. The glow belongs to the letters only. */
.ss3k__headline .ss3k__accent,
.ss3k--v3 .ss3k__headline .ss3k__accent {
	filter: none !important;
}

.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
	top: 27%;
}

@media (max-height: 820px) and (min-width: 1181px) {
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__proof {
		top: 25%;
	}
}

/* ========================================================================
 * v1.3.2 — CONTROL DECK, NEUTRAL COLOUR GRADE AND POSITIONABLE COPY
 * ===================================================================== */
.ss3k {
	--ss3k-content-x: 4%;
	--ss3k-colour-wash: .16;
	margin-bottom: 0;
}

.ss3k__chapter .ss3k__content,
.ss3k--v3 .ss3k__chapter .ss3k__content,
.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
	top: var(--ss3k-scene-content-y, var(--ss3k-content-y, 23%));
	left: var(--ss3k-scene-content-x, var(--ss3k-content-x, 4%));
	width: min(var(--ss3k-copy-width, 60vw), 1120px);
	transform: translateY(-8%);
}

.ss3k__chapter .ss3k__headline,
.ss3k--v3 .ss3k__chapter .ss3k__headline,
.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
	max-width: 1120px;
	font-size: clamp(
		var(--ss3k-scene-headline-min, var(--ss3k-headline-min, 90px)),
		var(--ss3k-scene-headline-fluid, var(--ss3k-headline-fluid, 6.96vw)),
		var(--ss3k-scene-headline-max, var(--ss3k-headline-max, 143px))
	);
	line-height: .83;
	letter-spacing: -.052em;
}

.ss3k--v3 .ss3k__stage {
	background: #04070d;
}

.ss3k--v3 .ss3k__media img,
.ss3k--v3 .ss3k__video {
	filter: saturate(.98) contrast(1.035) brightness(1.025);
}

.ss3k--v3 .ss3k__shade {
	background:
		linear-gradient(90deg, rgba(1, 3, 7, .99) 0%, rgba(3, 6, 11, .90) 24%, rgba(5, 9, 15, .48) 46%, rgba(6, 10, 16, .08) 72%),
		linear-gradient(180deg, rgba(1, 3, 7, .22), transparent 43%, rgba(1, 3, 7, .68));
}

.ss3k--v3 .ss3k__future-grid,
.ss3k--v3 .ss3k__ambient {
	opacity: var(--ss3k-colour-wash, .16);
}

.ss3k--v3 .ss3k__folds {
	opacity: .62;
}

/* New default: small chapter ticks and floating icon-only transport. */
.ss3k--controls-minimal .ss3k__rail {
	right: auto;
	bottom: 18px;
	left: clamp(26px, 4vw, 72px);
	display: flex;
	width: auto;
	gap: 7px;
	align-items: flex-end;
}

.ss3k--controls-minimal .ss3k__rail-item {
	position: relative;
	display: grid;
	width: 30px;
	height: 23px;
	padding: 0 0 6px;
	place-items: center;
	color: rgba(238, 247, 255, .42);
	border: 0;
	background: transparent;
}

.ss3k--controls-minimal .ss3k__rail-item::before {
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(235, 246, 255, .2);
	box-shadow: none;
	transition: height .25s ease, background .25s ease, box-shadow .25s ease;
}

.ss3k--controls-minimal .ss3k__rail-item.is-active::before {
	width: 100%;
	height: 2px;
	background: var(--ss3k-accent);
	box-shadow: 0 0 10px color-mix(in srgb, var(--ss3k-accent) 65%, transparent);
}

.ss3k--controls-minimal .ss3k__rail-number {
	display: block;
	font-size: 8px;
	font-weight: 850;
	letter-spacing: .08em;
}

.ss3k--controls-minimal .ss3k__rail-label {
	display: none;
}

.ss3k--controls-minimal .ss3k__transport,
.ss3k--controls-dots .ss3k__transport {
	right: clamp(22px, 3.3vw, 62px);
	bottom: 10px;
	display: flex;
	min-height: 36px;
	padding: 0;
	gap: 5px;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	transform: none;
}

.ss3k--controls-minimal .ss3k__icon-button,
.ss3k--controls-minimal .ss3k__pause,
.ss3k--controls-dots .ss3k__icon-button,
.ss3k--controls-dots .ss3k__pause {
	width: 34px;
	min-width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(221, 239, 252, .16);
	border-radius: 50%;
	background: rgba(2, 7, 13, .34);
	box-shadow: inset 0 1px rgba(255,255,255,.04);
	backdrop-filter: blur(10px);
}

.ss3k--controls-minimal .ss3k__pause-glyph,
.ss3k--controls-dots .ss3k__pause-glyph {
	width: 32px;
	height: 32px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

.ss3k--controls-minimal [data-ss3k-pause-label],
.ss3k--controls-dots [data-ss3k-pause-label] {
	display: none;
}

.ss3k--controls-minimal .ss3k__counter,
.ss3k--controls-dots .ss3k__counter {
	min-width: 46px;
	margin: 0 0 0 4px;
	padding: 0;
	color: rgba(240, 248, 255, .42);
	font-size: 8px;
	letter-spacing: .12em;
}

.ss3k--controls-minimal .ss3k__counter b,
.ss3k--controls-dots .ss3k__counter b {
	font-size: 11px;
	font-weight: 760;
}

.ss3k--controls-minimal .ss3k__progress,
.ss3k--controls-dots .ss3k__progress,
.ss3k--controls-hidden .ss3k__progress {
	display: none;
}

.ss3k--controls-dots .ss3k__rail {
	bottom: 21px;
}

.ss3k--controls-dots .ss3k__rail-item {
	width: 6px;
	height: 6px;
	border-color: rgba(226, 241, 252, .38);
}

.ss3k--controls-dots .ss3k__rail-item.is-active {
	box-shadow: 0 0 9px var(--ss3k-accent);
}

@media (max-height: 820px) and (min-width: 1181px) {
	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		top: var(--ss3k-scene-content-y, var(--ss3k-content-y, 23%));
		transform: translateY(-6%);
	}

	.ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(
			var(--ss3k-scene-headline-min, var(--ss3k-headline-min, 90px)),
			var(--ss3k-scene-headline-fluid, var(--ss3k-headline-fluid, 6.96vw)),
			var(--ss3k-scene-headline-max, var(--ss3k-headline-max, 143px))
		);
	}
}

@media (max-width: 860px) {
	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		top: auto;
		right: 22px;
		bottom: 82px;
		left: 22px;
		width: auto;
		transform: none;
	}

	.ss3k--controls-minimal .ss3k__rail {
		bottom: 16px;
		left: 20px;
		gap: 5px;
	}

	.ss3k--controls-minimal .ss3k__rail-item {
		width: 22px;
	}

	.ss3k--controls-minimal .ss3k__transport,
	.ss3k--controls-dots .ss3k__transport {
		right: 14px;
		bottom: 7px;
	}
}

@media (max-width: 700px) {
	.ss3k--mobile-disabled {
		display: none !important;
	}

	.ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(42px, 12.5vw, 68px);
	}
}


/* v1.3.3 — compositor-stable transition hand-off. */
.ss3k__chapter.is-active,
.ss3k__chapter.is-entering,
.ss3k__chapter.is-leaving {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.ss3k__media picture,
.ss3k__media img,
.ss3k__video,
.ss3k__shade,
.ss3k__ambient,
.ss3k__folds {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}



/* ========================================================================
 * v1.3.3 — FLICK-FREE HAND-OFF, HUMAN-SIZED CTAS, NEUTRAL FUTURE GRADE
 * ===================================================================== */

/* Keep the expensive colour work on the media itself. The chapter plane now
 * stays filter-free throughout a transition, preventing one-frame compositor
 * flashes when WAAPI hands control back to CSS. */
.ss3k__chapter,
.ss3k__chapter.is-active,
.ss3k__chapter.is-entering,
.ss3k__chapter.is-leaving {
	filter: none;
}

/* The photography already contains sapphire light. Keep the "Future Is Now"
 * atmosphere present, but stop painting a second blue wash over the image. */
.ss3k--v3,
.ss3k--v3 .ss3k__stage {
	background: #05070b;
}

.ss3k--v3 .ss3k__media img,
.ss3k--v3 .ss3k__video {
	filter: saturate(.84) contrast(1.045) brightness(1.035);
}

.ss3k--v3 .ss3k__shade {
	background:
		linear-gradient(90deg, rgba(2, 3, 5, .985) 0%, rgba(4, 5, 7, .88) 24%, rgba(7, 8, 10, .43) 46%, rgba(8, 9, 11, .055) 72%),
		linear-gradient(180deg, rgba(2, 3, 5, .18), transparent 43%, rgba(2, 3, 5, .65));
}

.ss3k--v3 .ss3k__chapter .ss3k__future-grid,
.ss3k--v3 .ss3k__chapter .ss3k__ambient {
	opacity: var(--ss3k-colour-wash, .06);
}

.ss3k--v3 .ss3k__ambient i {
	background: radial-gradient(circle, rgba(170, 211, 236, .12), rgba(82, 111, 142, .035) 44%, transparent 73%);
}

.ss3k--v3 .ss3k__folds {
	opacity: .42;
}

.ss3k--v3 .ss3k__folds i {
	background:
		linear-gradient(104deg, rgba(4, 8, 14, .98), rgba(37, 62, 83, .42) 46%, rgba(3, 7, 12, .98)),
		radial-gradient(circle at 50% 50%, rgba(152, 205, 233, .08), transparent 55%);
	box-shadow: inset -1px 0 rgba(194, 225, 240, .12), inset 0 0 70px rgba(67, 112, 145, .08);
}

/* There is enough physical room in the CTA deck: use it. These labels are now
 * readable at a glance instead of looking like captions inside large buttons. */
.ss3k__actions {
	gap: 12px;
}

.ss3k__actions .ss3k__cta,
.ss3k--v3 .ss3k__cta {
	min-height: 66px;
	padding: 0 10px 0 28px;
	gap: 20px;
	font-size: clamp(16px, 1vw, 19px);
	font-weight: 760;
	letter-spacing: -.012em;
}

.ss3k__actions .ss3k__cta i,
.ss3k--v3 .ss3k__cta i {
	width: 44px;
	height: 44px;
}

.ss3k__actions .ss3k__cta--secondary,
.ss3k--v3 .ss3k__cta--secondary {
	min-height: 66px;
	padding: 0 27px;
	font-size: clamp(16px, .92vw, 18px);
}

@media (max-height: 820px) and (min-width: 1181px) {
	.ss3k__actions .ss3k__cta,
	.ss3k--v3 .ss3k__cta {
		min-height: 62px;
		font-size: clamp(15px, .92vw, 18px);
	}

	.ss3k__actions .ss3k__cta i,
	.ss3k--v3 .ss3k__cta i {
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 700px) {
	.ss3k__actions .ss3k__cta,
	.ss3k--v3 .ss3k__cta {
		min-height: 52px;
		padding-left: 17px;
		gap: 12px;
		font-size: 14px;
		letter-spacing: 0;
	}

	.ss3k__actions .ss3k__cta--secondary,
	.ss3k--v3 .ss3k__cta--secondary {
		min-height: 52px;
		padding: 0 16px;
		font-size: 14px;
	}

	.ss3k__actions .ss3k__cta i,
	.ss3k--v3 .ss3k__cta i {
		width: 36px;
		height: 36px;
	}
}

/* ========================================================================
 * v1.4.0 — THE FUTURE IS NOW
 *
 * This is the authoritative presentation layer. Earlier rules remain for
 * upgrade-safe class compatibility; the authored systems below own the final
 * composition, grading, controls, signal and responsive behaviour.
 * ===================================================================== */

.ss3k {
	--ss3k-display-font: "Aptos Display", "Segoe UI Variable Display", "Inter Tight", Inter, "Helvetica Neue", Arial, sans-serif;
	--ss3k-copy-font: Inter, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--ss3k-surface: rgba(7, 13, 21, .78);
	--ss3k-line: rgba(219, 237, 249, .2);
	margin-bottom: 0;
	font-family: var(--ss3k-copy-font);
	background: #05070b;
	contain: layout paint style;
}

.ss3k__stage {
	height: min(var(--ss3k-height, 900px), 94svh);
	min-height: 680px;
	background: #05070b;
}

.ss3k__chapter {
	filter: none !important;
	transform: translate3d(0, 0, 0) scale(1);
	contain: layout paint style;
}

.ss3k__chapter.is-active {
	opacity: 1;
}

.ss3k__media {
	background: #05070b;
}

.ss3k__media img,
.ss3k__video,
.ss3k--v3 .ss3k__media img,
.ss3k--v3 .ss3k__video {
	object-position: var(--ss3k-focal, 50% 50%);
	filter:
		sepia(var(--ss3k-image-warmth, .07))
		saturate(var(--ss3k-scene-saturation, var(--ss3k-image-saturation, .96)))
		contrast(var(--ss3k-scene-contrast, var(--ss3k-image-contrast, 1.03)))
		brightness(1.025);
}

.ss3k__shade,
.ss3k--v3 .ss3k__shade {
	z-index: 2;
	opacity: var(--ss3k-scene-darkness, var(--ss3k-overlay-strength, .42));
	background:
		linear-gradient(90deg, rgba(2, 3, 5, .99) 0%, rgba(3, 4, 6, .92) 22%, rgba(4, 5, 7, .58) 43%, rgba(5, 6, 8, .12) 69%, transparent 82%),
		linear-gradient(180deg, rgba(1, 2, 4, .2), transparent 43%, rgba(1, 2, 4, .78));
}

.ss3k__shade::after {
	content: "";
	position: absolute;
	inset: 0;
	opacity: var(--ss3k-scene-vignette, var(--ss3k-vignette, .28));
	background: radial-gradient(ellipse at 54% 44%, transparent 42%, rgba(0, 0, 0, .72) 100%);
}

.ss3k__shade::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: var(--ss3k-readability, .54);
	background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .28) 44%, transparent 72%);
}

.ss3k__grain {
	opacity: .055;
}

.ss3k__ambient,
.ss3k--v3 .ss3k__ambient {
	opacity: var(--ss3k-scene-atmosphere, var(--ss3k-colour-wash, .04));
	mix-blend-mode: screen;
	filter: opacity(var(--ss3k-motion-intensity, .72));
}

.ss3k__future-grid,
.ss3k--v3 .ss3k__future-grid {
	opacity: var(--ss3k-scene-atmosphere, var(--ss3k-colour-wash, .04));
	filter: opacity(var(--ss3k-motion-intensity, .72));
}

.ss3k__folds,
.ss3k--v3 .ss3k__folds {
	opacity: .24;
	filter: opacity(var(--ss3k-motion-intensity, .72));
}

/* The continuous Ivy Signal sits outside every chapter, so a scene transition
 * can never restart it. Only its composition changes between story beats. */
.ss3k__signal {
	position: absolute;
	inset: 0;
	z-index: 5;
	overflow: hidden;
	pointer-events: none;
	opacity: var(--ss3k-scene-signal, var(--ss3k-signal-intensity, .58));
	mix-blend-mode: screen;
	filter: opacity(var(--ss3k-motion-intensity, .72));
	transform: translate3d(0, 0, 0) scale(1);
	transform-origin: center;
	transition: transform 1.35s var(--ss3k-ease), opacity .6s ease;
}

.ss3k__signal svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

.ss3k__signal path {
	fill: none;
	stroke-linecap: round;
	vector-effect: non-scaling-stroke;
}

.ss3k__signal-bed {
	stroke: rgba(116, 184, 224, .11);
	stroke-width: 1.2;
}

.ss3k__signal-flow {
	stroke: url("#ss3k-signal-gradient");
	stroke: rgba(151, 220, 255, .74);
	stroke-width: 2;
	stroke-dasharray: 1 18 70 26;
	filter: drop-shadow(0 0 7px rgba(65, 167, 255, .64));
	animation: ss3k-signal-travel 13.5s linear infinite;
}

.ss3k__signal i {
	position: absolute;
	left: 67%;
	top: 50%;
	width: 8px;
	height: 8px;
	border: 1px solid rgba(255, 255, 255, .92);
	border-radius: 50%;
	background: var(--ss3k-accent);
	box-shadow: 0 0 10px #fff, 0 0 28px var(--ss3k-accent);
	animation: ss3k-signal-breathe 3.8s ease-in-out infinite;
}

.ss3k[data-signal-scene="manage"] .ss3k__signal {
	transform: translate3d(2%, -5%, 0) scale(.95) rotate(-1deg);
}

.ss3k[data-signal-scene="discover"] .ss3k__signal {
	transform: translate3d(-2%, -10%, 0) scale(1.07) rotate(2deg);
}

.ss3k[data-signal-scene="studio"] .ss3k__signal {
	transform: translate3d(1%, -17%, 0) scale(1.13) rotate(-2deg);
}

@keyframes ss3k-signal-travel {
	to { stroke-dashoffset: -460; }
}

@keyframes ss3k-signal-breathe {
	0%, 100% { opacity: .38; transform: scale(.72); }
	50% { opacity: 1; transform: scale(1.2); }
}

/* The architectural fold follows the signal without replacing it. */
.ss3k__architectural-fold {
	position: absolute;
	inset: 0;
	z-index: 10;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	overflow: hidden;
	pointer-events: none;
	opacity: 0;
	perspective: 1600px;
}

.ss3k__architectural-fold i {
	background:
		linear-gradient(104deg, rgba(3, 7, 12, .96), rgba(35, 69, 94, .4) 47%, rgba(2, 5, 9, .98)),
		linear-gradient(90deg, transparent, rgba(167, 221, 249, .1), transparent);
	border-right: 1px solid rgba(201, 232, 249, .12);
	transform-origin: right center;
}

.ss3k__architectural-fold.is-running {
	opacity: 1;
	animation: ss3k-fold-shell 1.55s var(--ss3k-ease) both;
}

.ss3k__architectural-fold.is-running i {
	animation: ss3k-architectural-fold 1.55s var(--ss3k-ease) both;
}

.ss3k__architectural-fold.is-running i:nth-child(2) { animation-delay: .055s; }
.ss3k__architectural-fold.is-running i:nth-child(3) { animation-delay: .11s; }
.ss3k__architectural-fold.is-backward { transform: scaleX(-1); }

@keyframes ss3k-fold-shell {
	0%, 100% { opacity: 0; }
	12%, 64% { opacity: .78; }
}

@keyframes ss3k-architectural-fold {
	0% { opacity: 0; transform: translateX(118%) rotateY(-82deg); }
	38% { opacity: .72; transform: translateX(28%) rotateY(-24deg); }
	72% { opacity: .3; transform: translateX(-18%) rotateY(22deg); }
	100% { opacity: 0; transform: translateX(-112%) rotateY(82deg); }
}

/* Authoritative typography and composition. */
.ss3k__chapter .ss3k__content,
.ss3k--v3 .ss3k__chapter .ss3k__content,
.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
	z-index: 7;
	top: var(--ss3k-scene-content-y, var(--ss3k-content-y, 20%));
	left: var(--ss3k-scene-content-x, var(--ss3k-content-x, 4%));
	width: min(var(--ss3k-copy-width, 60vw), 1080px);
	transform: none;
	text-align: left;
}

.ss3k__chapter[data-text-align="center"] .ss3k__content { text-align: center; }
.ss3k__chapter[data-text-align="right"] .ss3k__content { text-align: right; }

.ss3k__chapter[data-composition="right"] .ss3k__content {
	right: 4.5%;
	left: auto;
	width: min(48vw, 850px);
}

.ss3k__chapter[data-composition="center"] .ss3k__content {
	right: 10%;
	left: 10%;
	width: auto;
	max-width: 1180px;
	margin: auto;
	text-align: center;
}

.ss3k__chapter[data-composition="wide"] .ss3k__content {
	top: 18%;
	width: min(68vw, 1220px);
}

.ss3k__chapter[data-composition="interface"] .ss3k__content {
	width: min(49vw, 860px);
}

.ss3k__chapter[data-composition="split"] .ss3k__content {
	top: 23%;
	width: min(51vw, 880px);
}

.ss3k__scene-label {
	margin: 0 0 10px;
	color: rgba(235, 245, 251, .58);
	font-size: 10px;
	font-weight: 760;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.ss3k__eyebrow,
.ss3k--v3 .ss3k__eyebrow {
	gap: 11px;
	margin: 0 0 17px;
	font-size: var(--ss3k-eyebrow-size, 11px);
	font-weight: 760;
	letter-spacing: .16em;
}

.ss3k__eyebrow span {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	border-color: rgba(154, 211, 244, .38);
	background: rgba(4, 9, 15, .32);
	backdrop-filter: blur(8px);
}

.ss3k__chapter .ss3k__headline,
.ss3k--v3 .ss3k__chapter .ss3k__headline,
.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
	max-width: 1080px;
	color: #f7fafc;
	font-family: var(--ss3k-display-font);
	font-size: clamp(
		var(--ss3k-scene-headline-min, var(--ss3k-headline-min, 86px)),
		var(--ss3k-scene-headline-fluid, var(--ss3k-headline-fluid, 6.64vw)),
		var(--ss3k-scene-headline-max, var(--ss3k-headline-max, 136px))
	);
	font-weight: var(--ss3k-headline-weight, 900);
	font-variation-settings: "wght" var(--ss3k-headline-weight, 900);
	line-height: var(--ss3k-headline-leading, .84);
	letter-spacing: var(--ss3k-headline-tracking, -.05em);
	text-wrap: initial;
	text-shadow: 0 12px 44px rgba(0, 0, 0, .34);
	filter: none;
}

.ss3k__headline > span {
	padding: 0 .08em .055em 0;
}

.ss3k__headline .ss3k__text,
.ss3k--v3 .ss3k__headline .ss3k__text {
	color: #f7fafc;
	background: none;
	-webkit-text-fill-color: currentColor;
	text-shadow: none;
}

.ss3k__headline .ss3k__accent,
.ss3k--v3 .ss3k__headline .ss3k__accent {
	color: var(--ss3k-accent);
	background: none;
	-webkit-text-fill-color: currentColor;
	filter: none !important;
	text-shadow: 0 0 24px color-mix(in srgb, var(--ss3k-accent) 24%, transparent);
}

.ss3k__strapline,
.ss3k--v3 .ss3k__strapline {
	max-width: 760px;
	margin-top: 15px;
	font-size: clamp(12px, 1vw, var(--ss3k-strapline-size, 16px));
	font-weight: 820;
	line-height: 1.3;
	letter-spacing: .145em;
}

.ss3k__description,
.ss3k--v3 .ss3k__description {
	max-width: min(650px, 90%);
	margin-top: 14px;
	color: rgba(243, 248, 251, .9);
	font-size: var(--ss3k-scene-paragraph, var(--ss3k-paragraph-size, 19px));
	font-weight: 470;
	line-height: 1.48;
	letter-spacing: -.012em;
	text-shadow: 0 7px 22px rgba(0, 0, 0, .4);
}

.ss3k__stat {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin: 15px 0 0;
	color: rgba(236, 245, 250, .66);
	font-size: 11px;
	font-weight: 730;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.ss3k__stat b {
	color: #fff;
	font-size: 23px;
	letter-spacing: -.025em;
}

/* Buttons use the available space for labels, not decorative circles. */
.ss3k__actions,
.ss3k--v3 .ss3k__actions {
	gap: var(--ss3k-button-gap, 12px);
	margin-top: 21px;
}

.ss3k__actions .ss3k__cta,
.ss3k--v3 .ss3k__cta {
	display: inline-flex;
	gap: 12px;
	justify-content: center;
	min-height: 58px;
	margin: 0;
	padding: 0 23px;
	color: #fff !important;
	font-size: var(--ss3k-scene-button-size, var(--ss3k-button-size, 17px));
	font-weight: 720;
	line-height: 1.1;
	letter-spacing: -.012em;
	text-transform: none;
	border: 1px solid rgba(137, 206, 247, .66);
	border-radius: var(--ss3k-button-radius, 12px);
	background: linear-gradient(135deg, #1385f4, #075fd7 58%, #0749ae);
	box-shadow: 0 13px 30px rgba(0, 72, 173, .24), inset 0 1px rgba(255, 255, 255, .24);
	transition: transform .28s var(--ss3k-ease), border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.ss3k__actions .ss3k__cta:hover,
.ss3k--v3 .ss3k__cta:hover {
	color: #fff !important;
	border-color: rgba(205, 235, 252, .9);
	background: linear-gradient(135deg, #2699ff, #0870ea 58%, #0754c3);
	box-shadow: 0 17px 35px rgba(0, 86, 199, .3), 0 0 0 4px rgba(77, 172, 255, .08);
	transform: translateY(-2px);
}

.ss3k__actions .ss3k__cta i,
.ss3k--v3 .ss3k__cta i {
	display: grid;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	color: currentColor;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.ss3k__actions .ss3k__cta i svg,
.ss3k--v3 .ss3k__cta i svg {
	width: 17px;
	height: 17px;
}

.ss3k__actions .ss3k__cta--secondary,
.ss3k--v3 .ss3k__cta--secondary {
	min-height: 58px;
	padding: 0 22px;
	color: rgba(249, 252, 254, .94) !important;
	border-color: rgba(211, 232, 245, .32);
	background: rgba(5, 10, 16, .34);
	box-shadow: inset 0 1px rgba(255, 255, 255, .07);
	backdrop-filter: blur(12px);
}

.ss3k--buttons-outline .ss3k__cta {
	border-color: rgba(184, 225, 250, .56);
	background: rgba(5, 13, 22, .4);
	box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.ss3k--buttons-underline .ss3k__cta {
	min-height: 48px;
	padding: 0 2px;
	border: 0;
	border-bottom: 1px solid rgba(166, 219, 250, .58);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.ss3k--buttons-compact .ss3k__cta {
	min-height: 48px;
	padding: 0 17px;
}

.ss3k--buttons-no-icon .ss3k__cta i { display: none; }

/* Interfaces are product moments, not decorative HUD clutter. */
.ss3k .ss3k__proof,
.ss3k.ss3k--v3 .ss3k__chapter[data-slug] .ss3k__proof {
	z-index: 6;
	top: 50%;
	right: clamp(26px, 4.2vw, 78px);
	width: min(31vw, 520px);
	filter:
		opacity(var(--ss3k-proof-opacity, 1))
		drop-shadow(0 28px 58px rgba(0, 0, 0, .4))
		drop-shadow(0 0 28px rgba(54, 144, 211, var(--ss3k-interface-glow, .24)));
	scale: var(--ss3k-proof-scale, 1);
	transform-origin: right center;
}

.ss3k__chapter[data-proof-position="left"] .ss3k__proof {
	right: auto;
	left: clamp(26px, 4.2vw, 78px);
	transform-origin: left center;
}

.ss3k__chapter[data-proof-position="center"] .ss3k__proof {
	right: 50%;
	width: min(50vw, 760px);
	margin-right: min(-25vw, -380px);
	transform-origin: center;
}

.ss3k__chapter[data-composition="interface"] .ss3k__proof {
	top: 48%;
	width: min(36vw, 610px);
}

.ss3k__chapter[data-composition="wide"] .ss3k__proof {
	top: 57%;
	width: min(24vw, 420px);
}

.ss3k__proof-image {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(166, 217, 247, .24);
	border-radius: 14px;
	box-shadow: inset 0 1px rgba(255, 255, 255, .08);
}

.ss3k--v1 .ss3k__proof,
.ss3k--v1 .ss3k__signal,
.ss3k--v1 .ss3k__future-grid,
.ss3k--v1 .ss3k__folds,
.ss3k--v1 .ss3k__ambient {
	display: none !important;
}

.ss3k--v1 .ss3k__shade {
	opacity: min(.9, calc(var(--ss3k-overlay-strength, .42) + .2));
	background:
		linear-gradient(90deg, rgba(3, 4, 6, .98), rgba(4, 5, 7, .78) 32%, rgba(5, 6, 8, .2) 64%, transparent 82%),
		linear-gradient(180deg, transparent 52%, rgba(2, 3, 5, .62));
}

.ss3k--v1 .ss3k__headline {
	font-weight: 820;
	letter-spacing: -.04em;
}

.ss3k--v2 .ss3k__signal,
.ss3k--v2 .ss3k__future-grid {
	display: none;
}

.ss3k--v1 .ss3k__architectural-fold,
.ss3k--v2 .ss3k__architectural-fold {
	display: none !important;
}

.ss3k--v2 .ss3k__proof {
	width: min(32vw, 540px);
}

.ss3k--v3 .ss3k__stage {
	background: #05070b;
}

/* Integrated controls: quiet by default and obvious the moment they are used. */
.ss3k__chrome {
	z-index: 12;
}

.ss3k__city {
	top: 26px;
	right: clamp(24px, 3.5vw, 66px);
	font-size: 9px;
	opacity: .78;
}

.ss3k__rail {
	right: auto;
	bottom: 20px;
	left: clamp(24px, 4vw, 72px);
	display: flex;
	width: auto;
	gap: 7px;
}

.ss3k__rail-item {
	display: grid;
	width: 31px;
	height: 26px;
	padding: 0 0 7px;
	place-items: center;
	border: 0;
	background: transparent;
}

.ss3k__rail-item::before {
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: rgba(231, 242, 249, .2);
	box-shadow: none;
}

.ss3k__rail-item.is-active::before {
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, var(--ss3k-accent), #fff);
	box-shadow: 0 0 8px color-mix(in srgb, var(--ss3k-accent) 42%, transparent);
}

.ss3k__rail-number {
	font-size: 8px;
	font-weight: 780;
}

.ss3k__rail-label {
	display: none;
}

.ss3k__transport {
	right: clamp(20px, 3.4vw, 64px);
	bottom: 12px;
	display: flex;
	gap: 5px;
	min-height: 42px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	transform: none;
}

.ss3k__icon-button,
.ss3k__pause {
	width: 40px;
	min-width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(222, 237, 246, .15);
	border-radius: 50%;
	background: rgba(3, 8, 13, .32);
	box-shadow: inset 0 1px rgba(255, 255, 255, .04);
	backdrop-filter: blur(9px);
}

.ss3k__pause-glyph {
	width: 38px;
	height: 38px;
	border: 0;
	background: transparent;
	box-shadow: none;
}

[data-ss3k-pause-label] { display: none; }

.ss3k__counter {
	display: flex;
	align-items: center;
	min-width: 53px;
	margin: 0 0 0 4px;
	color: rgba(240, 248, 252, .42);
	font-size: 8px;
	letter-spacing: .1em;
}

.ss3k__counter b {
	margin-right: 5px;
	font-size: 12px;
	font-weight: 720;
}

.ss3k__current-name {
	display: none;
	align-items: center;
	max-width: 170px;
	color: rgba(239, 247, 251, .62);
	font-size: 9px;
	font-weight: 690;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.ss3k__progress,
.ss3k--controls-minimal .ss3k__progress,
.ss3k--controls-dots .ss3k__progress,
.ss3k--controls-hidden .ss3k__progress {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 1px;
	opacity: .44;
	background: rgba(255, 255, 255, .1);
}

.ss3k__progress i {
	background: linear-gradient(90deg, rgba(110, 195, 246, .25), var(--ss3k-accent), #fff);
	box-shadow: 0 0 9px rgba(90, 181, 240, .3);
}

.ss3k--controls-invisible .ss3k__rail,
.ss3k--controls-invisible .ss3k__transport {
	opacity: .18;
	transform: translateY(3px);
	transition: opacity .28s ease, transform .28s ease;
}

.ss3k--controls-invisible:hover .ss3k__rail,
.ss3k--controls-invisible:hover .ss3k__transport,
.ss3k--controls-invisible:focus-within .ss3k__rail,
.ss3k--controls-invisible:focus-within .ss3k__transport,
.ss3k--controls-invisible.is-interacting .ss3k__rail,
.ss3k--controls-invisible.is-interacting .ss3k__transport {
	opacity: 1;
	transform: translateY(0);
}

.ss3k--controls-dots .ss3k__rail {
	bottom: 25px;
	gap: 9px;
}

.ss3k--controls-dots .ss3k__rail-item {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 1px solid rgba(226, 241, 250, .42);
	border-radius: 50%;
}

.ss3k--controls-dots .ss3k__rail-item::before,
.ss3k--controls-dots .ss3k__rail-number,
.ss3k--controls-dots .ss3k__rail-label { display: none; }

.ss3k--controls-dots .ss3k__rail-item.is-active {
	border-color: var(--ss3k-accent);
	background: var(--ss3k-accent);
	box-shadow: 0 0 8px var(--ss3k-accent);
}

.ss3k--controls-editorial .ss3k__rail {
	gap: 16px;
}

.ss3k--controls-editorial .ss3k__rail-item {
	display: flex;
	width: auto;
	min-width: 80px;
	gap: 7px;
	justify-content: flex-start;
}

.ss3k--controls-editorial .ss3k__rail-label,
.ss3k--controls-editorial .ss3k__current-name {
	display: flex;
}

.ss3k--controls-legacy .ss3k__rail,
.ss3k--controls-micro .ss3k__rail {
	right: clamp(25px, 3.8vw, 74px);
	bottom: 82px;
	left: clamp(25px, 3.8vw, 74px);
	display: grid;
	grid-template-columns: repeat(var(--ss3k-count, 7), minmax(0, 1fr));
	gap: 0;
}

.ss3k--controls-legacy .ss3k__rail-item,
.ss3k--controls-micro .ss3k__rail-item {
	display: flex;
	width: auto;
	height: 42px;
	justify-content: flex-start;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.ss3k--controls-legacy .ss3k__rail-label,
.ss3k--controls-micro .ss3k__rail-label { display: block; }

.ss3k--controls-hidden .ss3k__rail,
.ss3k--controls-hidden .ss3k__transport,
.ss3k--controls-hidden .ss3k__progress {
	display: none !important;
}

/* Admin-only composition guides are shipped inert on the public page. */
.ss3k__safe-guides {
	display: none;
}

.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides {
	position: absolute;
	inset: 0;
	z-index: 30;
	display: block;
	pointer-events: none;
	border: 1px dashed rgba(129, 207, 255, .35);
}

.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides i,
.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides b,
.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides em,
.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides span {
	position: absolute;
	padding: 3px 6px;
	color: #bfe8ff;
	font-size: 8px;
	font-style: normal;
	font-weight: 760;
	letter-spacing: .08em;
	background: rgba(3, 12, 20, .72);
}

.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides i { top: 8%; left: 4%; right: 4%; border-top: 1px dashed rgba(129, 207, 255, .4); }
.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides b { top: 17%; left: 3%; width: 62%; height: 61%; border: 1px dashed rgba(129, 207, 255, .35); }
.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides em { bottom: 8%; left: 3%; right: 3%; border-bottom: 1px dashed rgba(129, 207, 255, .35); }
.ss3k-admin__preview.is-showing-guides .ss3k__safe-guides span { top: 4%; right: 28%; bottom: 4%; width: 44%; border: 1px dashed rgba(255, 203, 118, .3); }

/* Performance ownership. */
.ss3k.is-runtime-paused .ss3k__media img,
.ss3k.is-runtime-paused .ss3k__video,
.ss3k.is-runtime-paused .ss3k__ambient i,
.ss3k.is-runtime-paused .ss3k__future-grid i,
.ss3k.is-runtime-paused .ss3k__signal-flow,
.ss3k.is-runtime-paused .ss3k__signal i {
	animation-play-state: paused !important;
}

.ss3k--performance-lightweight .ss3k__future-grid,
.ss3k--performance-lightweight .ss3k__grain,
.ss3k--performance-lightweight .ss3k__ambient i:nth-child(n+2) {
	display: none;
}

.ss3k--performance-lightweight .ss3k__signal-flow {
	filter: none;
}

.ss3k--performance-static .ss3k__signal,
.ss3k--performance-static .ss3k__ambient,
.ss3k--performance-static .ss3k__future-grid,
.ss3k--performance-static .ss3k__folds,
.ss3k--performance-static .ss3k__architectural-fold,
.ss3k--performance-static .ss3k__grain,
.ss3k.is-static-runtime .ss3k__signal,
.ss3k.is-static-runtime .ss3k__ambient,
.ss3k.is-static-runtime .ss3k__future-grid,
.ss3k.is-static-runtime .ss3k__folds,
.ss3k.is-static-runtime .ss3k__architectural-fold,
.ss3k.is-static-runtime .ss3k__grain {
	display: none !important;
}

.ss3k--performance-static .ss3k__chrome,
.ss3k.is-static-runtime .ss3k__chrome {
	display: none;
}

/* Short desktop: preserve the complete offer above the fold. */
@media (max-height: 760px) and (min-width: 861px) {
	.ss3k__stage {
		height: min(var(--ss3k-height, 900px), 100svh);
		min-height: 620px;
	}

	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		top: max(11%, calc(var(--ss3k-scene-content-y, var(--ss3k-content-y, 20%)) - 4%));
	}

	.ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(68px, 5.15vw, 96px);
		line-height: .83;
	}

	.ss3k__eyebrow { margin-bottom: 11px; }
	.ss3k__strapline { margin-top: 10px; }
	.ss3k__description { max-width: 610px; margin-top: 10px; font-size: min(var(--ss3k-paragraph-size, 19px), 17px); line-height: 1.38; }
	.ss3k__actions { margin-top: 14px; }
	.ss3k__actions .ss3k__cta,
	.ss3k--v3 .ss3k__cta { min-height: 52px; font-size: min(var(--ss3k-button-size, 17px), 15px); }
	.ss3k .ss3k__proof,
	.ss3k.ss3k--v3 .ss3k__chapter[data-slug] .ss3k__proof { top: 46%; width: min(28vw, 455px); }
}

@media (min-width: 861px) and (max-width: 1180px) {
	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content {
		left: 4.5%;
		width: min(58vw, 720px);
	}

	.ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		font-size: clamp(59px, 7vw, 88px);
	}

	.ss3k .ss3k__proof,
	.ss3k.ss3k--v3 .ss3k__chapter[data-slug] .ss3k__proof {
		right: 3%;
		width: min(33vw, 390px);
	}

	.ss3k--controls-editorial .ss3k__rail-label { display: none; }
}

@media (max-width: 860px) {
	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content,
	.ss3k__chapter[data-composition] .ss3k__content {
		top: auto;
		right: 22px;
		bottom: 88px;
		left: 22px;
		width: auto;
		max-width: none;
		margin: 0;
		text-align: left;
		transform: none;
	}

	.ss3k .ss3k__proof,
	.ss3k.ss3k--v3 .ss3k__chapter[data-slug] .ss3k__proof {
		top: 22%;
		right: 22px;
		width: min(42vw, 360px);
	}
}

/* Mobile is a dedicated composition rather than squeezed desktop. */
@media (max-width: 700px) {
	.ss3k,
	.ss3k--full {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-left: 0;
	}

	.ss3k__stage {
		height: min(900px, 92svh);
		min-height: 680px;
	}

	.ss3k__media img,
	.ss3k__video,
	.ss3k--v3 .ss3k__media img,
	.ss3k--v3 .ss3k__video {
		object-position: var(--ss3k-mobile-focal, var(--ss3k-focal, 50% 42%));
	}

	.ss3k__shade,
	.ss3k--v3 .ss3k__shade {
		opacity: min(.78, calc(var(--ss3k-scene-darkness, var(--ss3k-overlay-strength, .42)) + .18));
		background:
			linear-gradient(0deg, rgba(2, 3, 5, .99) 0%, rgba(3, 4, 6, .93) 30%, rgba(4, 5, 7, .58) 51%, rgba(4, 5, 7, .09) 74%, rgba(3, 4, 6, .23) 100%);
	}

	.ss3k__signal {
		opacity: var(--ss3k-mobile-motion, .42);
		transform: translateY(-10%) scale(1.2);
	}

	.ss3k__future-grid,
	.ss3k__folds { display: none !important; }

	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__content,
	.ss3k__chapter[data-composition] .ss3k__content {
		top: var(--ss3k-scene-mobile-y, auto);
		right: 19px;
		bottom: var(--ss3k-scene-mobile-bottom, 82px);
		left: var(--ss3k-scene-mobile-x, 19px);
		width: auto;
		text-align: left;
	}

	.ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter[data-slug="arrival"] .ss3k__headline {
		max-width: 100%;
		font-size: clamp(
			var(--ss3k-scene-mobile-headline-min, var(--ss3k-mobile-headline-min, 38px)),
			var(--ss3k-scene-mobile-headline-fluid, var(--ss3k-mobile-headline-fluid, 11.4vw)),
			var(--ss3k-scene-mobile-headline-max, var(--ss3k-mobile-headline-max, 64px))
		);
		line-height: .88;
		letter-spacing: -.043em;
	}

	.ss3k__eyebrow,
	.ss3k--v3 .ss3k__eyebrow {
		margin-bottom: 10px;
		font-size: max(9px, calc(var(--ss3k-eyebrow-size, 11px) - 2px));
	}

	.ss3k__eyebrow span {
		width: 29px;
		height: 29px;
	}

	.ss3k__strapline,
	.ss3k--v3 .ss3k__strapline {
		margin-top: 10px;
		font-size: max(10px, calc(var(--ss3k-strapline-size, 16px) - 5px));
		letter-spacing: .105em;
	}

	.ss3k__description,
	.ss3k--v3 .ss3k__description {
		display: block;
		max-width: 100%;
		margin-top: 9px;
		overflow: visible;
		font-size: var(--ss3k-scene-mobile-paragraph, 15px);
		line-height: 1.43;
		-webkit-line-clamp: initial;
	}

	.ss3k__actions,
	.ss3k--v3 .ss3k__actions {
		align-items: stretch;
		gap: 8px;
		margin-top: 13px;
	}

	.ss3k__actions .ss3k__cta,
	.ss3k--v3 .ss3k__cta,
	.ss3k__actions .ss3k__cta--secondary,
	.ss3k--v3 .ss3k__cta--secondary {
		min-height: 52px;
		padding: 0 16px;
		font-size: max(14px, calc(var(--ss3k-scene-button-size, var(--ss3k-button-size, 17px)) - 2px));
	}

	.ss3k--buttons-mobile-full .ss3k__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ss3k--buttons-mobile-full .ss3k__cta {
		width: 100%;
	}

	.ss3k .ss3k__proof,
	.ss3k.ss3k--v3 .ss3k__chapter[data-slug] .ss3k__proof {
		display: none;
	}

	.ss3k__chapter[data-mobile-proof="1"] .ss3k__proof {
		top: 18%;
		right: 16px;
		display: block;
		width: min(56vw, 270px);
		opacity: .74;
	}

	.ss3k__city {
		top: 19px;
		right: 17px;
		font-size: 8px;
	}

	.ss3k__rail {
		bottom: 18px;
		left: 18px;
		gap: 5px;
	}

	.ss3k__rail-item {
		width: 24px;
	}

	.ss3k__transport {
		right: 12px;
		bottom: 7px;
	}

	.ss3k__icon-button,
	.ss3k__pause {
		width: 42px;
		min-width: 42px;
		height: 42px;
	}

	.ss3k__pause-glyph {
		width: 40px;
		height: 40px;
	}

	.ss3k__counter,
	.ss3k__current-name { display: none; }

	.ss3k--mobile-controls-dots .ss3k__rail-item {
		width: 7px;
		height: 7px;
		padding: 0;
		border: 1px solid rgba(226, 241, 250, .42);
		border-radius: 50%;
	}

	.ss3k--mobile-controls-dots .ss3k__rail-item::before,
	.ss3k--mobile-controls-dots .ss3k__rail-number,
	.ss3k--mobile-controls-dots .ss3k__rail-label { display: none; }

	.ss3k--mobile-controls-dots .ss3k__rail-item.is-active {
		background: var(--ss3k-accent);
		box-shadow: 0 0 8px var(--ss3k-accent);
	}

	.ss3k--mobile-controls-hidden .ss3k__rail,
	.ss3k--mobile-controls-hidden .ss3k__transport,
	.ss3k--mobile-controls-hidden .ss3k__progress {
		display: none !important;
	}

	.ss3k--mobile-disabled {
		display: none !important;
	}

	.ss3k--mobile-static .ss3k__chapter:not(:first-child),
	.ss3k--mobile-static .ss3k__chrome,
	.ss3k--mobile-static .ss3k__signal,
	.ss3k--mobile-static .ss3k__ambient,
	.ss3k--mobile-static .ss3k__architectural-fold {
		display: none !important;
	}
}

@media (max-width: 390px) {
	.ss3k__stage { min-height: 650px; }
	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k__chapter[data-composition] .ss3k__content { right: 16px; bottom: 74px; left: 16px; }
	.ss3k__description { font-size: 14px; }
	.ss3k__actions .ss3k__cta,
	.ss3k--v3 .ss3k__cta { min-height: 49px; font-size: 13px; }
}

@media (max-height: 520px) and (max-width: 900px) and (orientation: landscape) {
	.ss3k__stage {
		height: 100svh;
		min-height: 440px;
	}

	.ss3k__chapter .ss3k__content,
	.ss3k--v3 .ss3k__chapter .ss3k__content,
	.ss3k__chapter[data-composition] .ss3k__content {
		top: 13%;
		right: auto;
		bottom: auto;
		left: 4%;
		width: 58%;
	}

	.ss3k__chapter .ss3k__headline,
	.ss3k--v3 .ss3k__chapter .ss3k__headline {
		font-size: clamp(38px, 7.2vw, 58px);
	}

	.ss3k__description { max-width: 560px; font-size: 13px; line-height: 1.35; }
	.ss3k__strapline { margin-top: 7px; }
	.ss3k__actions { margin-top: 9px; }
	.ss3k__actions .ss3k__cta,
	.ss3k--v3 .ss3k__cta { min-height: 44px; font-size: 13px; }
}

/* Keep the search proof below the subject's face on landscape canvases. */
@media (min-width: 861px) {
	.ss3k .ss3k__chapter[data-slug="discover"] .ss3k__proof,
	.ss3k.ss3k--v3 .ss3k__chapter[data-slug="discover"] .ss3k__proof {
		top: 62%;
		right: clamp(20px, 3vw, 58px);
		width: min(29vw, 450px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.ss3k__signal,
	.ss3k__architectural-fold,
	.ss3k__ambient,
	.ss3k__future-grid,
	.ss3k__folds,
	.ss3k__grain {
		display: none !important;
	}

	.ss3k__headline i,
	.ss3k__eyebrow,
	.ss3k__strapline,
	.ss3k__description,
	.ss3k__actions,
	.ss3k__proof {
		opacity: 1 !important;
		clip-path: none !important;
		transform: none !important;
		filter: none !important;
	}
}
