:root {
	color-scheme: dark;

	--background: #06050a;
	--background-soft: #0a0810;
	--surface: #0f0d16;
	--surface-strong: #15121f;
	--surface-elevated: #1a1627;
	--surface-glass: rgb(15 13 22 / 74%);

	--border: rgb(255 255 255 / 9%);
	--border-strong: rgb(255 255 255 / 16%);
	--border-accent: rgb(139 92 255 / 52%);

	--text: #ffffff;
	--text-soft: #c9c4d4;
	--text-muted: #8d879a;

	--accent: #8b5cff;
	--accent-bright: #a987ff;
	--accent-deep: #5b2bd6;
	--accent-blue: #6a8cff;
	--success: #64d98b;

	--shadow-small: 0 12px 32px rgb(0 0 0 / 28%);
	--shadow-medium: 0 26px 70px rgb(0 0 0 / 40%);
	--shadow-large: 0 40px 120px rgb(0 0 0 / 55%);

	--page-width: 1240px;
	--content-padding: clamp(18px, 4vw, 54px);

	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		sans-serif;

	background: var(--background);
	color: var(--text);

	font-synthesis: none;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-width: 320px;
	min-height: 100%;
	scroll-behavior: smooth;

	background: var(--background);
}

body {
	min-width: 320px;
	min-height: 100vh;
	min-height: 100dvh;
	margin: 0;

	overflow-x: hidden;

	background:
		radial-gradient(
			circle at 15% -10%,
			rgb(139 92 255 / 18%),
			transparent 32%
		),
		radial-gradient(
			circle at 88% 8%,
			rgb(77 116 255 / 12%),
			transparent 28%
		),
		linear-gradient(
			180deg,
			#08060d 0%,
			#06050a 38%,
			#050409 100%
		);

	color: var(--text);
}

body::before {
	content: "";

	width: 100%;
	height: 100%;

	position: fixed;
	inset: 0;
	z-index: -2;

	background-image:
		linear-gradient(
			rgb(255 255 255 / 2%) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgb(255 255 255 / 2%) 1px,
			transparent 1px
		);

	background-size: 72px 72px;
	mask-image: linear-gradient(
		to bottom,
		rgb(0 0 0 / 50%),
		transparent 60%
	);

	pointer-events: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

button {
	color: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

button {
	border: 0;
}

.site-shell {
	width: min(100%, var(--page-width));
	margin: 0 auto;
	padding:
		max(18px, env(safe-area-inset-top))
		var(--content-padding)
		max(34px, env(safe-area-inset-bottom));

	position: relative;
}

.site-header {
	min-height: 70px;

	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;

	position: relative;
	z-index: 20;
}

.brand-lockup {
	min-width: 0;

	display: inline-flex;
	align-items: center;
	gap: 13px;

	justify-self: start;
}

.brand-mark {
	width: 44px;
	height: 44px;

	display: grid;
	place-items: center;

	flex: 0 0 auto;

	position: relative;
	overflow: hidden;

	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 15px;

	background:
		linear-gradient(
			145deg,
			rgb(255 255 255 / 18%),
			rgb(255 255 255 / 3%)
		),
		linear-gradient(
			145deg,
			#191426,
			#0b0910
		);

	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 12%),
		0 12px 36px rgb(0 0 0 / 34%);
}

.brand-mark::after {
	content: "";

	width: 40px;
	height: 40px;

	position: absolute;
	top: -25px;
	right: -18px;

	border-radius: 50%;

	background: rgb(139 92 255 / 34%);
	filter: blur(8px);
}

.brand-mark svg {
	width: 26px;
	height: 26px;

	position: relative;
	z-index: 1;
}

.brand-mark-center {
	color: var(--accent-bright);
}

.wordmark {
	font-size: 0.98rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.22em;
	white-space: nowrap;
}

.desktop-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.desktop-navigation a {
	position: relative;

	color: var(--text-muted);

	font-size: 0.9rem;
	font-weight: 700;

	transition:
		color 160ms ease,
		transform 160ms ease;
}

.desktop-navigation a::after {
	content: "";

	width: 0;
	height: 2px;

	position: absolute;
	left: 0;
	bottom: -7px;

	border-radius: 999px;

	background: var(--accent-bright);

	transition: width 180ms ease;
}

.desktop-navigation a:hover {
	color: var(--text);
}

.desktop-navigation a:hover::after {
	width: 100%;
}

.header-action {
	min-height: 44px;
	padding: 0 18px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	justify-self: end;

	border: 1px solid var(--border-strong);
	border-radius: 999px;

	background: rgb(255 255 255 / 5%);
	color: var(--text-soft);

	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 5%);

	font-size: 0.88rem;
	font-weight: 800;

	transition:
		background 160ms ease,
		border-color 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.header-action:hover {
	border-color: rgb(255 255 255 / 26%);
	background: rgb(255 255 255 / 9%);
	color: var(--text);

	transform: translateY(-1px);
}

.header-action:active {
	transform: scale(0.97);
}

main {
	display: grid;
	gap: clamp(84px, 10vw, 140px);

	padding: clamp(34px, 6vw, 82px) 0 0;
}

.hero-section {
	min-height: 720px;
	padding:
		clamp(50px, 7vw, 92px)
		clamp(28px, 6vw, 78px);

	display: grid;
	grid-template-columns:
		minmax(0, 1.05fr)
		minmax(340px, 0.95fr);
	align-items: center;
	gap: clamp(42px, 7vw, 100px);

	position: relative;
	overflow: hidden;

	border: 1px solid var(--border);
	border-radius: clamp(32px, 5vw, 54px);

	background:
		linear-gradient(
			135deg,
			rgb(255 255 255 / 7%),
			rgb(255 255 255 / 1%) 42%,
			transparent 72%
		),
		linear-gradient(
			150deg,
			#110e19 0%,
			#0b0910 52%,
			#08070c 100%
		);

	box-shadow:
		var(--shadow-large),
		inset 0 1px 0 rgb(255 255 255 / 7%);
}

.hero-section::after {
	content: "";

	width: calc(100% - 40px);
	height: 1px;

	position: absolute;
	left: 20px;
	bottom: 20px;

	background: linear-gradient(
		90deg,
		transparent,
		rgb(255 255 255 / 10%),
		transparent
	);
}

.hero-background {
	position: absolute;
	inset: 0;

	pointer-events: none;
}

.hero-grid {
	position: absolute;
	inset: 0;

	opacity: 0.24;

	background-image:
		linear-gradient(
			rgb(255 255 255 / 4%) 1px,
			transparent 1px
		),
		linear-gradient(
			90deg,
			rgb(255 255 255 / 4%) 1px,
			transparent 1px
		);

	background-size: 58px 58px;
	mask-image: radial-gradient(
		circle at 70% 42%,
		black,
		transparent 62%
	);
}

.hero-orb {
	position: absolute;

	border-radius: 50%;

	filter: blur(4px);
}

.hero-orb-primary {
	width: 520px;
	height: 520px;

	top: -240px;
	right: -120px;

	background:
		radial-gradient(
			circle at 35% 35%,
			rgb(169 135 255 / 55%),
			rgb(139 92 255 / 17%) 48%,
			transparent 72%
		);
}

.hero-orb-secondary {
	width: 360px;
	height: 360px;

	left: -220px;
	bottom: -220px;

	background:
		radial-gradient(
			circle,
			rgb(87 119 255 / 20%),
			transparent 70%
		);
}

.hero-content {
	position: relative;
	z-index: 3;
}

.availability-pill {
	width: fit-content;
	min-height: 36px;
	padding: 0 13px;

	display: inline-flex;
	align-items: center;
	gap: 9px;

	border: 1px solid rgb(255 255 255 / 12%);
	border-radius: 999px;

	background: rgb(255 255 255 / 5%);
	color: var(--text-soft);

	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 5%);

	font-size: 0.75rem;
	font-weight: 750;
	letter-spacing: 0.02em;
}

