@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Unbounded";
	src: url("../fonts/unbounded-600-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "IBM Plex Mono";
	src: url("../fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
	--vacuum: #050608;
	--vacuum-soft: #0c0e12;
	--porcelain: #f4f5f1;
	--paper: #e9ece7;
	--titanium: #9da6a3;
	--ion: #79e7ff;
	--bloom: #ff79aa;
	--signal: #d9ff66;
	--line-dark: rgba(244, 245, 241, 0.18);
	--line-light: rgba(5, 6, 8, 0.16);
	--header-height: 84px;
	--gutter: clamp(20px, 4vw, 72px);
	--ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
	--z-base: 0;
	--z-content: 10;
	--z-header: 100;
}

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

html {
	scroll-behavior: smooth;
	background: var(--vacuum);
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	min-width: 320px;
	margin: 0;
	overflow-x: clip;
	background: var(--vacuum);
	color: var(--porcelain);
	font-family: "Manrope", "Helvetica Neue", sans-serif;
	font-size: clamp(16px, 1.15vw, 19px);
	font-weight: 400;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body,
a,
button {
	cursor: default;
}

a,
button {
	touch-action: manipulation;
}

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

a[href],
button {
	cursor: pointer;
}

button,
input,
textarea,
select {
	font: inherit;
}

img,
picture,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

::selection {
	background: var(--signal);
	color: var(--vacuum);
}

:focus-visible {
	outline: 3px solid var(--porcelain);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px var(--vacuum);
}

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

.skip-link {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	transform: translateY(-160%);
	border-radius: 999px;
	background: var(--signal);
	color: var(--vacuum);
	font-size: 14px;
	font-weight: 700;
	transition: transform 180ms var(--ease-out);
}

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

.site-shell {
	min-height: 100vh;
	overflow: clip;
}

.site-header {
	position: fixed;
	z-index: var(--z-header);
	top: 0;
	right: 0;
	left: 0;
	height: var(--header-height);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: 14px var(--gutter);
	color: var(--porcelain);
	transition:
		color 260ms var(--ease-out),
		background-color 260ms var(--ease-out),
		border-color 260ms var(--ease-out);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header::before {
	content: "";
	position: absolute;
	z-index: -1;
	inset: 0;
	border-bottom: 1px solid transparent;
	background: rgba(5, 6, 8, 0);
	transition: inherit;
}

.site-header.is-compact::before {
	border-color: var(--line-dark);
	background: rgba(5, 6, 8, 0.74);
}

@supports (backdrop-filter: blur(18px)) {
	.site-header.is-compact::before {
		background: rgba(5, 6, 8, 0.54);
		backdrop-filter: blur(18px) saturate(125%);
	}
}

.site-header[data-tone="light"] {
	color: var(--vacuum);
}

.site-header[data-tone="light"].is-compact::before {
	border-color: var(--line-light);
	background: rgba(244, 245, 241, 0.82);
}

@supports (backdrop-filter: blur(18px)) {
	.site-header[data-tone="light"].is-compact::before {
		background: rgba(244, 245, 241, 0.68);
	}
}

.brand {
	position: relative;
	width: 138px;
	min-height: 44px;
	display: grid;
	align-items: center;
	flex: 0 0 auto;
}

.brand img {
	width: 100%;
	filter: invert(1);
	transition: filter 260ms var(--ease-out);
}

.site-header[data-tone="light"] .brand img {
	filter: none;
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: clamp(18px, 2.4vw, 42px);
	font-family: "IBM Plex Mono", monospace;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

.site-nav a {
	position: relative;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
}

.site-nav a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 8px;
	left: 0;
	height: 1px;
	transform: scaleX(0);
	transform-origin: 100% 50%;
	background: currentColor;
	transition: transform 220ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
	transform: scaleX(1);
	transform-origin: 0 50%;
}

.site-nav__cta {
	min-width: 92px;
	justify-content: center;
	padding: 0 18px;
	border: 1px solid currentColor;
	border-radius: 999px;
	transition:
		background-color 180ms var(--ease-out),
		color 180ms var(--ease-out);
}

.site-nav__cta::after {
	display: none;
}

.site-nav__cta:hover {
	background: var(--porcelain);
	color: var(--vacuum);
}

.site-header[data-tone="light"] .site-nav__cta:hover {
	background: var(--vacuum);
	color: var(--porcelain);
}

.scroll-meter {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	height: 2px;
	overflow: hidden;
}

.scroll-meter span {
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: 0 50%;
	background: linear-gradient(90deg, var(--ion), var(--bloom) 58%, var(--signal));
}

.eyebrow {
	margin: 0 0 22px;
	font-family: "IBM Plex Mono", monospace;
	font-size: clamp(10px, 0.78vw, 12px);
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.3;
	text-transform: uppercase;
}

.button {
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	padding: 0 22px;
	border: 1px solid currentColor;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	transition:
		transform 200ms var(--ease-out),
		background-color 200ms var(--ease-out),
		color 200ms var(--ease-out);
}

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

.button:active {
	transform: translateY(0) scale(0.98);
}

.button--glass {
	border-color: rgba(244, 245, 241, 0.42);
	background: rgba(244, 245, 241, 0.08);
}

.button--glass:hover {
	background: var(--porcelain);
	color: var(--vacuum);
}

.button--light {
	background: var(--porcelain);
	color: var(--vacuum);
}

.scene {
	position: relative;
	overflow: clip;
	isolation: isolate;
}

.scene:not(.scene--hero) {
	height: 245svh;
}

.scene__sticky {
	position: sticky;
	top: 0;
	height: 100svh;
	min-height: 680px;
	overflow: clip;
}

.scene__copy {
	position: absolute;
	z-index: 20;
	width: min(40vw, 580px);
	color: var(--porcelain);
}

.scene__copy h2 {
	margin: 0;
	font-size: clamp(50px, 6.6vw, 112px);
	font-weight: 500;
	letter-spacing: -0.062em;
	line-height: 0.93;
}

.scene__copy > p:not(.eyebrow) {
	max-width: 500px;
	margin: 30px 0 0;
	color: rgba(244, 245, 241, 0.72);
	font-size: clamp(16px, 1.22vw, 20px);
	line-height: 1.6;
}

.scene__copy--dark {
	color: var(--vacuum);
}

.scene__copy--dark > p:not(.eyebrow) {
	color: rgba(5, 6, 8, 0.66);
}

.scene__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 34px;
}

.scene__meta span {
	min-height: 36px;
	display: inline-flex;
	align-items: center;
	padding: 0 14px;
	border: 1px solid var(--line-light);
	border-radius: 999px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.scene__meta--light span {
	border-color: var(--line-dark);
}

.scene__number {
	position: absolute;
	z-index: 5;
	right: var(--gutter);
	bottom: 20px;
	margin: 0;
	color: currentColor;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(90px, 15vw, 260px);
	font-weight: 600;
	letter-spacing: -0.08em;
	line-height: 0.8;
	opacity: 0.055;
	pointer-events: none;
}

.motion-layer {
	--px: 0px;
	--py: 0px;
	--pr: 0deg;
	--ps: 1;
	transform: translate3d(var(--px), var(--py), 0) rotate(var(--pr)) scale(var(--ps));
	transform-origin: center;
	backface-visibility: hidden;
}

.scene.is-active .motion-layer,
.range.is-active .motion-layer {
	will-change: transform;
}

html.motion-ready [data-reveal] {
	opacity: 0;
	transform: translate3d(0, 26px, 0);
	transition:
		opacity 700ms var(--ease-out),
		transform 760ms var(--ease-out);
}

html.motion-ready [data-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.hero {
	min-height: 100svh;
	background:
		radial-gradient(circle at 78% 42%, rgba(121, 231, 255, 0.15), transparent 23%),
		radial-gradient(circle at 89% 76%, rgba(255, 121, 170, 0.12), transparent 26%),
		linear-gradient(155deg, #030406 10%, #090b11 58%, #101017 100%);
	color: var(--porcelain);
}

.hero__grid {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.38;
	background-image:
		linear-gradient(rgba(244, 245, 241, 0.045) 1px, transparent 1px),
		linear-gradient(90deg, rgba(244, 245, 241, 0.045) 1px, transparent 1px);
	background-position: center;
	background-size: clamp(60px, 7vw, 110px) clamp(60px, 7vw, 110px);
	mask-image: linear-gradient(to right, transparent, #000 48%, #000);
}

.hero__flare {
	position: absolute;
	z-index: -1;
	top: 6%;
	right: 3%;
	width: min(82vw, 1120px);
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		conic-gradient(from 210deg, transparent 0 16%, rgba(121, 231, 255, 0.42) 27%, transparent 38% 59%, rgba(255, 121, 170, 0.31) 72%, transparent 84%),
		radial-gradient(circle, rgba(244, 245, 241, 0.08), transparent 64%);
	filter: blur(42px);
	opacity: 0.56;
	pointer-events: none;
}

.hero__signal {
	position: absolute;
	z-index: 5;
	top: var(--header-height);
	bottom: 0;
	left: 50%;
	width: 1px;
	background: linear-gradient(transparent, rgba(121, 231, 255, 0.66) 38%, rgba(255, 121, 170, 0.56) 69%, transparent);
	opacity: 0.52;
	pointer-events: none;
}

.hero__signal span {
	position: absolute;
	top: 43%;
	left: 50%;
	width: 9px;
	height: 9px;
	border: 1px solid var(--ion);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	box-shadow: 0 0 34px 8px rgba(121, 231, 255, 0.42);
}

.hero__frame {
	width: min(100%, 1760px);
	min-height: 100svh;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
	align-items: center;
	margin: 0 auto;
	padding: calc(var(--header-height) + 60px) var(--gutter) 110px;
}

.hero__copy {
	position: relative;
	z-index: 20;
	max-width: 680px;
	padding-bottom: 2vh;
}

.hero__title {
	margin: 0;
	font-size: clamp(62px, 7.8vw, 142px);
	font-weight: 500;
	letter-spacing: -0.072em;
	line-height: 0.88;
}

.hero__title span {
	display: block;
}

.hero__title span:last-child {
	margin-left: clamp(0px, 2vw, 36px);
	color: transparent;
	-webkit-text-stroke: 1px rgba(244, 245, 241, 0.92);
}

.hero__intro {
	max-width: 510px;
	margin: 34px 0 30px;
	color: rgba(244, 245, 241, 0.72);
	font-size: clamp(17px, 1.28vw, 21px);
	line-height: 1.55;
}

.hero__stage {
	position: relative;
	z-index: 10;
	width: min(62vw, 910px);
	aspect-ratio: 1;
	display: grid;
	place-items: center;
	justify-self: end;
	margin-right: min(-7vw, -40px);
}

.hero__stage::before {
	content: "";
	position: absolute;
	width: 74%;
	aspect-ratio: 1;
	border: 1px solid rgba(244, 245, 241, 0.18);
	border-radius: 50%;
	box-shadow:
		inset 0 0 90px rgba(121, 231, 255, 0.07),
		0 0 100px rgba(255, 121, 170, 0.05);
}

.hero__orbit {
	grid-area: 1 / 1;
	border: 1px solid rgba(244, 245, 241, 0.22);
	border-radius: 50%;
	pointer-events: none;
}

.hero__orbit::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--ion);
	box-shadow: 0 0 28px rgba(121, 231, 255, 0.86);
}

.hero__orbit--outer {
	position: relative;
	width: 88%;
	aspect-ratio: 1;
	border-style: dashed;
	opacity: 0.45;
}

.hero__orbit--inner {
	position: relative;
	width: 62%;
	aspect-ratio: 1;
	opacity: 0.5;
}

.hero__product {
	z-index: 4;
	grid-area: 1 / 1;
	width: min(58vw, 820px);
}

.hero__product img {
	width: 100%;
	-webkit-mask-image:
		linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
	-webkit-mask-composite: source-in;
	mask-image:
		linear-gradient(to right, transparent 0%, #000 14%, #000 86%, transparent 100%),
		linear-gradient(to bottom, transparent 0%, #000 9%, #000 91%, transparent 100%);
	mask-composite: intersect;
}

.hero__tag {
	position: absolute;
	z-index: 8;
	display: grid;
	gap: 5px;
	padding: 12px 15px;
	border: 1px solid rgba(244, 245, 241, 0.28);
	background: rgba(5, 6, 8, 0.78);
	color: var(--porcelain);
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.12em;
	line-height: 1.2;
	text-transform: uppercase;
}

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

.hero__tag--top {
	top: 19%;
	right: 6%;
}

.hero__tag--bottom {
	bottom: 18%;
	left: 8%;
}

.hero__word {
	position: absolute;
	right: -0.03em;
	bottom: -0.1em;
	left: -0.03em;
	z-index: 2;
	overflow: hidden;
	color: rgba(244, 245, 241, 0.05);
	font-family: "Unbounded", sans-serif;
	font-size: clamp(82px, 14.2vw, 260px);
	font-weight: 600;
	letter-spacing: -0.08em;
	line-height: 0.8;
	text-align: center;
	white-space: nowrap;
	pointer-events: none;
}

.scroll-cue {
	position: absolute;
	z-index: 12;
	bottom: 28px;
	left: var(--gutter);
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(244, 245, 241, 0.48);
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.scroll-cue span {
	width: 30px;
	height: 1px;
	background: currentColor;
}

.statement {
	position: relative;
	min-height: 104svh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 140px var(--gutter);
	overflow: clip;
	background: var(--porcelain);
	color: var(--vacuum);
}

.statement__signal {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: linear-gradient(rgba(5, 6, 8, 0.7), rgba(5, 6, 8, 0.08));
}

.statement__signal::before {
	content: "";
	position: absolute;
	top: 42%;
	left: 50%;
	width: 14px;
	height: 14px;
	border: 1px solid var(--vacuum);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	background: var(--signal);
	box-shadow: 0 0 0 12px rgba(217, 255, 102, 0.2);
}

.statement > .eyebrow,
.statement h2,
.statement__principles {
	position: relative;
	z-index: 2;
}

.statement h2 {
	width: min(100%, 1450px);
	margin: 0;
	font-size: clamp(46px, 7.4vw, 132px);
	font-weight: 500;
	letter-spacing: -0.068em;
	line-height: 0.94;
}

.statement h2 span {
	display: block;
}

.statement h2 span:last-child {
	margin-left: 15vw;
}

.statement__principles {
	width: min(50%, 730px);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	align-self: flex-end;
	margin-top: 90px;
	border-top: 1px solid var(--line-light);
}

.statement__principles p {
	margin: 0;
	padding: 18px 16px 0 0;
	font-size: 13px;
	font-weight: 600;
}

.statement__principles span {
	display: block;
	margin-bottom: 7px;
	color: rgba(5, 6, 8, 0.68);
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.1em;
}

.materials {
	background:
		linear-gradient(90deg, rgba(5, 6, 8, 0.045) 1px, transparent 1px),
		var(--porcelain);
	background-size: 9.5vw 100%;
	color: var(--vacuum);
}

.materials > .scene__copy {
	top: 19%;
	left: var(--gutter);
}

.materials__stage {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 63%;
}

.materials__aura {
	position: absolute;
	top: 20%;
	right: -10%;
	width: 82%;
	aspect-ratio: 1;
	border-radius: 50%;
	background: conic-gradient(from 210deg, rgba(121, 231, 255, 0.8), rgba(217, 255, 102, 0.72), rgba(255, 121, 170, 0.74), rgba(121, 231, 255, 0.8));
	filter: blur(76px);
	opacity: 0.35;
}

.material-card {
	position: absolute;
	z-index: 5;
	margin: 0;
}

.material-card picture,
.material-card img {
	width: 100%;
}

.material-card img {
	filter: drop-shadow(0 30px 38px rgba(17, 24, 28, 0.16));
}

.material-card figcaption {
	margin-top: 10px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-transform: uppercase;
}

.material-card--life {
	top: 5%;
	right: 7%;
	width: min(24vw, 420px);
}

.material-card--life img {
	border-radius: 200px 200px 18px 18px;
}

.material-card--wallet {
	right: 24%;
	bottom: -8%;
	width: min(34vw, 620px);
}

.material-card--book {
	top: 28%;
	left: 2%;
	width: min(15vw, 255px);
}

.magnetic {
	background:
		radial-gradient(circle at 71% 50%, rgba(121, 231, 255, 0.18), transparent 21%),
		radial-gradient(circle at 82% 74%, rgba(255, 121, 170, 0.12), transparent 27%),
		linear-gradient(125deg, #030508, #07121a 52%, #080711);
	color: var(--porcelain);
}

.magnetic::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(244, 245, 241, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(244, 245, 241, 0.04) 1px, transparent 1px);
	background-size: 80px 80px;
	mask-image: radial-gradient(circle at 73% 50%, #000, transparent 48%);
	pointer-events: none;
}

.magnetic > .scene__copy {
	top: 18%;
	left: var(--gutter);
}

.magnetic__field {
	position: absolute;
	top: 50%;
	left: 72%;
	width: min(72vw, 1080px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.magnetic__ring {
	position: absolute;
	top: 50%;
	left: 50%;
	border: 1px solid rgba(121, 231, 255, 0.34);
	border-radius: 50%;
	transform: translate(-50%, -50%) translate3d(var(--px), var(--py), 0) rotate(var(--pr)) scale(var(--ps));
}

.magnetic__ring::before,
.magnetic__ring::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.magnetic__ring::before {
	top: -4px;
	left: 50%;
	width: 8px;
	height: 8px;
	background: var(--ion);
	box-shadow: 0 0 28px rgba(121, 231, 255, 0.82);
}

.magnetic__ring::after {
	right: 12%;
	bottom: 8%;
	width: 5px;
	height: 5px;
	background: var(--bloom);
	box-shadow: 0 0 24px rgba(255, 121, 170, 0.9);
}

.magnetic__ring--one {
	width: 92%;
	height: 92%;
	border-style: dashed;
	opacity: 0.58;
}

.magnetic__ring--two {
	width: 66%;
	height: 66%;
	opacity: 0.72;
}

.magnetic__ring--three {
	width: 39%;
	height: 39%;
	border-color: rgba(244, 245, 241, 0.22);
	box-shadow:
		inset 0 0 100px rgba(121, 231, 255, 0.08),
		0 0 90px rgba(121, 231, 255, 0.06);
}

.magnetic__product {
	position: absolute;
	z-index: 12;
	right: 7%;
	bottom: -19%;
	width: min(48vw, 730px);
	filter: drop-shadow(0 42px 50px rgba(0, 0, 0, 0.56));
}

.magnetic__product img {
	width: 100%;
}

.magnetic__legend {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	margin-top: 38px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.magnetic__legend span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.magnetic__legend i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--ion);
	box-shadow: 0 0 14px rgba(121, 231, 255, 0.72);
}

.magnetic__legend span:nth-child(2) i {
	background: var(--bloom);
	box-shadow: 0 0 14px rgba(255, 121, 170, 0.72);
}

.magnetic__legend span:nth-child(3) i {
	background: var(--signal);
	box-shadow: 0 0 14px rgba(217, 255, 102, 0.6);
}

.magnetic__annotation {
	position: absolute;
	z-index: 16;
	width: 190px;
	border-top: 1px solid rgba(244, 245, 241, 0.36);
	padding-top: 8px;
	color: rgba(244, 245, 241, 0.62);
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.magnetic__annotation--a {
	top: 22%;
	right: 6%;
}

.magnetic__annotation--b {
	right: 39%;
	bottom: 10%;
}

.tablet {
	background:
		radial-gradient(circle at 24% 52%, rgba(217, 255, 102, 0.12), transparent 26%),
		radial-gradient(circle at 52% 66%, rgba(121, 231, 255, 0.11), transparent 34%),
		#080a0d;
	color: var(--porcelain);
}

.tablet__panels {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.tablet__panel {
	position: absolute;
	border: 1px solid rgba(244, 245, 241, 0.15);
}

.tablet__panel--one {
	top: 8%;
	bottom: 7%;
	left: -7%;
	width: 45%;
	transform: translate3d(var(--px), var(--py), 0) rotate(var(--pr)) scale(var(--ps)) skewX(-10deg);
	background: linear-gradient(150deg, rgba(121, 231, 255, 0.07), transparent 62%);
}

.tablet__panel--two {
	top: -10%;
	bottom: -9%;
	left: 31%;
	width: 34%;
	transform: translate3d(var(--px), var(--py), 0) rotate(var(--pr)) scale(var(--ps)) skewX(-10deg);
	background: linear-gradient(160deg, rgba(217, 255, 102, 0.08), transparent 48%);
}

.tablet__panel--three {
	top: 18%;
	right: -9%;
	width: 42%;
	height: 52%;
	transform: translate3d(var(--px), var(--py), 0) rotate(var(--pr)) scale(var(--ps)) skewX(-10deg);
	background: linear-gradient(150deg, rgba(255, 121, 170, 0.07), transparent 56%);
}

.tablet__canvas {
	position: absolute;
	z-index: 12;
	top: 12%;
	left: 2.5%;
	width: min(56vw, 860px);
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid rgba(244, 245, 241, 0.3);
	border-radius: 28px;
	background:
		radial-gradient(circle at 48% 42%, rgba(121, 231, 255, 0.08), transparent 56%),
		#07090d;
	box-shadow:
		0 50px 90px rgba(0, 0, 0, 0.5),
		0 0 0 1px rgba(121, 231, 255, 0.06);
}

.tablet__canvas picture,
.tablet__canvas img {
	width: 100%;
	height: 100%;
}

.tablet__canvas img {
	object-fit: cover;
}

.tablet__scan {
	position: absolute;
	z-index: 3;
	top: 0;
	bottom: 0;
	left: 52%;
	width: 1px;
	background: linear-gradient(transparent, rgba(121, 231, 255, 0.84) 36%, rgba(255, 121, 170, 0.74) 62%, transparent);
	box-shadow: 0 0 36px 7px rgba(121, 231, 255, 0.24);
	pointer-events: none;
}

.tablet__copy {
	top: 19%;
	right: var(--gutter);
	width: min(36vw, 540px);
}

.optics {
	background:
		linear-gradient(rgba(244, 245, 241, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(244, 245, 241, 0.035) 1px, transparent 1px),
		#07070a;
	background-size: 78px 78px, 78px 78px, auto;
	color: var(--porcelain);
}

.optics__spectrum {
	position: absolute;
	top: 5%;
	right: -10%;
	width: 78%;
	aspect-ratio: 1;
	border-radius: 50%;
	background:
		conic-gradient(from 180deg, rgba(121, 231, 255, 0.42), transparent 24%, rgba(255, 121, 170, 0.32) 46%, transparent 68%, rgba(217, 255, 102, 0.28)),
		radial-gradient(circle, rgba(244, 245, 241, 0.08), transparent 58%);
	filter: blur(46px);
	opacity: 0.62;
}

.optics__line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 1px;
	background: linear-gradient(transparent, rgba(121, 231, 255, 0.64) 36%, rgba(255, 121, 170, 0.5) 68%, transparent);
	opacity: 0.5;
}

.optics > .scene__copy {
	top: 17%;
	left: var(--gutter);
}

.optics__stage {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 68%;
	height: 100%;
}

.optic-card {
	position: absolute;
	z-index: 12;
	width: min(32vw, 540px);
	margin: 0;
}

.optic-card picture {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid rgba(244, 245, 241, 0.24);
	border-radius: 24px;
	background: #090c12;
	box-shadow: 0 40px 70px rgba(0, 0, 0, 0.38);
}

.optic-card img {
	width: 100%;
}

.optic-card figcaption {
	display: grid;
	gap: 6px;
	margin-top: 13px;
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.optic-card figcaption span {
	color: rgba(244, 245, 241, 0.52);
}

.optic-card figcaption strong {
	font-size: 11px;
	font-weight: 500;
}

.optic-card--camera {
	top: 8%;
	right: 2%;
}

.optic-card--screen {
	right: 36%;
	bottom: -4%;
}

.optics__lens {
	position: absolute;
	z-index: 18;
	border: 1px solid rgba(244, 245, 241, 0.45);
	border-radius: 50%;
	background: radial-gradient(circle at 33% 27%, rgba(244, 245, 241, 0.16), rgba(121, 231, 255, 0.04) 42%, rgba(5, 6, 8, 0.18));
	box-shadow:
		inset -16px -19px 30px rgba(255, 121, 170, 0.08),
		inset 14px 12px 28px rgba(121, 231, 255, 0.13),
		0 20px 60px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(2px);
}

.optics__lens--one {
	top: 38%;
	right: 29%;
	width: min(17vw, 270px);
	aspect-ratio: 1;
}

.optics__lens--two {
	top: 18%;
	right: 42%;
	width: min(8vw, 130px);
	aspect-ratio: 1;
}

.optics__lens--three {
	right: 10%;
	bottom: 8%;
	width: min(11vw, 180px);
	aspect-ratio: 1;
}

.range {
	position: relative;
	min-height: 120svh;
	padding: 150px var(--gutter);
	overflow: clip;
	background: var(--porcelain);
	color: var(--vacuum);
}

.range__intro {
	position: relative;
	z-index: 3;
}

.range h2 {
	margin: 0;
	font-size: clamp(60px, 9vw, 150px);
	font-weight: 500;
	letter-spacing: -0.075em;
	line-height: 0.88;
}

.range__track {
	position: relative;
	left: -10vw;
	width: max-content;
	display: flex;
	align-items: center;
	gap: clamp(22px, 3vw, 54px);
	margin-top: 100px;
	color: transparent;
	font-family: "Unbounded", sans-serif;
	font-size: clamp(68px, 11vw, 190px);
	font-weight: 600;
	letter-spacing: -0.06em;
	line-height: 0.86;
	-webkit-text-stroke: 1px rgba(5, 6, 8, 0.42);
	white-space: nowrap;
}

.range__track i {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--ion), var(--bloom));
}

.range__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 120px;
	border-top: 1px solid var(--line-light);
}

.range__list article {
	min-height: 230px;
	padding: 22px 28px 30px 0;
	border-right: 1px solid var(--line-light);
}

.range__list article + article {
	padding-left: 28px;
}

.range__list article:last-child {
	border-right: 0;
}

.range__list span {
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.1em;
}

.range__list h3 {
	margin: 58px 0 12px;
	font-size: clamp(28px, 3.1vw, 52px);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1;
}

.range__list p {
	max-width: 280px;
	margin: 0;
	color: rgba(5, 6, 8, 0.6);
	font-size: 15px;
}

.retail {
	position: relative;
	min-height: 112svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 160px var(--gutter) 110px;
	overflow: clip;
	background:
		radial-gradient(circle at 50% 45%, rgba(121, 231, 255, 0.1), transparent 28%),
		radial-gradient(circle at 63% 63%, rgba(255, 121, 170, 0.09), transparent 26%),
		var(--vacuum);
	color: var(--porcelain);
	text-align: center;
}

.retail__glow {
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(78vw, 1100px);
	aspect-ratio: 1.9;
	transform: translate(-50%, -50%);
	border: 1px solid rgba(244, 245, 241, 0.1);
	border-radius: 50%;
	box-shadow:
		0 0 120px rgba(121, 231, 255, 0.07),
		inset 0 0 120px rgba(255, 121, 170, 0.04);
	pointer-events: none;
}

.retail__signal {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1px;
	height: 24%;
	background: linear-gradient(transparent, var(--ion));
}

.retail__signal span {
	position: absolute;
	right: 50%;
	bottom: 0;
	width: 12px;
	height: 12px;
	border: 1px solid var(--ion);
	border-radius: 50%;
	transform: translate(50%, 50%);
	background: var(--vacuum);
	box-shadow: 0 0 28px 8px rgba(121, 231, 255, 0.28);
}

.retail > *:not(.retail__glow, .retail__signal) {
	position: relative;
	z-index: 2;
}

.retail h2 {
	margin: 0;
	font-size: clamp(54px, 8.8vw, 156px);
	font-weight: 500;
	letter-spacing: -0.072em;
	line-height: 0.9;
}

.retail__intro {
	max-width: 650px;
	margin: 34px auto 0;
	color: rgba(244, 245, 241, 0.62);
	font-size: clamp(16px, 1.2vw, 20px);
}

.retail__actions {
	width: min(100%, 930px);
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 70px;
}

.retail__email {
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex: 1 1 auto;
	padding: 0 8px 0 0;
	border-bottom: 1px solid rgba(244, 245, 241, 0.5);
	font-size: clamp(24px, 3.2vw, 52px);
	font-weight: 500;
	letter-spacing: -0.045em;
	line-height: 1;
	text-align: left;
	transition:
		border-color 180ms var(--ease-out),
		color 180ms var(--ease-out);
}

.retail__email svg {
	flex: 0 0 auto;
	transition: transform 240ms var(--ease-out);
}

.retail__email:hover {
	border-color: var(--ion);
	color: var(--ion);
}

.retail__email:hover svg {
	transform: translate(3px, -3px);
}

.copy-email {
	min-width: 142px;
	min-height: 52px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	padding: 0 17px;
	border: 1px solid var(--line-dark);
	border-radius: 999px;
	background: rgba(244, 245, 241, 0.06);
	color: var(--porcelain);
	font-size: 12px;
	font-weight: 600;
	transition:
		background 180ms var(--ease-out),
		color 180ms var(--ease-out),
		transform 180ms var(--ease-out);
}

.copy-email:hover {
	background: var(--porcelain);
	color: var(--vacuum);
}

.copy-email:active {
	transform: scale(0.97);
}

.copy-email.is-copied {
	border-color: var(--signal);
	background: var(--signal);
	color: var(--vacuum);
}

.retail__note {
	margin: 46px 0 0;
	color: rgba(244, 245, 241, 0.68);
	font-family: "IBM Plex Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.site-footer {
	min-height: 90px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 20px var(--gutter);
	border-top: 1px solid var(--line-dark);
	background: var(--vacuum);
	color: rgba(244, 245, 241, 0.48);
	font-family: "IBM Plex Mono", monospace;
	font-size: 9px;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}

.site-footer a {
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	transition: color 180ms var(--ease-out);
}

.site-footer a:hover {
	color: var(--porcelain);
}

.content-page {
	min-height: calc(100svh - 90px);
	padding: calc(var(--header-height) + 100px) var(--gutter) 120px;
	background: var(--vacuum);
	color: var(--porcelain);
}

.content-page__inner {
	width: min(100%, 860px);
	margin: 0 auto;
}

.content-page h1 {
	margin: 0 0 32px;
	font-size: clamp(52px, 8vw, 112px);
	font-weight: 500;
	letter-spacing: -0.065em;
	line-height: 0.92;
}

.content-page--center {
	display: grid;
	place-items: center;
	text-align: center;
}

.content-page--center .button {
	margin-top: 24px;
}

@media (max-width: 1180px) {
	.hero__frame {
		grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
	}

	.hero__title {
		font-size: clamp(58px, 8.6vw, 106px);
	}

	.scene__copy {
		width: min(43vw, 510px);
	}

	.materials__stage {
		width: 59%;
	}

	.material-card--life {
		width: 28vw;
	}

	.material-card--wallet {
		right: 16%;
		width: 38vw;
	}

	.material-card--book {
		left: -4%;
	}

	.magnetic__product {
		right: 2%;
	}

	.tablet__canvas {
		left: -2%;
		width: 59vw;
	}

	.tablet__copy {
		right: 4vw;
		width: 39vw;
	}

	.optic-card {
		width: min(35vw, 490px);
	}
}

@media (max-width: 820px) {
	:root {
		--header-height: 72px;
		--gutter: 20px;
	}

	.admin-bar .site-header {
		top: 46px;
	}

	.site-header {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.brand {
		width: 112px;
	}

	.site-nav {
		gap: 10px;
	}

	.site-nav a:not(.site-nav__cta) {
		display: none;
	}

	.site-nav__cta {
		min-width: 86px;
		padding: 0 15px;
	}

	.scene:not(.scene--hero) {
		height: 190svh;
	}

	.scene__sticky {
		min-height: 620px;
	}

	.scene__copy {
		top: 13% !important;
		right: var(--gutter) !important;
		left: var(--gutter) !important;
		width: auto !important;
	}

	.scene__copy h2 {
		font-size: clamp(46px, 12.8vw, 72px);
	}

	.scene__copy > p:not(.eyebrow) {
		max-width: 520px;
		margin-top: 18px;
		font-size: 16px;
		line-height: 1.5;
	}

	.scene__meta {
		margin-top: 20px;
	}

	.scene__number {
		right: 12px;
		bottom: 8px;
		font-size: 35vw;
	}

	.hero {
		min-height: max(100svh, 820px);
	}

	.hero__grid {
		mask-image: linear-gradient(to bottom, transparent, #000 44%, #000);
	}

	.hero__signal {
		left: 75%;
	}

	.hero__frame {
		min-height: max(100svh, 820px);
		display: block;
		padding-top: calc(var(--header-height) + 58px);
		padding-bottom: 60px;
	}

	.hero__copy {
		max-width: 590px;
	}

	.hero__title {
		font-size: clamp(52px, 15vw, 90px);
		line-height: 0.9;
	}

	.hero__title span:last-child {
		margin-left: 0;
	}

	.hero__intro {
		max-width: 440px;
		margin-top: 22px;
		margin-bottom: 22px;
		font-size: 16px;
	}

	.hero__stage {
		position: absolute;
		right: -13vw;
		bottom: -7vw;
		width: 94vw;
		margin: 0;
	}

	.hero__product {
		width: 88vw;
	}

	.hero__tag--top {
		top: 11%;
		right: 24%;
	}

	.hero__tag--bottom {
		bottom: 19%;
		left: 4%;
	}

	.hero__word {
		bottom: 0;
		font-size: 19vw;
	}

	.scroll-cue {
		display: none;
	}

	.statement {
		min-height: 100svh;
		padding-top: 110px;
		padding-bottom: 110px;
	}

	.statement__signal {
		left: 78%;
	}

	.statement h2 {
		font-size: clamp(44px, 12.5vw, 76px);
		line-height: 0.96;
	}

	.statement h2 span:last-child {
		margin-top: 0.3em;
		margin-left: 8vw;
	}

	.statement__principles {
		width: 100%;
		grid-template-columns: 1fr;
		align-self: auto;
		margin-top: 64px;
	}

	.statement__principles p {
		min-height: 56px;
		display: grid;
		grid-template-columns: 38px 1fr;
		align-items: center;
		padding: 0;
		border-bottom: 1px solid var(--line-light);
	}

	.statement__principles span {
		margin: 0;
	}

	.materials > .scene__copy {
		z-index: 20;
	}

	.materials__stage {
		top: 48%;
		width: 100%;
		height: 52%;
	}

	.material-card--life {
		top: 5%;
		right: 2%;
		width: 37vw;
	}

	.material-card--wallet {
		right: 13%;
		bottom: -8%;
		width: 65vw;
	}

	.material-card--book {
		top: 30%;
		left: -1%;
		width: 25vw;
	}

	.material-card figcaption {
		display: none;
	}

	.magnetic > .scene__copy {
		z-index: 22;
	}

	.magnetic__field {
		top: 69%;
		left: 58%;
		width: 120vw;
	}

	.magnetic__product {
		right: -8%;
		bottom: -23%;
		width: min(90vw, 640px);
	}

	.magnetic__legend {
		margin-top: 22px;
	}

	.magnetic__annotation {
		display: none;
	}

	.tablet__copy {
		z-index: 22;
	}

	.tablet__canvas {
		top: auto;
		bottom: -4%;
		left: 5%;
		width: 90vw;
		border-radius: 18px;
	}

	.tablet__panel--one {
		left: -24%;
		width: 68%;
	}

	.tablet__panel--two {
		left: 27%;
		width: 51%;
	}

	.tablet__panel--three {
		right: -22%;
		width: 62%;
	}

	.optics > .scene__copy {
		z-index: 26;
	}

	.optics__line {
		left: 72%;
	}

	.optics__stage {
		top: 52%;
		width: 100%;
		height: 48%;
	}

	.optic-card {
		width: 61vw;
	}

	.optic-card--camera {
		top: 0;
		right: -7%;
	}

	.optic-card--screen {
		right: auto;
		bottom: -10%;
		left: -7%;
	}

	.optic-card picture {
		border-radius: 16px;
	}

	.optic-card figcaption {
		display: none;
	}

	.optics__lens--one {
		top: 26%;
		right: 33%;
		width: 31vw;
	}

	.optics__lens--two {
		top: 10%;
		right: 49%;
		width: 15vw;
	}

	.optics__lens--three {
		width: 20vw;
	}

	.range {
		min-height: auto;
		padding-top: 110px;
		padding-bottom: 100px;
	}

	.range h2 {
		font-size: clamp(54px, 14vw, 86px);
	}

	.range__track {
		left: -5vw;
		margin-top: 70px;
		font-size: 18vw;
	}

	.range__track i {
		width: 12px;
		height: 12px;
	}

	.range__list {
		grid-template-columns: 1fr;
		margin-top: 80px;
	}

	.range__list article {
		min-height: 150px;
		padding: 20px 0 24px !important;
		border-right: 0;
		border-bottom: 1px solid var(--line-light);
	}

	.range__list h3 {
		margin-top: 35px;
	}

	.retail {
		min-height: 100svh;
		padding-top: 140px;
		padding-bottom: 80px;
	}

	.retail h2 {
		font-size: clamp(52px, 13.8vw, 86px);
	}

	.retail__actions {
		display: block;
		margin-top: 54px;
	}

	.retail__email {
		min-height: 68px;
		font-size: clamp(21px, 6vw, 35px);
	}

	.copy-email {
		margin-top: 22px;
	}

	.site-footer {
		flex-direction: column;
		justify-content: center;
		padding-top: 28px;
		padding-bottom: 28px;
		text-align: center;
	}
}

@media (max-width: 430px) {
	.eyebrow {
		margin-bottom: 16px;
	}

	.hero__title {
		font-size: clamp(49px, 14vw, 61px);
	}

	.hero__intro {
		max-width: 330px;
	}

	.hero__stage {
		right: -17vw;
		bottom: -2vw;
		width: 104vw;
	}

	.hero__product {
		width: 98vw;
	}

	.hero__tag {
		padding: 9px 11px;
		font-size: 10px;
	}

	.hero__tag strong {
		font-size: 11px;
	}

	.scene__copy h2 {
		font-size: clamp(44px, 12.6vw, 57px);
	}

	.scene__meta span {
		min-height: 32px;
		padding-right: 10px;
		padding-left: 10px;
		font-size: 8px;
	}

	.magnetic__legend {
		gap: 8px 15px;
		font-size: 8px;
	}

	.tablet__canvas {
		bottom: 0;
	}

	.retail__intro {
		font-size: 15px;
	}

	.retail__email svg {
		width: 24px;
		height: 24px;
	}
}

@media (min-width: 431px) and (max-width: 820px) {
	.hero__stage {
		right: -10vw;
		bottom: -12vw;
		width: 82vw;
	}

	.hero__product {
		width: 78vw;
	}
}

@media (max-height: 720px) and (orientation: landscape) {
	.hero__frame {
		padding-top: calc(var(--header-height) + 24px);
		padding-bottom: 36px;
	}

	.hero__stage {
		width: min(54vw, 540px);
		margin-right: -3vw;
	}

	.hero__product {
		width: min(50vw, 500px);
	}

	.scene__sticky {
		min-height: 560px;
	}

	.scene__copy {
		top: 14%;
	}

	.scene__copy h2 {
		font-size: clamp(44px, 5.8vw, 78px);
	}

	.scene__copy > p:not(.eyebrow) {
		margin-top: 18px;
	}

	.material-card--life {
		top: -10%;
	}

	.tablet__canvas {
		top: 3%;
	}
}

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

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}

	.scene:not(.scene--hero) {
		height: auto;
	}

	.scene__sticky {
		position: relative;
	}

	.motion-layer {
		transform: none !important;
		will-change: auto !important;
	}

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

	.scroll-meter {
		display: none;
	}
}
