:root {
	--foreground-nature: #e7715c;
	--background-nature: #50635b;
	--accent-nature: #ffcfcc;

	--foreground: var(--foreground-nature);
	--background: var(--background-nature);
	--accent: var(--accent-nature);
	--button-text: oklch(from var(--background) calc(l * 0.5) calc(c * 0.2) h);
	--navbar-bg-opacity: 0;

	transition: 
		--foreground 1s cubic-bezier(0.4, 0, 0.2, 1),
		--background 1s cubic-bezier(0.4, 0, 0.2, 1),
		--accent 1s cubic-bezier(0.4, 0, 0.2, 1);
}

::selection {
	background-color: var(--accent);
	color: darkslategray;
}

@supports (transition: --foreground 1s) {
	:root {
		transition: 
			--foreground 1s cubic-bezier(0.4, 0, 0.2, 1),
			--background 1s cubic-bezier(0.4, 0, 0.2, 1),
			--accent 1s cubic-bezier(0.4, 0, 0.2, 1);
	}
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	color: white;
	background: var(--background);
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1;
	letter-spacing: -0.011em;
}

html {
	scroll-behavior: smooth;
}

/* Fixed Floating Background Video */
.floating-bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	z-index: -10;
	pointer-events: none;
}

/* Floating Navbar */
.navbar {
	position: fixed;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	background: transparent;
	padding: 1rem 2rem;
	border-radius: 16px;
	z-index: 1000;
	box-shadow: 0 8px 32px rgba(0, 0, 0, calc(0.12 * var(--navbar-bg-opacity)));
	width: calc(100% - 4rem);
	max-width: min(calc(100vh * 16 / 9), calc(100vw - 4rem));
	border: 1px solid rgba(255, 255, 255, calc(0.08 * var(--navbar-bg-opacity)));
}

.navbar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: color-mix(in srgb, var(--background) 75%, transparent);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-radius: 16px;
	opacity: var(--navbar-bg-opacity);
	transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.navbar > * {
	position: relative;
	z-index: 1;
}

.logo {
	height: 40px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.logo:hover {
	transform: scale(1.05);
}

.nav-buttons {
	display: flex;
	gap: 1.5rem;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 900px) {
	.nav-buttons {
		display: none;
	}
}

.nav-btn {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: white;
	cursor: pointer;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	padding: 0.625rem 1.25rem;
	border-radius: 10px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	opacity: 0.85;
}

.nav-btn:hover {
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	opacity: 1;
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
	transform: translateY(-1px);
}

.nav-btn.active {
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	opacity: 1;
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		background: transparent;
	}
	to {
		opacity: 1;
		background: var(--accent);
	}
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
}

.play-btn {
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	padding: 0.75rem 2rem;
	border-radius: 12px;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.play-btn:hover {
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 40%, white), color-mix(in srgb, var(--accent) 90%, white) 80%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.profile-btn {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.profile-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.profile-icon {
	fill: var(--button-text);
	transition: fill 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Features Section (Intro) */
.features-section {
	position: relative;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding-bottom: 10vh;
	overflow: hidden;
	background: transparent;
}

.features-content {
	text-align: center;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.gender-switch {
	display: flex;
	background: color-mix(in srgb, var(--background) 60%, transparent);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-radius: 50px;
	padding: 0.375rem;
	gap: 0.375rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

.gender-btn {
	background: none;
	border: none;
	color: white;
	opacity: 0.65;
	padding: 0.75rem 2rem;
	border-radius: 50px;
	cursor: pointer;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.gender-btn.active {
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	opacity: 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.subtext {
	font-size: 1.125rem;
	color: white;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.5;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: -1.5rem;
}

.big-text {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.3;
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 50%, white), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
}

.big-text::selection,
.big-text *::selection {
	-webkit-text-fill-color: darkslategray;
	background-color: var(--accent);
}

.big-text u {
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--accent) 70%, white);
	text-underline-offset: 0.15em;
	text-decoration-thickness: 0.08em;
}

.big-play-btn {
	background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 45%, white), var(--accent) 80%);
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	padding: 1.5rem 4rem;
	border-radius: 16px;
	cursor: pointer;
	font-size: 1.375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 2px 0 0 rgba(255, 255, 255, 0.5);
}

.big-play-btn:hover {
	background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 35%, white), color-mix(in srgb, var(--accent) 90%, white) 80%);
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 2px 0 0 rgba(255, 255, 255, 0.6);
}