.availability-dot {
	width: 8px;
	height: 8px;

	flex: 0 0 auto;

	border-radius: 50%;

	background: var(--success);

	box-shadow:
		0 0 0 5px rgb(100 217 139 / 9%),
		0 0 18px rgb(100 217 139 / 70%);
}

.hero-content h1 {
	max-width: 770px;
	margin: 25px 0 0;

	font-size: clamp(3.45rem, 6vw, 6.8rem);
	font-weight: 950;
	line-height: 0.92;
	letter-spacing: -0.075em;
}

.hero-content h1 span {
	display: block;
}

.hero-title-accent {
	background:
		linear-gradient(
			90deg,
			#ffffff 0%,
			#d8c8ff 32%,
			#9f7cff 72%,
			#7595ff 100%
		);

	background-clip: text;
	-webkit-background-clip: text;

	color: transparent;
}

.hero-copy {
	max-width: 620px;
	margin: 28px 0 0;

	color: var(--text-soft);

	font-size: clamp(1.05rem, 1.5vw, 1.26rem);
	line-height: 1.68;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 13px;

	margin-top: 34px;
}

.button {
	min-height: 52px;
	padding: 0 21px;

	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 11px;

	border: 1px solid transparent;
	border-radius: 17px;

	font-size: 0.92rem;
	font-weight: 850;
	line-height: 1;

	cursor: pointer;

	transition:
		transform 170ms ease,
		background 170ms ease,
		border-color 170ms ease,
		color 170ms ease,
		box-shadow 170ms ease,
		opacity 170ms ease;
}

.button svg {
	width: 19px;
	height: 19px;

	flex: 0 0 auto;
}

.button:hover {
	transform: translateY(-2px);
}

.button:active {
	transform: scale(0.98);
}

.button-primary {
	border-color: #ffffff;

	background: #ffffff;
	color: #08070d;

	box-shadow:
		0 18px 44px rgb(255 255 255 / 10%);
}

.button-primary:hover {
	background: #f2effa;

	box-shadow:
		0 22px 52px rgb(255 255 255 / 14%);
}

.button-secondary {
	border-color: var(--border-strong);

	background: rgb(255 255 255 / 5%);
	color: var(--text);

	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 5%);
}

.button-secondary:hover {
	border-color: rgb(255 255 255 / 25%);
	background: rgb(255 255 255 / 9%);
}

.button-light {
	border-color: #ffffff;

	background: #ffffff;
	color: #08070d;

	box-shadow:
		0 18px 50px rgb(0 0 0 / 25%);
}

.button-light:hover {
	background: #f0edf7;
}

.button-accent {
	border-color: rgb(169 135 255 / 56%);

	background:
		linear-gradient(
			135deg,
			#9b70ff,
			#6d42df
		);

	color: #ffffff;

	box-shadow:
		0 18px 50px rgb(91 43 214 / 32%),
		inset 0 1px 0 rgb(255 255 255 / 22%);
}

.button-accent:hover {
	background:
		linear-gradient(
			135deg,
			#a77eff,
			#7650e6
		);

	box-shadow:
		0 22px 58px rgb(91 43 214 / 42%),
		inset 0 1px 0 rgb(255 255 255 / 24%);
}

.button-ghost {
	border-color: transparent;

	background: transparent;
	color: var(--text-soft);
}

.button-ghost:hover {
	background: rgb(255 255 255 / 5%);
	color: var(--text);
}

.hero-platforms {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 17px;

	margin-top: 32px;
	padding-top: 28px;

	border-top: 1px solid var(--border);
}

.hero-platform {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	color: var(--text-soft);

	font-size: 0.8rem;
	font-weight: 800;
}

.hero-platform svg {
	width: 18px;
	height: 18px;

	color: var(--accent-bright);
}

.hero-platform-copy {
	color: var(--text-muted);

	font-size: 0.78rem;
	line-height: 1.5;
}

.experience-preview {
	min-height: 570px;

	display: grid;
	place-items: center;

	position: relative;
	z-index: 3;
}

.preview-glow {
	width: 460px;
	height: 460px;

	position: absolute;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgb(139 92 255 / 34%),
			rgb(139 92 255 / 9%) 48%,
			transparent 72%
		);

	filter: blur(8px);
}

.preview-phone {
	width: min(100%, 292px);
	height: 570px;

	position: relative;
	z-index: 2;
	overflow: hidden;

	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: 40px;

	background: #08070c;

	box-shadow:
		0 40px 110px rgb(0 0 0 / 65%),
		0 0 0 8px rgb(255 255 255 / 2%),
		inset 0 1px 0 rgb(255 255 255 / 12%);

	transform: rotate(3deg);
}

.preview-phone::before {
	content: "";

	width: 94px;
	height: 22px;

	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 6;

	transform: translateX(-50%);

	border-radius: 999px;

	background: #020204;
}

.preview-phone-top {
	height: 58px;
	padding: 16px 15px 8px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	position: relative;
	z-index: 3;
}

.preview-phone-brand {
	font-size: 0.58rem;
	font-weight: 900;
	letter-spacing: 0.2em;
}

.preview-phone-avatar {
	width: 27px;
	height: 27px;

	display: grid;
	place-items: center;

	border: 1px solid rgb(255 255 255 / 18%);
	border-radius: 50%;

	background:
		linear-gradient(
			145deg,
			#9e76ff,
			#5d35c8
		);

	font-size: 0.68rem;
	font-weight: 900;
}

.preview-video {
	height: calc(100% - 112px);

	position: relative;
	overflow: hidden;

	background:
		linear-gradient(
			145deg,
			#281c47,
			#0b0910 55%,
			#11172f
		);
}

.preview-video-background {
	position: absolute;
	inset: 0;

	display: grid;
	place-items: center;

	background:
		radial-gradient(
			circle at 58% 28%,
			rgb(169 135 255 / 38%),
			transparent 42%
		),
		radial-gradient(
			circle at 32% 72%,
			rgb(91 117 255 / 28%),
			transparent 45%
		),
		linear-gradient(
			150deg,
			#25163d,
			#0b0910 62%
		);
}

.preview-video-ring {
	width: 245px;
	height: 245px;

	position: absolute;

	border: 1px solid rgb(255 255 255 / 13%);
	border-radius: 50%;

	box-shadow:
		0 0 0 36px rgb(255 255 255 / 2%),
		0 0 0 78px rgb(255 255 255 / 1%);
}

.preview-video-nine {
	position: relative;
	z-index: 2;

	color: rgb(255 255 255 / 95%);

	font-size: 10rem;
	font-weight: 950;
	line-height: 1;
	letter-spacing: -0.12em;

	text-shadow:
		0 24px 70px rgb(0 0 0 / 50%);
}

.preview-video-shade {
	position: absolute;
	inset: 0;

	background:
		linear-gradient(
			180deg,
			rgb(0 0 0 / 5%),
			transparent 42%,
			rgb(0 0 0 / 78%) 100%
		);
}