/* Features Section New */
.features-section-new {
	background: var(--background);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
}

.features-big-title {
	font-size: 3.5rem;
	font-weight: 700;
	text-align: center;
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 50%, white), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
	line-height: 1.3;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
	margin-bottom: 3rem;
	padding-bottom: 0.2rem;
}

.features-big-title::selection {
	-webkit-text-fill-color: darkslategray;
	background-color: var(--accent);
}

.features-container {
	width: 100%;
	max-width: min(calc(100vh * 16 / 9), calc(100vw - 4rem));
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	align-content: flex-start;
}

.features-col-left {
	flex: 5 1 350px;
	min-height: calc(100vh - 8rem);
	background: rgba(73, 86, 70, 0.3);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--foreground);
	backdrop-filter: blur(16px) saturate(160%);
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-col-left:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.features-col-right {
	flex: 5 1 350px;
	min-height: calc(100vh - 8rem);
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.feature-item {
	flex: 1;
	background: radial-gradient(ellipse at 50% 0%, rgba(73, 86, 70, 0.6), rgba(73, 86, 70, 0.25) 100%);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--foreground);
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 1.5rem;
	display: flex;
	flex-direction: row;
	gap: 1.5rem;
	align-items: center;
	min-height: 0;
}

.feature-item:hover,
.feature-item:focus-within {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.feature-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.feature-content h3 {
	font-size: 1.375rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: white;
	margin: 0;
	line-height: 1.3;
}

.feature-item-tall {
	flex: 1 1 auto;
	min-height: 0;
	padding: 0;
	overflow: hidden;
	position: relative;
}

/* stacked/mobile layout: the box's in-flow content is empty (bg, hint, and
   canvas are all absolute), so its flex height collapses and the taskbar
   floor leaves no room to stand — pin it to a square instead */
@media (max-width: 800px) {
	.feature-item-tall {
		flex: 0 0 auto;
		aspect-ratio: 1 / 1;
	}
}

/* desktop screenshot backdrop: anchored bottom-center so the middle of the
   taskbar stays in view; height (i.e. scale) is set by script.js so the
   taskbar lands at a configurable fraction of the companion's size */
.companion-bg {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	max-width: none;
	display: block;
}

.companion-hint {
	position: absolute;
	top: 1rem;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	color: rgba(255, 255, 255, 0.35);
	pointer-events: none;
	user-select: none;
	-webkit-user-select: none;
}

.companion-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 128px;
	height: 128px;
	cursor: grab;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
}

.feature-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.feature-row-horizontal {
	flex: 0 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	min-height: 0;
}

.feature-item-half {
	flex: 1 1 250px;
	min-width: 0;
	cursor: pointer;
}


.feature-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.feature-list li {
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	color: white;
	opacity: 0.85;
	line-height: 1.5;
	margin: 0;
	padding-left: 1.25rem;
	position: relative;
}

.feature-list li::before {
	content: '•';
	position: absolute;
	left: 0;
	color: var(--accent);
	font-weight: 700;
	font-size: 1.125rem;
}

.feature-list li strong {
	color: white;
	opacity: 1;
	font-weight: 600;
}

.feature-list li em {
	opacity: 0.65;
	font-style: italic;
}

/* Upcoming Features Scroll */
.upcoming-features-wrapper {
	width: 100%;
	max-width: min(calc(100vh * 16 / 9), calc(100vw - 4rem));
	display: flex;
	justify-content: center;
	overflow: visible;
}

.upcoming-features-scroll {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	gap: 1rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 1rem 1.5rem 2rem 1.5rem;
	scrollbar-width: thin;
	scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.upcoming-features-scroll::-webkit-scrollbar {
	height: 8px;
}

.upcoming-features-scroll::-webkit-scrollbar-track {
	background: transparent;
}

.upcoming-features-scroll::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 4px;
}

.upcoming-features-scroll::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}

.upcoming-feature-card {
	flex: 0 0 auto;
	min-width: 200px;
	max-width: 240px;
	padding: 1.75rem 2rem;
	background: radial-gradient(ellipse at 50% 0%, rgba(73, 86, 70, 0.6), rgba(73, 86, 70, 0.25) 100%);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	backdrop-filter: blur(12px) saturate(160%);
	-webkit-backdrop-filter: blur(12px) saturate(160%);
	box-shadow: 0 3px 18px rgba(0, 0, 0, 0.14), 0 1px 2px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.upcoming-card-title {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	color: white;
}

.upcoming-card-desc {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: -0.005em;
	color: white;
	opacity: 0.75;
	line-height: 1.4;
}

.upcoming-feature-card:first-of-type {
	margin-left: auto;
}

.upcoming-feature-card:last-of-type {
	margin-right: auto;
}

.upcoming-feature-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

/* Picker carousel (left column) */
.picker-carousel {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	overflow: hidden;
	color: var(--foreground);
}

.picker-viewport {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	overflow: hidden;
}

.picker-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.08);
	transition: opacity 350ms ease;
	filter: saturate(1.05) contrast(1.02);
}

.picker-vignette {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0) 35%);
}

.picker-labels {
	position: absolute;
	left: 50%;
	bottom: 14px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem;
	border-radius: 50px;
	background: color-mix(in srgb, var(--background) 60%, transparent);
	backdrop-filter: blur(10px) saturate(150%);
	-webkit-backdrop-filter: blur(10px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.14);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.06);
	pointer-events: auto;
}

.mode-btn {
	border: 1px solid transparent;
	color: white;
	opacity: 0.7;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	box-shadow: none;
	position: relative;
	background: none;
	transition: border 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            color 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
	            opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50px;
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.mode-btn:hover {
	color: white;
	opacity: 1;
}

.mode-btn.active {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: var(--button-text);
	opacity: 1;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.mode-btn.active::before {
	opacity: 1;
}

.picker-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 48px;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
	z-index: 2;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
	user-select: none;
	-webkit-user-select: none;
}

.picker-arrow svg {
	width: 100%;
	height: 100%;
	display: block;
}

.picker-arrow .arrow-shape {
	fill: color-mix(in srgb, var(--background) 60%, transparent);
	transition: fill 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.picker-arrow.left { left: 12px; }
.picker-arrow.right { right: 12px; }

@media (max-width: 768px) {
	.picker-arrow { width: 36px; height: 44px; }
	.picker-labels { bottom: 12px; padding: 0.3rem; gap: 0.4rem; }
	.mode-btn { font-size: 1rem; padding: 0.65rem 1.25rem; }
}

/* Mobile Accessibility */
@media (max-width: 768px) {
	.navbar {
		gap: 1rem;
		padding: 0.75rem 1.5rem;
		width: calc(100% - 2rem);
		max-width: calc(100% - 2rem);
	}

	.nav-right {
		gap: 0.75rem;
	}

	.play-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}

	.profile-btn {
		width: 40px;
		height: 40px;
	}

	.big-text {
		font-size: 2.5rem;
	}

	.big-play-btn {
		padding: 1rem 2.5rem;
		font-size: 1.2rem;
	}

	.subtext {
		font-size: 1rem;
	}

	.features-big-title {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

	.upcoming-feature-card {
		min-width: 170px;
		max-width: 200px;
		padding: 1.5rem 1.5rem;
	}

	.upcoming-card-title {
		font-size: 1rem;
	}

	.upcoming-card-desc {
		font-size: 0.8125rem;
	}
}

/* Apply reduced motion only when user explicitly selects No */
body.respect-reduced-motion *,
body.respect-reduced-motion html {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
}

/* Preserve essential fade transitions even with reduced motion */
body.respect-reduced-motion .picker-image {
	transition: opacity 350ms ease !important;
}

body.respect-reduced-motion .picker-arrow .arrow-shape {
	transition: none !important;
}

body.respect-reduced-motion .mode-btn {
	transition: none !important;
}


/* Motion Preference Popup */
.motion-popup {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) translateY(150%);
	background: color-mix(in srgb, var(--background) 85%, transparent);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	padding: 1rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
	z-index: 2000;
	max-width: 90vw;
	width: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2rem;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.motion-popup.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.motion-popup-content {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.motion-popup-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: white;
	white-space: nowrap;
	letter-spacing: -0.01em;
}

.motion-popup-subtext {
	font-size: 0.8125rem;
	color: white;
	opacity: 0.65;
	white-space: nowrap;
	font-weight: 400;
	letter-spacing: -0.005em;
}

.motion-popup-buttons {
	display: flex;
	gap: 0.75rem;
	margin-left: auto;
}

.motion-popup-btn {
	padding: 0.5rem 1.5rem;
	border: none;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}

.motion-popup-btn.yes {
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.motion-popup-btn.yes:hover {
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 40%, white), color-mix(in srgb, var(--accent) 90%, white) 80%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
}

.motion-popup-btn.no {
	background: rgba(255, 255, 255, 0.08);
	color: white;
}

.motion-popup-btn.no:hover {
	background: rgba(255, 255, 255, 0.12);
	transform: translateY(-1px);
}

@media (max-width: 768px) {
	.motion-popup {
		flex-direction: column;
		align-items: stretch;
		gap: 1rem;
		border-radius: 16px;
	}

	.motion-popup-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.25rem;
	}

	.motion-popup-title,
	.motion-popup-subtext {
		white-space: normal;
	}

	.motion-popup-buttons {
		margin-left: 0;
	}
}

/* Call-to-Action Section (Outro) */
.cta-section {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 4rem 2rem;
	background: transparent;
}

.cta-container {
	max-width: 500px;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.cta-title {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 50%, white), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
	line-height: 1.3;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.1));
	margin-bottom: 0.5rem;
}