.preview-video-badge {
	padding: 7px 10px;

	position: absolute;
	top: 18px;
	left: 15px;

	border: 1px solid rgb(255 255 255 / 14%);
	border-radius: 999px;

	background: rgb(0 0 0 / 28%);

	font-size: 0.63rem;
	font-weight: 800;

	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

.preview-video-actions {
	display: grid;
	gap: 13px;

	position: absolute;
	right: 14px;
	bottom: 78px;
}

.preview-video-actions span {
	width: 35px;
	height: 35px;

	border: 1px solid rgb(255 255 255 / 15%);
	border-radius: 50%;

	background:
		linear-gradient(
			145deg,
			rgb(255 255 255 / 15%),
			rgb(255 255 255 / 4%)
		);

	box-shadow:
		0 12px 30px rgb(0 0 0 / 22%);
}

.preview-video-copy {
	max-width: 205px;

	display: grid;
	gap: 5px;

	position: absolute;
	left: 16px;
	bottom: 20px;
}

.preview-video-copy strong {
	font-size: 0.86rem;
	line-height: 1.35;
}

.preview-video-copy span {
	color: rgb(255 255 255 / 66%);

	font-size: 0.68rem;
}

.preview-phone-nav {
	height: 54px;
	padding: 0 34px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	background: #08070c;
}

.preview-nav-item,
.preview-nav-create {
	display: grid;
	place-items: center;
}

.preview-nav-item {
	color: rgb(255 255 255 / 42%);
}

.preview-nav-item.active {
	color: #ffffff;
}

.preview-nav-item svg {
	width: 19px;
	height: 19px;
}

.preview-nav-create {
	width: 31px;
	height: 25px;

	border-radius: 8px;

	background:
		linear-gradient(
			90deg,
			#6f90ff,
			#ffffff 48%,
			#9a73ff
		);

	color: #09070e;
}

.preview-nav-create svg {
	width: 16px;
	height: 16px;
}

.floating-card {
	min-width: 184px;
	padding: 12px 14px;

	display: flex;
	align-items: center;
	gap: 11px;

	position: absolute;
	z-index: 4;

	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 16px;

	background: rgb(15 13 22 / 82%);

	box-shadow:
		0 24px 70px rgb(0 0 0 / 40%),
		inset 0 1px 0 rgb(255 255 255 / 7%);

	-webkit-backdrop-filter: blur(22px);
	backdrop-filter: blur(22px);
}

.floating-card span:last-child {
	display: grid;
	gap: 3px;

	color: var(--text-muted);

	font-size: 0.66rem;
}

.floating-card strong {
	color: var(--text);

	font-size: 0.76rem;
}

.floating-card-icon {
	width: 34px;
	height: 34px;

	display: grid;
	place-items: center;

	flex: 0 0 auto;

	border: 1px solid rgb(255 255 255 / 12%);
	border-radius: 11px;

	background:
		linear-gradient(
			145deg,
			rgb(169 135 255 / 26%),
			rgb(255 255 255 / 4%)
		);

	color: var(--accent-bright);
}

.floating-card-icon svg {
	width: 17px;
	height: 17px;
}

.floating-card-discover {
	left: -4px;
	bottom: 108px;
}

.floating-card-create {
	top: 95px;
	right: -25px;
}

.platform-section,
.experience-section {
	display: grid;
	gap: 36px;
}

.section-heading {
	max-width: 720px;
}

.section-kicker {
	margin: 0 0 11px;

	color: var(--accent-bright);

	font-size: 0.72rem;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0.17em;
	text-transform: uppercase;
}

.section-heading h2,
.install-copy h2,
.closing-copy h2 {
	margin: 0;

	font-size: clamp(2.25rem, 4.6vw, 4.6rem);
	font-weight: 920;
	line-height: 0.98;
	letter-spacing: -0.065em;
}

.section-heading > p:last-child,
.install-copy > p,
.closing-copy > p {
	max-width: 650px;
	margin: 19px 0 0;

	color: var(--text-muted);

	font-size: clamp(0.98rem, 1.4vw, 1.12rem);
	line-height: 1.65;
}

.platform-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.platform-card {
	min-width: 0;
	min-height: 570px;
	padding: clamp(28px, 4vw, 44px);

	display: flex;
	flex-direction: column;

	position: relative;
	overflow: hidden;

	border: 1px solid var(--border);
	border-radius: 34px;

	background:
		linear-gradient(
			145deg,
			rgb(255 255 255 / 7%),
			rgb(255 255 255 / 1%) 50%,
			transparent
		),
		var(--surface);

	box-shadow:
		var(--shadow-medium),
		inset 0 1px 0 rgb(255 255 255 / 6%);
}

.platform-card::after {
	content: "";

	width: 280px;
	height: 280px;

	position: absolute;
	right: -150px;
	bottom: -170px;

	border-radius: 50%;

	background: rgb(255 255 255 / 3%);
}

.web-card {
	background:
		radial-gradient(
			circle at 86% 8%,
			rgb(255 255 255 / 10%),
			transparent 32%
		),
		linear-gradient(
			145deg,
			rgb(255 255 255 / 7%),
			rgb(255 255 255 / 1%) 52%
		),
		#111016;
}

.android-card {
	border-color: rgb(139 92 255 / 28%);

	background:
		linear-gradient(
			145deg,
			rgb(169 135 255 / 13%),
			rgb(139 92 255 / 3%) 50%,
			transparent
		),
		#100c19;
}

.android-card-glow {
	width: 400px;
	height: 400px;

	position: absolute;
	top: -250px;
	right: -180px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgb(139 92 255 / 36%),
			transparent 70%
		);

	pointer-events: none;
}