.cta-title::selection {
	-webkit-text-fill-color: darkslategray;
	background-color: var(--accent);
}

.cta-tagline {
	font-size: 1.125rem;
	color: white;
	opacity: 0.9;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.5;
	text-align: center;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	margin: -1.5rem 0 0rem 0;
}

.cta-form {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.cta-form > input {
	width: 100%;
}

.cta-input {
	width: 100%;
	padding: 1.25rem 1.5rem;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: color-mix(in srgb, var(--background) 60%, transparent);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	color: white;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

.cta-input::placeholder {
	color: white;
	opacity: 0.5;
	font-weight: 400;
}

.cta-input:focus {
	outline: none;
	border-color: var(--accent);
	background: color-mix(in srgb, var(--background) 70%, transparent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

.cta-input.error {
	border-color: #ef4444;
}

.cta-error {
	color: #ef4444;
	font-size: 0.9rem;
	margin-top: -0.5rem;
	display: none;
}

.cta-error.show {
	display: block;
}

.cta-submit {
	width: auto;
	padding: 1.25rem 3rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 14px;
	background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 45%, white), var(--accent) 80%);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 2px 0 0 rgba(255, 255, 255, 0.5);
}

.cta-submit:hover:not(:disabled) {
	background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 35%, white), color-mix(in srgb, var(--accent) 90%, white) 80%);
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12), inset 0 2px 0 0 rgba(255, 255, 255, 0.6);
}

.cta-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.cta-title {
		font-size: 2rem;
	}

	.cta-input,
	.cta-submit {
		font-size: 1rem;
	}
}

/* Contact Modal */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 3000;
	display: none;
	align-items: center;
	justify-content: center;
}

.modal-overlay.show {
	display: flex;
}

.modal-content {
	position: relative;
	background: color-mix(in srgb, var(--background) 70%, transparent);
	backdrop-filter: blur(32px) saturate(180%);
	-webkit-backdrop-filter: blur(32px) saturate(180%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 20px;
	padding: 2.5rem;
	max-width: 500px;
	width: calc(100% - 4rem);
	box-shadow: 0 16px 64px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 0 rgba(255, 255, 255, 0.12);
}

/* Reduced motion: instant appearance */
body.respect-reduced-motion .modal-overlay {
	transition: none !important;
}

body.respect-reduced-motion .modal-content {
	transition: none !important;
}

body.respect-reduced-motion .modal-overlay.show .modal-content {
	opacity: 1;
	transform: scale(1);
}

.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	border: none;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
	background: rgba(255, 255, 255, 0.15);
	transform: scale(1.1);
}

.modal-title {
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 50%, white), var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
	line-height: 1.3;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
	margin-bottom: 0.5rem;
}

.modal-title::selection {
	-webkit-text-fill-color: darkslategray;
	background-color: var(--accent);
}

.modal-subtitle {
	font-size: 1rem;
	color: white;
	opacity: 0.75;
	text-align: center;
	margin-bottom: 2rem;
	font-weight: 400;
	letter-spacing: -0.01em;
}

.modal-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.modal-input,
.modal-textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: -0.01em;
	border: 1.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	background: color-mix(in srgb, var(--background) 60%, transparent);
	backdrop-filter: blur(12px) saturate(150%);
	-webkit-backdrop-filter: blur(12px) saturate(150%);
	color: white;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
	font-family: inherit;
}

.modal-textarea {
	resize: vertical;
	min-height: 120px;
}

.modal-input::placeholder,
.modal-textarea::placeholder {
	color: white;
	opacity: 0.5;
	font-weight: 400;
}

.modal-input:focus,
.modal-textarea:focus {
	outline: none;
	border-color: var(--accent);
	background: color-mix(in srgb, var(--background) 70%, transparent);
	box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent), 0 2px 8px rgba(0, 0, 0, 0.1), inset 0 1px 0 0 rgba(255, 255, 255, 0.08);
}

.modal-submit {
	width: 100%;
	padding: 1rem 2rem;
	font-size: 0.9375rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 45%, white), var(--accent) 80%);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 2px 0 0 rgba(255, 255, 255, 0.5);
	margin-top: 0.5rem;
}

.modal-submit:hover:not(:disabled) {
	background: radial-gradient(ellipse at 50% 0%, color-mix(in srgb, var(--accent) 35%, white), color-mix(in srgb, var(--accent) 90%, white) 80%);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.12), inset 0 2px 0 0 rgba(255, 255, 255, 0.6);
}

.modal-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* Beta Signup Modal */
.modal-content.beta-modal {
	max-width: 560px;
	max-height: calc(100vh - 3rem);
	max-height: calc(100dvh - 3rem);
	overflow-y: auto;
}

.modal-field {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.modal-label {
	color: white;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: -0.01em;
	opacity: 0.85;
}

.modal-optional {
	font-weight: 400;
	opacity: 0.6;
}

.modal-textarea.beta-textarea {
	min-height: 56px;
	padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
	.modal-content {
		padding: 2rem;
		width: calc(100% - 2rem);
	}
	
	.modal-title {
		font-size: 1.75rem;
	}
}

/* Feedback Popup */
.feedback-popup {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%) translateY(150%);
	background: color-mix(in srgb, var(--background) 85%, transparent);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	padding: 1.25rem 2rem;
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
	z-index: 3500;
	max-width: 90vw;
	width: auto;
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.feedback-popup.show {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
}

.feedback-popup-content {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.feedback-popup-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--accent) 50%, white), var(--accent) 80%);
	color: oklch(from var(--background) calc(l * 0.6) calc(c * 0.3) h);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.feedback-popup-title {
	font-size: 0.9375rem;
	font-weight: 600;
	color: white;
	letter-spacing: -0.01em;
}

.feedback-popup-message {
	font-size: 0.8125rem;
	color: white;
	opacity: 0.65;
	font-weight: 400;
	letter-spacing: -0.005em;
}

@media (max-width: 768px) {
	.feedback-popup {
		padding: 1rem 1.5rem;
		border-radius: 16px;
	}
	
	.feedback-popup-content {
		flex-direction: column;
		text-align: center;
		gap: 0.5rem;
	}
}