.platform-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;

	position: relative;
	z-index: 2;
}

.platform-icon {
	width: 56px;
	height: 56px;

	display: grid;
	place-items: center;

	border: 1px solid var(--border-strong);
	border-radius: 18px;

	background:
		linear-gradient(
			145deg,
			rgb(255 255 255 / 13%),
			rgb(255 255 255 / 3%)
		);

	color: var(--text-soft);

	box-shadow:
		inset 0 1px 0 rgb(255 255 255 / 7%);
}

.platform-icon-android {
	border-color: rgb(169 135 255 / 24%);

	background:
		linear-gradient(
			145deg,
			rgb(169 135 255 / 25%),
			rgb(139 92 255 / 5%)
		);

	color: var(--accent-bright);
}

.platform-icon svg {
	width: 25px;
	height: 25px;
}

.platform-badge {
	min-height: 30px;
	padding: 0 11px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	border: 1px solid var(--border);
	border-radius: 999px;

	background: rgb(255 255 255 / 4%);
	color: var(--text-muted);

	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.platform-badge-live {
	border-color: rgb(100 217 139 / 20%);

	background: rgb(100 217 139 / 8%);
	color: #81e5a1;
}

.platform-card-copy {
	margin-top: 40px;

	position: relative;
	z-index: 2;
}

.platform-label {
	margin: 0 0 10px;

	color: var(--accent-bright);

	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.platform-card-copy h3 {
	max-width: 480px;
	margin: 0;

	font-size: clamp(2rem, 3.7vw, 3.7rem);
	font-weight: 920;
	line-height: 1;
	letter-spacing: -0.06em;
}

.platform-card-copy > p:last-child {
	max-width: 530px;
	margin: 18px 0 0;

	color: var(--text-muted);

	font-size: 0.98rem;
	line-height: 1.65;
}

.platform-highlights {
	display: grid;
	gap: 12px;

	margin-top: 32px;

	position: relative;
	z-index: 2;
}

.platform-highlights span {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	color: var(--text-soft);

	font-size: 0.84rem;
	font-weight: 700;
}

.platform-highlights svg {
	width: 18px;
	height: 18px;

	color: var(--success);
}

.platform-button {
	width: 100%;
	margin-top: auto;

	position: relative;
	z-index: 2;
}

.release-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;

	margin-top: 28px;

	position: relative;
	z-index: 2;
}

.release-stat {
	min-width: 0;
	padding: 15px;

	display: grid;
	gap: 6px;

	border: 1px solid var(--border);
	border-radius: 16px;

	background: rgb(255 255 255 / 4%);
}

.release-stat span {
	color: var(--text-muted);

	font-size: 0.66rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.release-stat strong {
	overflow: hidden;

	color: var(--text);

	font-size: 0.86rem;
	font-weight: 850;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.release-date {
	margin: 12px 0 0;

	position: relative;
	z-index: 2;

	color: var(--text-muted);

	font-size: 0.72rem;
	text-align: center;
}

.release-security {
	margin-top: 18px;
	padding-top: 18px;

	position: relative;
	z-index: 2;

	border-top: 1px solid var(--border);

	color: var(--text-muted);
}

.release-security summary {
	cursor: pointer;

	color: var(--text-soft);

	font-size: 0.76rem;
	font-weight: 800;
}

.release-security-content {
	display: grid;
	gap: 15px;

	margin-top: 15px;
}

.release-security-content > div {
	display: grid;
	gap: 6px;
}

.release-security-content span {
	font-size: 0.65rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.release-security-content strong {
	color: var(--text-soft);

	font-size: 0.78rem;
}

.release-security-content code {
	width: 100%;
	padding: 11px 12px;

	display: block;
	overflow-wrap: anywhere;

	border: 1px solid var(--border);
	border-radius: 12px;

	background: rgb(0 0 0 / 24%);
	color: var(--text-soft);

	font-family:
		"SFMono-Regular",
		Consolas,
		"Liberation Mono",
		monospace;

	font-size: 0.65rem;
	line-height: 1.5;
}

.release-security-content a {
	width: fit-content;

	color: var(--text-soft);

	font-size: 0.73rem;
	font-weight: 750;
	text-decoration: underline;
	text-decoration-color: rgb(255 255 255 / 28%);
	text-underline-offset: 4px;
}

.release-security-content a:hover {
	color: var(--text);
}

.release-pending {
	min-height: 52px;
	margin-top: 28px;
	padding: 0 16px;

	display: flex;
	align-items: center;
	justify-content: center;

	position: relative;
	z-index: 2;

	border: 1px dashed var(--border-strong);
	border-radius: 15px;

	background: rgb(255 255 255 / 3%);
	color: var(--text-muted);

	font-size: 0.78rem;
	font-weight: 750;
	text-align: center;
}

.centered-heading {
	max-width: 790px;
	margin: 0 auto;

	text-align: center;
}

.centered-heading > p:last-child {
	margin-right: auto;
	margin-left: auto;
}

.experience-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.experience-card {
	min-height: 330px;
	padding: 30px;

	display: flex;
	flex-direction: column;

	position: relative;
	overflow: hidden;

	border: 1px solid var(--border);
	border-radius: 28px;

	background:
		linear-gradient(
			145deg,
			rgb(255 255 255 / 6%),
			rgb(255 255 255 / 1%) 52%
		),
		var(--surface);

	box-shadow:
		var(--shadow-small),
		inset 0 1px 0 rgb(255 255 255 / 5%);
}

.experience-card::after {
	content: "";

	width: 170px;
	height: 170px;

	position: absolute;
	right: -105px;
	bottom: -105px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgb(139 92 255 / 17%),
			transparent 70%
		);
}

.experience-number {
	position: absolute;
	top: 22px;
	right: 24px;

	color: rgb(255 255 255 / 8%);

	font-size: 3rem;
	font-weight: 950;
	letter-spacing: -0.08em;
}

.experience-icon {
	width: 54px;
	height: 54px;

	display: grid;
	place-items: center;

	position: relative;
	z-index: 2;

	border: 1px solid rgb(169 135 255 / 20%);
	border-radius: 18px;

	background:
		linear-gradient(
			145deg,
			rgb(169 135 255 / 21%),
			rgb(255 255 255 / 3%)
		);

	color: var(--accent-bright);
}

.experience-icon svg {
	width: 24px;
	height: 24px;
}

.experience-card h3 {
	margin: auto 0 0;

	position: relative;
	z-index: 2;

	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: -0.045em;
}

.experience-card p {
	margin: 10px 0 0;

	position: relative;
	z-index: 2;

	color: var(--text-muted);

	font-size: 0.9rem;
	line-height: 1.6;
}

.install-section {
	min-height: 430px;
	padding:
		clamp(34px, 6vw, 72px)
		clamp(28px, 6vw, 70px);

	display: grid;
	grid-template-columns:
		minmax(280px, 0.9fr)
		minmax(0, 1.1fr);
	align-items: center;
	gap: clamp(36px, 7vw, 90px);

	position: relative;
	overflow: hidden;

	border: 1px solid var(--border);
	border-radius: 38px;

	background:
		radial-gradient(
			circle at 15% 35%,
			rgb(139 92 255 / 17%),
			transparent 42%
		),
		linear-gradient(
			145deg,
			rgb(255 255 255 / 6%),
			transparent 55%
		),
		var(--surface);

	box-shadow:
		var(--shadow-medium),
		inset 0 1px 0 rgb(255 255 255 / 6%);
}

.install-section::after {
	content: "";

	width: 420px;
	height: 420px;

	position: absolute;
	top: -260px;
	right: -200px;

	border-radius: 50%;

	background:
		radial-gradient(
			circle,
			rgb(92 69 174 / 22%),
			transparent 70%
		);
}

.install-visual,
.install-copy {
	position: relative;
	z-index: 2;
}

.install-visual {
	min-height: 260px;

	display: grid;
	place-items: center;
}

.install-window {
	width: min(100%, 390px);

	overflow: hidden;

	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 24px;

	background: #0a0810;

	box-shadow:
		0 32px 90px rgb(0 0 0 / 48%),
		inset 0 1px 0 rgb(255 255 255 / 8%);

	transform: rotate(-3deg);
}

.install-window-bar {
	height: 42px;
	padding: 0 15px;

	display: flex;
	align-items: center;
	gap: 7px;

	border-bottom: 1px solid var(--border);

	background: rgb(255 255 255 / 3%);
}

.install-window-bar span {
	width: 8px;
	height: 8px;

	border-radius: 50%;

	background: rgb(255 255 255 / 18%);
}

.install-window-bar span:first-child {
	background: #ff6b6b;
}

.install-window-bar span:nth-child(2) {
	background: #f6c65c;
}

.install-window-bar span:nth-child(3) {
	background: #63d98a;
}

.install-window-content {
	min-height: 190px;
	padding: 28px;

	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;

	background:
		radial-gradient(
			circle at 35% 30%,
			rgb(139 92 255 / 22%),
			transparent 44%
		),
		linear-gradient(
			145deg,
			#13101d,
			#09080d
		);
}

.install-window-mark {
	width: 74px;
	height: 74px;

	display: grid;
	place-items: center;

	flex: 0 0 auto;

	border: 1px solid rgb(255 255 255 / 16%);
	border-radius: 23px;

	background:
		linear-gradient(
			145deg,
			#9f76ff,
			#5e32cb
		);

	box-shadow:
		0 22px 52px rgb(77 40 169 / 34%);

	font-size: 2.6rem;
	font-weight: 950;
	letter-spacing: -0.1em;
}

.install-window-content > div:last-child {
	display: grid;
	gap: 6px;
}

.install-window-content strong {
	font-size: 1.25rem;
	font-weight: 900;
}

.install-window-content span {
	color: var(--text-muted);

	font-size: 0.8rem;
}

.install-copy {
	max-width: 560px;
}

.install-button {
	margin-top: 26px;
}

.install-feedback {
	min-height: 1.4em;
	margin: 12px 0 0;

	color: var(--text-muted);

	font-size: 0.78rem;
	line-height: 1.5;
}

.closing-section {
	min-height: 390px;
	padding:
		clamp(46px, 7vw, 86px)
		clamp(28px, 7vw, 84px);

	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 40px;

	position: relative;
	overflow: hidden;

	border: 1px solid rgb(139 92 255 / 25%);
	border-radius: 40px;

	background:
		linear-gradient(
			135deg,
			rgb(139 92 255 / 18%),
			rgb(69 45 139 / 8%) 42%,
			rgb(255 255 255 / 2%) 100%
		),
		#100c18;

	box-shadow:
		var(--shadow-large),
		inset 0 1px 0 rgb(255 255 255 / 7%);
}

.closing-background {
	position: absolute;
	inset: 0;

	background:
		radial-gradient(
			circle at 82% 28%,
			rgb(169 135 255 / 32%),
			transparent 34%
		),
		radial-gradient(
			circle at 20% 100%,
			rgb(84 112 255 / 14%),
			transparent 40%
		);

	pointer-events: none;
}

.closing-background::after {
	content: "9";

	position: absolute;
	top: 50%;
	right: 4%;

	transform: translateY(-50%);

	color: rgb(255 255 255 / 4%);

	font-size: clamp(16rem, 28vw, 29rem);
	font-weight: 950;
	line-height: 0.8;
	letter-spacing: -0.15em;
}

.closing-copy,
.closing-actions {
	position: relative;
	z-index: 2;
}

.closing-copy {
	max-width: 760px;
}

.closing-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 10px;
}

.site-footer {
	min-height: 150px;
	padding: 48px 4px 10px;

	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 30px;

	color: var(--text-muted);
}

.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;

	justify-self: start;

	color: var(--text-soft);

	font-size: 0.74rem;
	font-weight: 900;
	letter-spacing: 0.17em;
}

.footer-brand-mark {
	width: 34px;
	height: 34px;

	display: grid;
	place-items: center;

	border: 1px solid var(--border-strong);
	border-radius: 11px;

	background:
		linear-gradient(
			145deg,
			rgb(139 92 255 / 24%),
			rgb(255 255 255 / 3%)
		);

	color: var(--text);

	font-size: 1rem;
	font-weight: 950;
	letter-spacing: -0.08em;
}

.site-footer > p {
	margin: 0;

	font-size: 0.76rem;
	text-align: center;
}

.footer-copyright {
	justify-self: end;
}

.sr-only {
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;

	position: absolute;
	overflow: hidden;

	border: 0;

	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

:focus-visible {
	outline: 2px solid var(--accent-bright);
	outline-offset: 4px;
}

@media (max-width: 1080px) {
	.hero-section {
		grid-template-columns:
			minmax(0, 1fr)
			minmax(300px, 0.78fr);

		gap: 42px;
	}

	.hero-content h1 {
		font-size: clamp(3.2rem, 6.6vw, 5.5rem);
	}

	.floating-card {
		min-width: 160px;
	}

	.floating-card-create {
		right: -5px;
	}

	.floating-card-discover {
		left: -4px;
	}

	.platform-card {
		min-height: 600px;
	}
}

@media (max-width: 900px) {
	.desktop-navigation {
		display: none;
	}

	.site-header {
		grid-template-columns: 1fr auto;
	}

	.hero-section {
		min-height: auto;

		grid-template-columns: 1fr;

		padding-top: 64px;
		padding-bottom: 70px;
	}

	.hero-content {
		max-width: 760px;
	}

	.hero-content h1 {
		max-width: 760px;

		font-size: clamp(3.5rem, 10vw, 6.5rem);
	}

	.experience-preview {
		min-height: 610px;
	}

	.platform-grid {
		grid-template-columns: 1fr;
	}

	.platform-card {
		min-height: auto;
	}

	.platform-button {
		margin-top: 34px;
	}

	.experience-grid {
		grid-template-columns: 1fr;
	}

	.experience-card {
		min-height: 250px;
	}

	.install-section {
		grid-template-columns: 1fr;
	}

	.install-copy {
		max-width: 680px;
	}

	.closing-section {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.closing-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 700px) {
	.site-shell {
		padding-right: 16px;
		padding-left: 16px;
	}

	main {
		gap: 80px;
		padding-top: 28px;
	}

	.site-header {
		min-height: 58px;
	}

	.brand-mark {
		width: 40px;
		height: 40px;

		border-radius: 14px;
	}

	.brand-mark svg {
		width: 23px;
		height: 23px;
	}

	.wordmark {
		font-size: 0.85rem;
	}

	.header-action {
		min-height: 40px;
		padding: 0 14px;

		font-size: 0.8rem;
	}

	.hero-section {
		padding:
			48px
			22px
			58px;

		border-radius: 30px;
	}

	.hero-content h1 {
		font-size: clamp(3.05rem, 15vw, 5rem);
	}

	.hero-copy {
		font-size: 1rem;
	}

	.hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hero-actions .button {
		width: 100%;
	}

	.hero-platforms {
		align-items: flex-start;
	}

	.hero-platform-copy {
		width: 100%;
	}

	.experience-preview {
		min-height: 575px;
	}

	.preview-phone {
		width: 270px;
		height: 535px;
	}

	.preview-video-nine {
		font-size: 9rem;
	}

	.floating-card {
		display: none;
	}

	.section-heading h2,
	.install-copy h2,
	.closing-copy h2 {
		font-size: clamp(2.4rem, 12vw, 4rem);
	}

	.platform-card {
		padding: 28px 22px;

		border-radius: 28px;
	}

	.platform-card-copy {
		margin-top: 32px;
	}

	.platform-card-copy h3 {
		font-size: clamp(2.2rem, 11vw, 3.4rem);
	}

	.release-summary {
		grid-template-columns: 1fr;
	}

	.release-stat {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}

	.experience-card {
		padding: 26px;

		border-radius: 24px;
	}

	.install-section {
		padding:
			40px
			22px;

		border-radius: 30px;
	}

	.install-window-content {
		padding: 24px 18px;
	}

	.install-window-mark {
		width: 62px;
		height: 62px;

		border-radius: 19px;

		font-size: 2.15rem;
	}

	.closing-section {
		padding:
			50px
			22px;

		border-radius: 30px;
	}

	.closing-actions {
		display: grid;
		grid-template-columns: 1fr;

		width: 100%;
	}

	.closing-actions .button {
		width: 100%;
	}

	.site-footer {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 18px;

		text-align: center;
	}

	.footer-brand,
	.footer-copyright {
		justify-self: center;
	}
}

@media (max-width: 430px) {
	.site-shell {
		padding-right: 12px;
		padding-left: 12px;
	}

	.brand-lockup {
		gap: 9px;
	}

	.wordmark {
		letter-spacing: 0.16em;
	}

	.header-action {
		padding: 0 12px;
	}

	.hero-section {
		padding:
			42px
			18px
			52px;
	}

	.availability-pill {
		font-size: 0.68rem;
	}

	.hero-content h1 {
		font-size: 3rem;
	}

	.hero-copy {
		line-height: 1.58;
	}

	.experience-preview {
		min-height: 520px;
	}

	.preview-phone {
		width: 244px;
		height: 485px;

		border-radius: 34px;
	}

	.preview-video-nine {
		font-size: 8rem;
	}

	.preview-video-copy {
		max-width: 180px;
	}

	.platform-card {
		padding:
			25px
			18px;
	}

	.platform-card-top {
		align-items: flex-start;
	}

	.platform-icon {
		width: 50px;
		height: 50px;

		border-radius: 16px;
	}

	.platform-card-copy h3 {
		font-size: 2.35rem;
	}

	.release-security-content code {
		font-size: 0.6rem;
	}

	.install-window-content {
		flex-direction: column;

		text-align: center;
	}

	.install-button {
		width: 100%;
	}

	.site-footer {
		padding-top: 34px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	.preview-phone {
		animation:
			phone-float 7s ease-in-out infinite;
	}

	.floating-card-discover {
		animation:
			card-float-left 6s ease-in-out infinite;
	}

	.floating-card-create {
		animation:
			card-float-right 6.8s ease-in-out infinite;
	}

	.hero-orb-primary {
		animation:
			orb-drift 12s ease-in-out infinite alternate;
	}
}

@keyframes phone-float {
	0%,
	100% {
		transform:
			translateY(0)
			rotate(3deg);
	}

	50% {
		transform:
			translateY(-13px)
			rotate(1.5deg);
	}
}

@keyframes card-float-left {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-9px);
	}
}

@keyframes card-float-right {
	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(10px);
	}
}

@keyframes orb-drift {
	from {
		transform:
			translate3d(0, 0, 0)
			scale(1);
	}

	to {
		transform:
			translate3d(-30px, 25px, 0)
			scale(1.08);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}