:root {
	--font-body: "SF Pro Text", "Segoe UI Variable Text", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
	--font-display: "SF Pro Display", "Segoe UI Variable Display", "PingFang SC", sans-serif;
	--text: #172033;
	--muted: #657085;
	--panel: rgba(255, 255, 255, 0.68);
	--panel-strong: rgba(255, 255, 255, 0.78);
	--line: rgba(132, 146, 170, 0.17);
	--shadow: 0 10px 28px rgba(52, 70, 104, 0.035);
	--dock-bg: rgba(255, 255, 255, 0.26);
	--dock-border: rgba(255, 255, 255, 0.44);
	--dock-shadow: 0 20px 58px rgba(46, 64, 96, 0.12);
	--glass-surface: rgba(255, 255, 255, 0.5);
	--glass-surface-strong: rgba(255, 255, 255, 0.66);
	--glass-edge: rgba(255, 255, 255, 0.72);
	--glass-shadow: 0 6px 18px rgba(62, 82, 116, 0.022), inset 0 1px 0 rgba(255, 255, 255, 0.62), inset 0 -8px 18px rgba(82, 108, 150, 0.01);
	--glass-highlight: linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.12) 32%, transparent 58%);
	--background-a: #fbfdff;
	--background-b: #ffffff;
	--background-c: #f9fffc;
	--active-accent: #7eb6ff;
	--ease-liquid: cubic-bezier(0.22, 1, 0.36, 1);
	--ease-soft: cubic-bezier(0.2, 0.8, 0.2, 1);
	--ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-theme="dark"] {
	--text: #f4f7ff;
	--muted: #a7b2c8;
	--panel: rgba(10, 15, 25, 0.84);
	--panel-strong: rgba(18, 25, 39, 0.82);
	--line: rgba(214, 226, 255, 0.12);
	--shadow: 0 24px 72px rgba(3, 9, 20, 0.3);
	--dock-bg: rgba(8, 13, 22, 0.46);
	--dock-border: rgba(255, 255, 255, 0.18);
	--dock-shadow: 0 22px 64px rgba(3, 9, 20, 0.34);
	--glass-surface: rgba(16, 22, 35, 0.5);
	--glass-surface-strong: rgba(26, 34, 50, 0.62);
	--glass-edge: rgba(255, 255, 255, 0.2);
	--glass-shadow: 0 22px 62px rgba(4, 10, 22, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.17), inset 0 -14px 30px rgba(8, 14, 26, 0.1);
	--glass-highlight: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06) 30%, transparent 58%);
	--background-a: #050811;
	--background-b: #081020;
	--background-c: #040711;
	background:
		radial-gradient(circle at 16% 18%, rgba(78, 123, 216, 0.14), transparent 34vw),
		radial-gradient(circle at 82% 12%, rgba(84, 206, 182, 0.08), transparent 32vw),
		radial-gradient(circle at 72% 78%, rgba(255, 139, 118, 0.045), transparent 28vw),
		linear-gradient(140deg, var(--background-a), var(--background-b) 52%, var(--background-c));
}

* {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	min-height: 100vh;
	margin: 0;
	color: var(--text);
	background:
		radial-gradient(circle at 14% 18%, rgba(126, 182, 255, 0.15), transparent 36vw),
		radial-gradient(circle at 84% 14%, rgba(172, 240, 219, 0.13), transparent 34vw),
		radial-gradient(circle at 68% 78%, rgba(255, 176, 162, 0.08), transparent 30vw),
		radial-gradient(circle at 28% 82%, rgba(194, 175, 255, 0.06), transparent 28vw),
		linear-gradient(140deg, var(--background-a), var(--background-b) 52%, var(--background-c));
	font-family: var(--font-body);
	overflow-x: hidden;
	transition: background 520ms var(--ease-liquid), color 320ms ease;
}

body.is-theme-switching {
	transition: color 180ms ease !important;
}

body.is-theme-switching .page-atmosphere::before,
body.is-theme-switching .page-atmosphere::after,
body.is-theme-switching .paper-stack::before,
body.is-theme-switching .paper-window,
body.is-theme-switching .paper-window::before,
body.is-theme-switching .paper-window::after,
body.is-theme-switching .paper-flow,
body.is-theme-switching .paper-titlebar,
body.is-theme-switching .paper-addressbar span,
body.is-theme-switching .product-icon,
body.is-theme-switching .product-meta span,
body.is-theme-switching .contact-action-button,
body.is-theme-switching .contact-popover,
body.is-theme-switching .product-link,
body.is-theme-switching .product-pill,
body.is-theme-switching .pill-icon,
body.is-theme-switching .site-dock,
body.is-theme-switching .site-dock::before,
body.is-theme-switching .site-dock::after,
body.is-theme-switching .dock-glass,
body.is-theme-switching .dock-link,
body.is-theme-switching .dock-mark,
body.is-theme-switching .content-card,
body.is-theme-switching .archive-product-card,
body.is-theme-switching .single-panel,
body.is-theme-switching .primary-menu-list a,
body.is-theme-switching .theme-toggle {
	transition-property: color, border-color, box-shadow, opacity, transform !important;
	transition-duration: 180ms !important;
	transition-timing-function: ease !important;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

.page-vignette,
.page-atmosphere {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: -2;
}

.page-atmosphere::before,
.page-atmosphere::after {
	content: "";
	position: absolute;
	inset: -12%;
	opacity: 0.40;
	filter: blur(12px) saturate(1.12);
	transition: opacity 520ms var(--ease-liquid), filter 520ms var(--ease-liquid);
	will-change: transform, opacity;
}

.home-shell,
.content-shell {
	animation: pageReveal 520ms var(--ease-liquid) both;
}

@keyframes pageReveal {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.992);
		filter: blur(8px);
	}

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

.page-atmosphere::before {
	background:
		conic-gradient(from 135deg at 50% 42%, transparent 0deg, rgba(98, 164, 255, 0.28) 64deg, transparent 126deg, rgba(126, 224, 191, 0.26) 205deg, transparent 286deg),
		radial-gradient(ellipse at 50% 20%, rgba(255, 255, 255, 0.44), transparent 54%);
	transform: rotate(-4deg);
	animation: iveanAtmosphereDrift 20s ease-in-out infinite alternate;
}

.page-atmosphere::after {
	background:
		linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.36) 18%, transparent 31%, rgba(255, 255, 255, 0.22) 48%, transparent 62%),
		radial-gradient(circle at 76% 74%, rgba(255, 119, 96, 0.22), transparent 28%);
	mix-blend-mode: screen;
	animation: iveanLightSweep 16s ease-in-out infinite alternate;
}

.page-vignette {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%),
		radial-gradient(circle at center, transparent 52%, rgba(23, 32, 51, 0.13));
	z-index: -1;
}

body[data-theme="dark"] .page-vignette {
	background:
		radial-gradient(circle at center, transparent 38%, rgba(4, 9, 18, 0.44)),
		linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(5, 10, 20, 0.22));
}

.mist,
.grid-layer {
	position: absolute;
	display: block;
}

.mist {
	width: min(42vw, 680px);
	aspect-ratio: 1;
	border-radius: 50%;
	filter: blur(38px) saturate(1.28);
	opacity: 0.52;
	will-change: transform;
}

.mist-one {
	left: -8vw;
	top: 4vh;
	background: rgba(101, 166, 255, 0.44);
	animation: iveanMistFloatOne 18s ease-in-out infinite alternate;
}

.mist-two {
	right: -10vw;
	top: 12vh;
	background: rgba(126, 222, 188, 0.36);
	animation: iveanMistFloatTwo 22s ease-in-out infinite alternate;
}

.mist-three {
	left: 30vw;
	bottom: -22vh;
	background: rgba(255, 184, 108, 0.24);
	transform: translate3d(2.5vw, -3.5vh, 0) scale(1.07);
}

.grid-layer {
	inset: 0;
	overflow: hidden;
	mask-image: linear-gradient(180deg, transparent, #000 18%, #000 76%, transparent);
	opacity: 0.68;
	contain: paint;
}

.grid-layer::before {
	content: "";
	position: absolute;
	inset: -84px;
	background-image:
		linear-gradient(rgba(118, 136, 166, 0.1) 1px, transparent 1px),
		linear-gradient(90deg, rgba(118, 136, 166, 0.1) 1px, transparent 1px);
	background-size: 84px 84px;
	will-change: transform;
	animation: iveanGridDrift 13s linear infinite;
}

@keyframes iveanAtmosphereDrift {
	from {
		transform: translate3d(-2.8%, -1.8%, 0) rotate(-6deg) scale(1.03);
	}

	to {
		transform: translate3d(2.6%, 2.2%, 0) rotate(4deg) scale(1.08);
	}
}

@keyframes iveanLightSweep {
	from {
		transform: translate3d(-7%, 0, 0) scale(1.03);
		opacity: 0.3;
	}

	to {
		transform: translate3d(7%, -3.5%, 0) scale(1.12);
		opacity: 0.5;
	}
}

@keyframes iveanGridDrift {
	from {
		transform: translate3d(-84px, -84px, 0);
	}

	to {
		transform: translate3d(-28px, 18px, 0);
	}
}

@keyframes iveanMistFloatOne {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(7vw, 5.5vh, 0) scale(1.12);
	}
}

@keyframes iveanMistFloatTwo {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(-6vw, 6.5vh, 0) scale(1.1);
	}
}

@keyframes iveanMistFloatThree {
	from {
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		transform: translate3d(5vw, -7vh, 0) scale(1.14);
	}
}

.topbar {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 30;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px clamp(20px, 4vw, 54px);
}

.brand-logo {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: 70px;
	color: #fff;
	isolation: isolate;
}

.custom-logo-link img {
	width: auto;
	max-height: 38px;
}

.brand-word {
	position: relative;
	z-index: 2;
	font-family: var(--font-display);
	font-size: clamp(22px, 2.4vw, 34px);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: 0;
	white-space: nowrap;
	color: #fff;
	text-shadow:
		0 2px 0 rgba(15, 31, 55, 0.4),
		0 9px 24px rgba(15, 32, 56, 0.24);
}

.mario-block-container {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: clamp(240px, 21vw, 330px);
	height: 62px;
	overflow: hidden;
	padding: 0 20px;
	border: 1px solid rgba(255, 255, 255, 0.34);
	border-radius: 22px;
	background: linear-gradient(to bottom, rgba(127, 202, 252, 0.88) 0%, rgba(74, 144, 226, 0.74) 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.58),
		inset 0 -12px 28px rgba(38, 91, 154, 0.14),
		0 14px 32px rgba(31, 85, 150, 0.16);
	image-rendering: pixelated;
}

.mario-block-container::after {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 38%, rgba(255, 255, 255, 0.12) 70%, transparent),
		radial-gradient(ellipse at 22% 18%, rgba(255, 255, 255, 0.22), transparent 42%);
	pointer-events: none;
}

.brand-clouds {
	position: absolute;
	inset: -18px -40px 4px -24px;
	z-index: 0;
	overflow: visible;
	pointer-events: none;
}

.brand-clouds .cloud {
	position: absolute;
	z-index: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;
	image-rendering: pixelated;
	animation: cloudMove 18s ease-in-out infinite alternate;
}

.brand-clouds .cloud-1 {
	top: 3px;
	left: 2px;
	width: 18px;
	height: 10px;
	box-shadow:
		0 0 0 3px #fff,
		13px 0 #fff,
		-6px 6px #fff,
		7px 6px #fff,
		18px 6px #fff,
		-12px 12px #fff,
		0 12px #fff,
		13px 12px #fff,
		23px 12px #fff;
}

.brand-clouds .cloud-2 {
	right: 8px;
	bottom: 24px;
	width: 22px;
	height: 14px;
	box-shadow:
		4px 0 #fff,
		-6px 7px #fff,
		4px -1px #fff,
		17px 7px #fff,
		0 12px #fff,
		11px 10px #fff;
	animation-duration: 22s;
}

@keyframes cloudMove {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(32px);
	}
}

.brand-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--active-accent);
	box-shadow: 0 0 18px var(--active-accent);
	transform: translateY(9px);
}

.topbar-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.primary-menu-list {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.primary-menu-list a {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--glass-edge);
	border-radius: 999px;
	color: var(--text);
	background:
		var(--glass-highlight),
		linear-gradient(180deg, var(--glass-surface-strong), var(--glass-surface));
	backdrop-filter: blur(24px) saturate(1.28) contrast(1.04);
	box-shadow: 0 10px 30px rgba(24, 35, 56, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.primary-menu-list a::after {
	content: "";
	position: absolute;
	inset: 1px;
	border-radius: inherit;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.32), transparent 42%, rgba(255, 255, 255, 0.14));
	opacity: 0.72;
	pointer-events: none;
}

body[data-theme="dark"] .primary-menu-list a {
	background:
		var(--glass-highlight),
		linear-gradient(180deg, var(--glass-surface-strong), var(--glass-surface));
	box-shadow: 0 10px 28px rgba(4, 10, 22, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

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

.theme-toggle.switch {
	position: relative;
	display: inline-block;
	flex: 0 0 auto;
	width: 64px;
	height: 34px;
	font-size: 17px;
}

.theme-toggle .input {
	position: absolute;
	width: 0;
	height: 0;
	opacity: 0;
}

.theme-toggle .slider {
	position: absolute;
	cursor: pointer;
	inset: 0;
	overflow: hidden;
	border-radius: 30px;
	background-color: #73c0fc;
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.42),
		inset 0 -8px 18px rgba(28, 93, 156, 0.16),
		0 12px 28px rgba(48, 124, 194, 0.22);
	transition: 0.4s;
}

.theme-toggle .slider::before {
	content: "";
	position: absolute;
	left: 2px;
	bottom: 2px;
	z-index: 2;
	width: 30px;
	height: 30px;
	border-radius: 20px;
	background-color: #e8e8e8;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.86),
		0 5px 12px rgba(15, 32, 56, 0.2);
	transition: 0.4s;
}

.theme-toggle .sun svg {
	position: absolute;
	top: 6px;
	left: 36px;
	z-index: 1;
	width: 24px;
	height: 24px;
	fill: #ffd43b;
	stroke: #ffd43b;
	stroke-width: 1.7;
	stroke-linecap: round;
	animation: rotate 15s linear infinite;
}

.theme-toggle .moon svg {
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 1;
	width: 24px;
	height: 24px;
	fill: #73c0fc;
	animation: tilt 5s linear infinite;
}

@keyframes rotate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes tilt {
	0% {
		transform: rotate(0deg);
	}

	25% {
		transform: rotate(-10deg);
	}

	75% {
		transform: rotate(10deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.theme-toggle .input:checked + .slider {
	background-color: #183153;
	box-shadow:
		inset 0 1px 1px rgba(255, 255, 255, 0.18),
		inset 0 -8px 18px rgba(3, 10, 20, 0.24),
		0 12px 28px rgba(9, 24, 48, 0.28);
}

.theme-toggle .input:focus-visible + .slider {
	box-shadow:
		0 0 0 3px rgba(115, 192, 252, 0.36),
		0 12px 28px rgba(48, 124, 194, 0.24);
}

.theme-toggle .input:checked + .slider::before {
	transform: translateX(30px);
}

.home-shell {
	height: 100svh;
	min-height: 100svh;
	padding: 78px clamp(18px, 4vw, 56px) 108px;
	display: grid;
	grid-template-rows: 1fr;
	gap: 0;
	overflow: hidden;
}

@supports (height: 100dvh) {
	.home-shell {
		height: 100dvh;
		min-height: 100dvh;
	}
}

@supports selector(body:has(.home-shell)) {
	body:has(.home-shell) {
		overflow: hidden;
	}
}

.home-flower {
	display: none;
}

.home-flower__petal {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 35px;
	height: 60px;
	margin: -60px 0 0 -17.5px;
	border-radius: 50%;
	background: linear-gradient(180deg, #fcdbdf, #fd688d);
	transform: rotate(var(--petal-angle));
	transform-origin: 50% 100%;
}

.home-flower__petal--1 {
	--petal-angle: 0deg;
	animation-delay: 0.1s;
}

.home-flower__petal--2 {
	--petal-angle: 45deg;
	animation-delay: 0.2s;
}

.home-flower__petal--3 {
	--petal-angle: 90deg;
	animation-delay: 0.3s;
}

.home-flower__petal--4 {
	--petal-angle: 135deg;
	animation-delay: 0.4s;
}

.home-flower__petal--5 {
	--petal-angle: 180deg;
	animation-delay: 0.5s;
}

.home-flower__petal--6 {
	--petal-angle: 225deg;
	animation-delay: 0.6s;
}

.home-flower__petal--7 {
	--petal-angle: 270deg;
	animation-delay: 0.7s;
}

.home-flower__petal--8 {
	--petal-angle: 315deg;
	animation-delay: 0.8s;
}

.home-flower__center {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: #f1d2d2;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 8px 20px rgba(253, 104, 141, 0.2);
	transform: translate(-50%, -50%);
}

.home-flower:hover .home-flower__petal {
	animation-name: homeFlowerChangeColor;
	animation-duration: 8s;
	animation-direction: reverse;
	animation-iteration-count: infinite;
}

.home-flower:hover {
	animation-name: homeFlowerRotate;
	animation-duration: 8s;
	animation-iteration-count: infinite;
	animation-timing-function: ease;
}

@keyframes homeFlowerChangeColor {
	0% {
		background: linear-gradient(180deg, #fcdbdf, #fd688d);
	}

	25% {
		background: linear-gradient(180deg, #fcd2e3, #fa6094);
	}

	50% {
		background: linear-gradient(180deg, #fabefc, #c34ec7);
	}

	75% {
		background: linear-gradient(180deg, #f7d6d6, #fd6a6a);
	}

	100% {
		background: linear-gradient(180deg, #fcd3fc, #e844f7);
	}
}

@keyframes homeFlowerRotate {
	0% {
		transform: scale(1) rotate(0deg);
	}

	50% {
		transform: scale(1.5) rotate(360deg);
	}

	100% {
		transform: scale(1) rotate(0deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-flower:hover,
	.home-flower:hover .home-flower__petal {
		animation: none;
	}
}

.intro-copy {
	max-width: 840px;
	margin: 0 auto;
	text-align: center;
}

.intro-kicker {
	margin: 0 0 12px;
	color: var(--muted);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0;
}

.intro-copy h1,
.archive-hero h1,
.single-panel h1 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(34px, 5vw, 70px);
	line-height: 1.03;
	letter-spacing: 0;
}

.intro-copy p:last-child,
.archive-hero p,
.single-panel header p:last-child {
	max-width: 680px;
	margin: 16px auto 0;
	color: var(--muted);
	font-size: clamp(15px, 1.7vw, 18px);
	line-height: 1.8;
}

.showcase {
	position: relative;
	display: grid;
	place-items: center;
	align-self: center;
	gap: 14px;
	min-height: 0;
	transform: translateY(-18px);
}

.paper-stack {
	position: relative;
	width: min(100%, 960px);
	min-height: clamp(420px, calc(100svh - 260px), 540px);
	perspective: 1900px;
	transform-style: preserve-3d;
	contain: layout paint style;
}

.paper-stack::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -22px;
	width: min(86%, 740px);
	height: 80px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--active-accent), transparent 90%);
	filter: blur(22px) saturate(1.06);
	transform: translate3d(-50%, 0, 0) scaleX(1);
	opacity: 0.24;
	transition:
		background 760ms var(--ease-spring),
		opacity 520ms ease,
		transform 760ms var(--ease-spring);
	will-change: transform, opacity;
}

body.is-product-switching .paper-stack::before {
	opacity: 0.34;
	transform: translate3d(-50%, 5px, 0) scaleX(1.08);
}

.product-card {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	opacity: 0;
	transform:
		translate3d(calc(var(--stack-offset, 0) * 34px), calc(var(--stack-depth, 0) * 14px), calc(var(--stack-depth, 0) * -42px))
		scale(calc(1 - min(var(--stack-depth, 0), 3) * 0.055))
		rotateY(calc(var(--stack-offset, 0) * -3.5deg))
		rotateZ(calc(var(--stack-offset, 0) * -1.2deg));
	transition:
		opacity 560ms var(--ease-spring),
		transform 700ms var(--ease-spring);
	will-change: transform, opacity;
	transform-style: preserve-3d;
	pointer-events: none;
	backface-visibility: hidden;
	contain: layout paint style;
}

.product-card.is-active {
	opacity: 1;
	z-index: 5;
	pointer-events: auto;
}

.product-card:not(.is-active) {
	opacity: calc(0.38 - min(var(--stack-depth, 0), 3) * 0.08);
}

.product-card:not(.is-active):not(.is-entering):not(.is-leaving) {
	opacity: 0;
	visibility: hidden;
	content-visibility: hidden;
}

.product-card:not(.is-active):not(.is-entering):not(.is-leaving),
.product-card:not(.is-active):not(.is-entering):not(.is-leaving) *,
.product-card:not(.is-active):not(.is-entering):not(.is-leaving)::before,
.product-card:not(.is-active):not(.is-entering):not(.is-leaving)::after,
.product-card:not(.is-active):not(.is-entering):not(.is-leaving) *::before,
.product-card:not(.is-active):not(.is-entering):not(.is-leaving) *::after {
	animation-play-state: paused !important;
}

.product-card.is-entering {
	visibility: visible;
	z-index: 6;
}

.product-card.is-leaving {
	opacity: 0;
	visibility: visible;
}

.product-card.is-entering .paper-window {
	animation: productWindowIn 640ms var(--ease-spring) both;
}

.product-card.is-entering .paper-flow {
	animation: paperFlowLayerIn 700ms var(--ease-spring) both;
}

.product-card.is-leaving .paper-window {
	animation: productWindowOut 420ms var(--ease-soft) both;
}

body[data-switch-direction="prev"] .product-card.is-entering .paper-window {
	animation-name: productWindowInPrev;
}

body[data-switch-direction="prev"] .product-card.is-leaving .paper-window {
	animation-name: productWindowOutPrev;
}

.product-card.is-entering .product-visual,
.product-card.is-entering .product-copy {
	animation: productContentIn 440ms var(--ease-spring) both;
}

.product-card.is-entering .product-copy {
	animation-delay: 50ms;
}

.product-card.is-entering .product-icon {
	animation: productIconPop 560ms var(--ease-spring) 60ms both;
}

.product-card.is-entering .product-meta,
.product-card.is-entering .product-headline,
.product-card.is-entering .product-description,
.product-card.is-entering .product-link,
.product-card.is-entering .contact-actions {
	animation: productTextRise 640ms var(--ease-spring) both;
	animation-duration: 360ms;
}

.product-card.is-entering .product-meta {
	animation-delay: 40ms;
}

.product-card.is-entering .product-headline {
	animation-delay: 70ms;
}

.product-card.is-entering .product-description {
	animation-delay: 100ms;
}

.product-card.is-entering .product-link,
.product-card.is-entering .contact-actions {
	animation-delay: 130ms;
}

@keyframes productWindowIn {
	from {
		opacity: 0;
		transform: translate3d(74px, 28px, -90px) scale(0.94) rotateY(-8deg) rotateZ(1.4deg);
	}

	58% {
		opacity: 1;
		transform: translate3d(-5px, -2px, 12px) scale(1.006) rotateY(0.9deg) rotateZ(-0.12deg);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1) rotateY(0) rotateZ(0);
	}
}

@keyframes productWindowInPrev {
	from {
		opacity: 0;
		transform: translate3d(-74px, 28px, -90px) scale(0.94) rotateY(8deg) rotateZ(-1.4deg);
	}

	58% {
		opacity: 1;
		transform: translate3d(5px, -2px, 12px) scale(1.006) rotateY(-0.9deg) rotateZ(0.12deg);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1) rotateY(0) rotateZ(0);
	}
}

@keyframes productWindowOut {
	from {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		opacity: 0;
		transform: translate3d(-52px, -12px, -80px) scale(0.965) rotateY(6deg) rotateZ(-0.8deg);
	}
}

@keyframes productWindowOutPrev {
	from {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
	}

	to {
		opacity: 0;
		transform: translate3d(52px, -12px, -80px) scale(0.965) rotateY(-6deg) rotateZ(0.8deg);
	}
}

@keyframes productContentIn {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes productTextRise {
	from {
		opacity: 0;
		transform: translate3d(0, 12px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes productIconPop {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0) scale(0.82) rotateZ(-3deg);
	}

	56% {
		opacity: 1;
		transform: translate3d(0, -5px, 0) scale(1.045) rotateZ(0.9deg);
	}

	to {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1) rotateZ(0);
	}
}

@keyframes paperFlowLayerIn {
	from {
		opacity: 0;
		transform: translate3d(0, 18px, 0) scale(0.98);
	}

	to {
		opacity: var(--paper-flow-opacity, 0.92);
		transform: translate3d(0, 0, 0) scale(1);
	}
}

@keyframes paperFlowFloat {
	0% {
		opacity: var(--flow-opacity, 0.58);
		transform: translate3d(var(--flow-start-x, 0), var(--flow-start-y, 0), 0) rotate(var(--flow-start-r, 0deg)) scale(var(--flow-start-s, 1));
	}

	48% {
		opacity: var(--flow-mid-opacity, 0.74);
		transform: translate3d(var(--flow-mid-x, 20px), var(--flow-mid-y, -18px), 0) rotate(var(--flow-mid-r, 8deg)) scale(var(--flow-mid-s, 1.04));
	}

	100% {
		opacity: var(--flow-end-opacity, 0.6);
		transform: translate3d(var(--flow-end-x, -18px), var(--flow-end-y, 14px), 0) rotate(var(--flow-end-r, -6deg)) scale(var(--flow-end-s, 1.02));
	}
}

@keyframes paperFlowBreath {
	from {
		opacity: 0.58;
		transform: translate3d(-2.2%, 1.8%, 0) scale(1);
	}

	to {
		opacity: 0.88;
		transform: translate3d(2.2%, -1.4%, 0) scale(1.06);
	}
}

@keyframes paperGlassSweep {
	0% {
		opacity: 0.38;
		transform: translate3d(-14%, -8%, 0) rotate(-4deg) scale(1.04);
	}

	50% {
		opacity: 0.72;
		transform: translate3d(8%, 5%, 0) rotate(3deg) scale(1.09);
	}

	100% {
		opacity: 0.48;
		transform: translate3d(15%, -5%, 0) rotate(-2deg) scale(1.05);
	}
}

.paper-window {
	position: relative;
	display: flex;
	flex-direction: column;
	isolation: isolate;
	width: min(100%, 900px);
	min-height: clamp(390px, calc(100svh - 286px), 500px);
	overflow: hidden;
	border: 1px solid var(--glass-edge);
	border-radius: 32px;
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.32), transparent 32%),
		radial-gradient(circle at 78% 16%, color-mix(in srgb, var(--product-accent), transparent 92%), transparent 34%),
		linear-gradient(145deg, color-mix(in srgb, var(--product-accent), transparent 96%), transparent 42%),
		var(--panel);
	backdrop-filter: blur(34px) saturate(1.22) contrast(1.02);
	-webkit-backdrop-filter: blur(34px) saturate(1.22) contrast(1.02);
	box-shadow:
		0 8px 22px rgba(52, 70, 104, 0.032),
		0 2px 8px rgba(62, 82, 116, 0.018),
		inset 0 1px 0 rgba(255, 255, 255, 0.64),
		inset 0 -7px 16px rgba(82, 108, 150, 0.008);
	transition:
		background 680ms var(--ease-spring),
		border-color 420ms ease,
		box-shadow 680ms var(--ease-spring);
	will-change: transform, opacity;
	backface-visibility: hidden;
	transform: translateZ(0);
}

.paper-window::before,
.paper-window::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.paper-window::before {
	inset: 0;
	border-radius: inherit;
	background:
		var(--glass-highlight),
		linear-gradient(115deg, transparent 10%, rgba(255, 255, 255, 0.1) 18%, transparent 28%, rgba(255, 255, 255, 0.052) 52%, transparent 64%);
	opacity: 0.46;
	transition: opacity 480ms ease, background 560ms var(--ease-liquid);
}

.paper-window::after {
	left: 14%;
	right: 14%;
	top: -38%;
	height: 58%;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.16);
	filter: blur(34px);
	opacity: 0.22;
	transition: opacity 480ms ease, background 560ms var(--ease-liquid), filter 480ms ease;
}

body[data-theme="dark"] .paper-window {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.018) 46%, rgba(10, 16, 28, 0.1)),
		radial-gradient(circle at 80% 15%, color-mix(in srgb, var(--product-accent), transparent 90%), transparent 31%),
		linear-gradient(145deg, color-mix(in srgb, var(--product-accent), transparent 96%), transparent 46%),
		var(--panel);
	backdrop-filter: blur(30px) saturate(1.14) contrast(1.06) brightness(0.92);
	-webkit-backdrop-filter: blur(30px) saturate(1.14) contrast(1.06) brightness(0.92);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.045),
		inset 0 1px 0 rgba(255, 255, 255, 0.17),
		inset 0 -14px 30px rgba(8, 14, 26, 0.1);
}

body[data-theme="dark"] .paper-window::before {
	opacity: 0.42;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035) 28%, transparent 50%),
		linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.065) 20%, transparent 32%, rgba(255, 255, 255, 0.025) 58%, transparent 70%);
}

body[data-theme="dark"] .paper-window::after {
	background: color-mix(in srgb, var(--product-accent), rgba(255, 255, 255, 0.05) 82%);
	opacity: 0.12;
	filter: blur(40px);
}

.paper-titlebar,
.paper-addressbar,
.paper-content {
	position: relative;
	z-index: 1;
}

.paper-titlebar {
	display: flex;
	align-items: center;
	gap: 8px;
	height: 48px;
	padding: 0 18px;
	background: transparent;
}

body[data-theme="dark"] .paper-titlebar {
	background: transparent;
}

.window-light {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.light-red { background: #ff5f57; }
.light-yellow { background: #febc2e; }
.light-green { background: #28c840; }

.window-title {
	margin-left: auto;
	color: var(--muted);
	font-size: 13px;
}

.paper-addressbar {
	display: none;
}

.paper-addressbar span {
	display: block;
	max-width: 420px;
	margin: 0 auto;
	padding: 8px 16px;
	border: 1px solid var(--glass-edge);
	border-radius: 999px;
	color: var(--muted);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2)),
		rgba(255, 255, 255, 0.28);
	backdrop-filter: blur(18px) saturate(1.2);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54), 0 10px 26px rgba(47, 65, 98, 0.08);
	font-size: 13px;
	text-align: center;
}

body[data-theme="dark"] .paper-addressbar span {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
		rgba(6, 12, 22, 0.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 10px 26px rgba(5, 12, 24, 0.14);
}

.paper-content {
	position: relative;
	isolation: isolate;
	flex: 1 1 auto;
	min-height: 0;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: clamp(22px, 5vw, 54px);
	align-content: center;
	align-items: center;
	padding: clamp(28px, 5vw, 58px);
}

.paper-flow {
	--paper-flow-opacity: 1;
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
	opacity: var(--paper-flow-opacity);
	border-radius: inherit;
	filter: saturate(1.38) contrast(1.04);
	backdrop-filter: blur(8px) saturate(1.18);
	-webkit-backdrop-filter: blur(8px) saturate(1.18);
	transition: opacity 420ms ease, filter 420ms ease;
}

.paper-flow::before,
.paper-flow::after {
	content: "";
	position: absolute;
	pointer-events: none;
	will-change: transform, opacity;
	backface-visibility: hidden;
}

.paper-flow::before {
	inset: -6%;
	background:
		radial-gradient(ellipse at 12% 70%, rgba(68, 170, 255, 0.34), transparent 46%),
		radial-gradient(ellipse at 86% 16%, rgba(114, 246, 214, 0.34), transparent 40%),
		radial-gradient(ellipse at 76% 88%, rgba(255, 188, 205, 0.32), transparent 43%),
		radial-gradient(ellipse at 44% 48%, rgba(167, 145, 255, 0.28), transparent 40%),
		radial-gradient(ellipse at 30% 18%, rgba(255, 255, 255, 0.36), transparent 34%);
	filter: blur(18px);
	animation: paperFlowBreath 8.4s var(--ease-soft) infinite alternate;
}

.paper-flow::after {
	inset: -22%;
	border-radius: 44%;
	background:
		linear-gradient(112deg, transparent 9%, rgba(255, 255, 255, 0.28) 19%, transparent 31%, rgba(122, 213, 255, 0.18) 43%, transparent 57%, rgba(255, 214, 224, 0.2) 70%, transparent 84%),
		radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.2), transparent 56%);
	filter: blur(10px);
	mix-blend-mode: soft-light;
	animation: paperGlassSweep 6.8s var(--ease-soft) infinite alternate;
}

.paper-flow-stream {
	position: absolute;
	display: block;
	width: clamp(320px, 54vw, 840px);
	height: clamp(170px, 28vw, 390px);
	border-radius: 50%;
	background:
		linear-gradient(105deg, transparent 5%, rgba(255, 255, 255, 0.36) 15%, rgba(65, 166, 255, 0.58) 32%, rgba(98, 236, 209, 0.42) 49%, rgba(255, 186, 207, 0.44) 66%, rgba(169, 142, 255, 0.38) 78%, transparent 92%);
	filter: blur(0.2px) drop-shadow(0 18px 40px rgba(73, 151, 232, 0.16));
	-webkit-mask-image: radial-gradient(ellipse at 50% 52%, transparent 0 43%, #000 46%, #000 58%, transparent 62%);
	mask-image: radial-gradient(ellipse at 50% 52%, transparent 0 43%, #000 46%, #000 58%, transparent 62%);
	animation: paperFlowFloat var(--flow-duration, 9s) var(--ease-soft) infinite alternate;
	animation-delay: var(--flow-delay, 0s);
	will-change: transform, opacity;
}

.paper-flow-stream::before,
.paper-flow-stream::after {
	content: "";
	position: absolute;
	inset: 18%;
	border-radius: inherit;
	border: 1px solid rgba(255, 255, 255, 0.24);
	opacity: 0.56;
}

.paper-flow-stream::after {
	inset: 31%;
	border-color: color-mix(in srgb, var(--product-accent), transparent 76%);
	filter: blur(3px);
}

.paper-flow-stream-a {
	left: -20%;
	top: 44%;
	--flow-duration: 8.6s;
	--flow-delay: -2s;
	--flow-opacity: 0.68;
	--flow-mid-opacity: 0.92;
	--flow-start-x: 0;
	--flow-start-y: 0;
	--flow-start-r: -28deg;
	--flow-start-s: 1.02;
	--flow-mid-x: 24px;
	--flow-mid-y: -26px;
	--flow-mid-r: -17deg;
	--flow-mid-s: 1.08;
	--flow-end-x: -18px;
	--flow-end-y: 22px;
	--flow-end-r: -34deg;
	--flow-end-s: 1.04;
}

.paper-flow-stream-b {
	right: -18%;
	top: -20%;
	width: clamp(340px, 58vw, 920px);
	height: clamp(190px, 32vw, 430px);
	--flow-duration: 9.4s;
	--flow-delay: -8s;
	--flow-opacity: 0.6;
	--flow-mid-opacity: 0.84;
	--flow-start-x: 8px;
	--flow-start-y: 0;
	--flow-start-r: 22deg;
	--flow-start-s: 1;
	--flow-mid-x: -28px;
	--flow-mid-y: 22px;
	--flow-mid-r: 34deg;
	--flow-mid-s: 1.05;
	--flow-end-x: 20px;
	--flow-end-y: -16px;
	--flow-end-r: 16deg;
	--flow-end-s: 1.03;
}

.paper-flow-stream-c {
	left: 18%;
	bottom: -24%;
	width: clamp(360px, 64vw, 980px);
	height: clamp(160px, 25vw, 360px);
	--flow-duration: 8.1s;
	--flow-delay: -12s;
	--flow-opacity: 0.56;
	--flow-mid-opacity: 0.78;
	--flow-start-x: -4px;
	--flow-start-y: 10px;
	--flow-start-r: -7deg;
	--flow-start-s: 1.02;
	--flow-mid-x: 26px;
	--flow-mid-y: -18px;
	--flow-mid-r: 2deg;
	--flow-mid-s: 1.07;
	--flow-end-x: -24px;
	--flow-end-y: 18px;
	--flow-end-r: -14deg;
	--flow-end-s: 1;
}

.paper-flow-stream-d {
	left: 22%;
	top: 12%;
	width: clamp(260px, 38vw, 560px);
	height: clamp(190px, 30vw, 420px);
	--flow-duration: 10s;
	--flow-delay: -5s;
	--flow-opacity: 0.42;
	--flow-mid-opacity: 0.64;
	--flow-start-x: 0;
	--flow-start-y: 0;
	--flow-start-r: 54deg;
	--flow-start-s: 0.94;
	--flow-mid-x: -18px;
	--flow-mid-y: 16px;
	--flow-mid-r: 42deg;
	--flow-mid-s: 1.02;
	--flow-end-x: 18px;
	--flow-end-y: -12px;
	--flow-end-r: 61deg;
	--flow-end-s: 0.98;
}

body[data-theme="dark"] .paper-flow {
	--paper-flow-opacity: 0.82;
	filter: saturate(1.1) brightness(0.9);
}

body[data-theme="dark"] .paper-flow::before {
	opacity: 0.78;
	background:
		radial-gradient(ellipse at 12% 70%, rgba(68, 170, 255, 0.22), transparent 46%),
		radial-gradient(ellipse at 86% 16%, rgba(114, 246, 214, 0.18), transparent 40%),
		radial-gradient(ellipse at 76% 88%, rgba(255, 188, 205, 0.14), transparent 43%),
		radial-gradient(ellipse at 44% 48%, rgba(167, 145, 255, 0.18), transparent 40%),
		radial-gradient(ellipse at 30% 18%, rgba(255, 255, 255, 0.1), transparent 34%);
}

body[data-theme="dark"] .paper-flow-stream {
	background:
		linear-gradient(105deg, transparent 5%, rgba(255, 255, 255, 0.16) 15%, rgba(65, 166, 255, 0.38) 32%, rgba(98, 236, 209, 0.24) 49%, rgba(255, 186, 207, 0.24) 66%, rgba(169, 142, 255, 0.28) 78%, transparent 92%);
}

.product-visual {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
}

.product-icon,
.archive-product-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(138px, 20vw, 220px);
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 34px;
	color: #fff;
	background:
		radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.42), transparent 20%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 34%),
		linear-gradient(135deg, var(--product-accent), color-mix(in srgb, var(--product-accent), #ffffff 10%));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.48),
		inset 0 -18px 30px rgba(66, 88, 124, 0.07),
		0 18px 42px color-mix(in srgb, var(--product-accent), transparent 88%);
	transition: background 560ms var(--ease-liquid), box-shadow 560ms var(--ease-liquid), transform 460ms var(--ease-liquid);
}

.product-card.is-active .product-icon {
	transform: translateZ(0);
}

.product-icon::before,
.archive-product-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(125deg, rgba(255, 255, 255, 0.28), transparent 28%, rgba(255, 255, 255, 0.08) 52%, transparent 70%),
		radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.18), transparent 18%);
	opacity: 0.72;
	mix-blend-mode: normal;
}

body[data-theme="dark"] .product-icon::before,
body[data-theme="dark"] .archive-product-icon::before {
	opacity: 0.46;
	background:
		linear-gradient(125deg, rgba(255, 255, 255, 0.38), transparent 30%, rgba(255, 255, 255, 0.12) 56%, transparent 72%),
		radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.24), transparent 18%);
	mix-blend-mode: normal;
}

.product-icon::after,
.archive-product-icon::after {
	content: "";
	position: absolute;
	inset: 10px;
	border-radius: 26px;
	border: 1px solid rgba(255, 255, 255, 0.32);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), inset 0 -16px 30px rgba(0, 0, 0, 0.08);
}

.product-icon span,
.archive-product-icon span {
	position: relative;
	z-index: 1;
	font-family: var(--font-display);
	font-size: clamp(28px, 5vw, 52px);
	font-weight: 850;
	letter-spacing: 0;
}

body[data-theme="dark"] .product-icon span,
body[data-theme="dark"] .archive-product-icon span {
	text-shadow: none;
}

.product-icon img,
.archive-product-icon img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-copy {
	position: relative;
	z-index: 1;
	min-width: 0;
}

.product-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
}

.product-meta span,
.content-card-meta {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 10px;
	border: 1px solid var(--glass-edge);
	border-radius: 999px;
	color: var(--muted);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.16)),
		var(--glass-surface);
	backdrop-filter: blur(14px) saturate(1.18);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
	font-size: 13px;
	font-weight: 650;
	transition: background 420ms var(--ease-liquid), border-color 420ms ease, box-shadow 420ms ease, color 260ms ease;
}

body[data-theme="dark"] .product-meta span,
body[data-theme="dark"] .content-card-meta {
	color: #c8d2e7;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
		rgba(10, 17, 29, 0.3);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.product-copy h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(32px, 5vw, 62px);
	line-height: 1;
	letter-spacing: 0;
}

.product-headline {
	margin: 18px 0 10px;
	color: var(--text);
	font-size: clamp(19px, 2.4vw, 27px);
	font-weight: 720;
	line-height: 1.35;
}

.product-description {
	margin: 0;
	color: var(--muted);
	font-size: 16px;
	line-height: 1.85;
}

.contact-actions {
	position: relative;
	z-index: 4;
	width: min(100%, 620px);
	margin-top: 22px;
}

.contact-action-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.contact-action-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 40px;
	padding: 6px 13px 6px 7px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	color: var(--text);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.2)),
		rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(24px) saturate(1.35);
	-webkit-backdrop-filter: blur(24px) saturate(1.35);
	box-shadow: 0 12px 28px rgba(48, 68, 104, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.72);
	cursor: pointer;
	font-weight: 720;
	transition: transform 240ms var(--ease-liquid), background 360ms var(--ease-liquid), box-shadow 360ms var(--ease-liquid);
}

.contact-action-button:hover,
.contact-action-button:focus-visible,
.contact-action-button.is-active {
	transform: translateY(-2px);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.26)),
		color-mix(in srgb, var(--product-accent), rgba(255, 255, 255, 0.62) 72%);
	box-shadow: 0 16px 34px color-mix(in srgb, var(--product-accent), transparent 76%), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body[data-theme="dark"] .contact-action-button {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
		rgba(12, 20, 34, 0.42);
	box-shadow: 0 12px 30px rgba(5, 12, 24, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

body[data-theme="dark"] .contact-action-button:hover,
body[data-theme="dark"] .contact-action-button:focus-visible,
body[data-theme="dark"] .contact-action-button.is-active {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05)),
		color-mix(in srgb, var(--product-accent), rgba(13, 22, 37, 0.78) 82%);
	box-shadow: 0 16px 36px color-mix(in srgb, var(--product-accent), transparent 88%), inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.contact-action-icon {
	--social-accent: var(--action-accent, var(--product-accent));
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 10px;
	color: #fff;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.48), transparent 44%),
		var(--social-accent);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 8px 18px color-mix(in srgb, var(--social-accent), transparent 70%);
	font-size: 13px;
	font-weight: 850;
}

.contact-action-icon.has-logo-image {
	overflow: hidden;
	padding: 3px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.38)),
		color-mix(in srgb, var(--social-accent), rgba(255, 255, 255, 0.86) 72%);
}

.contact-action-icon svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.contact-action-icon img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 7px;
	object-fit: contain;
}

.contact-action-icon-wechat {
	--social-accent: #2aae67;
}

.contact-action-icon-weibo {
	--social-accent: #e6162d;
}

.contact-action-icon-xiaohongshu {
	--social-accent: #ff2442;
}

.contact-action-icon-douyin {
	--social-accent: #111318;
}

.contact-action-icon-taobao {
	--social-accent: #ff6a00;
}

.contact-popover {
	position: absolute;
	left: 0;
	right: 0;
	bottom: calc(100% + 14px);
	z-index: 8;
	max-width: 520px;
	padding: 16px 18px;
	border: 1px solid rgba(255, 255, 255, 0.82);
	border-radius: 22px;
	color: var(--text);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.42)),
		rgba(255, 255, 255, 0.46);
	backdrop-filter: blur(30px) saturate(1.42);
	-webkit-backdrop-filter: blur(30px) saturate(1.42);
	box-shadow: 0 18px 46px rgba(42, 60, 92, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.78);
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px) scale(0.98);
	transition: opacity 260ms var(--ease-liquid), transform 320ms var(--ease-liquid);
}

body[data-theme="dark"] .contact-popover {
	border-color: rgba(255, 255, 255, 0.16);
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
		rgba(13, 21, 35, 0.82);
	box-shadow: 0 20px 50px rgba(5, 12, 24, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.contact-popover::after {
	content: "";
	position: absolute;
	left: 42px;
	bottom: -7px;
	width: 14px;
	height: 14px;
	border-right: 1px solid rgba(255, 255, 255, 0.82);
	border-bottom: 1px solid rgba(255, 255, 255, 0.82);
	background: rgba(255, 255, 255, 0.58);
	transform: rotate(45deg);
	backdrop-filter: blur(20px);
}

body[data-theme="dark"] .contact-popover::after {
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(13, 21, 35, 0.82);
}

.contact-actions.is-open .contact-popover {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.contact-popover-title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 820;
}

.contact-popover-content {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
	white-space: pre-line;
}

.contact-popover-link {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	margin-top: 12px;
	padding: 0 12px;
	border-radius: 999px;
	color: #fff;
	background: var(--product-accent);
	font-size: 13px;
	font-weight: 760;
}

.contact-popover-link[hidden] {
	display: none;
}

.product-link {
	position: relative;
	z-index: 1;
	overflow: hidden;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	margin-top: 24px;
	padding: 7px 8px 7px 19px;
	border: 2px solid rgba(249, 250, 251, 0.9);
	border-radius: 999px;
	color: #172033;
	background: rgba(249, 250, 251, 0.84);
	backdrop-filter: blur(14px) saturate(1.18);
	-webkit-backdrop-filter: blur(14px) saturate(1.18);
	box-shadow:
		0 16px 34px rgba(48, 68, 104, 0.14),
		inset 0 1px 0 rgba(255, 255, 255, 0.78);
	font-size: 16px;
	font-weight: 780;
	line-height: 1;
	transition:
		color 300ms ease,
		transform 220ms var(--ease-liquid),
		border-color 360ms ease,
		box-shadow 480ms var(--ease-liquid);
}

.product-link:hover,
.product-link:focus-visible {
	transform: translateY(-2px);
	color: #f9fafb;
	border-color: rgba(249, 250, 251, 0.96);
	box-shadow:
		0 18px 42px rgba(16, 185, 129, 0.24),
		0 8px 18px rgba(48, 68, 104, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-link::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -100%;
	z-index: 0;
	width: 100%;
	aspect-ratio: 1;
	border-radius: inherit;
	background: #10b981;
	pointer-events: none;
	transform: translateY(-50%) scale(1);
	transition:
		left 700ms var(--ease-liquid),
		transform 700ms var(--ease-liquid);
}

.product-link:hover::before,
.product-link:focus-visible::before {
	left: 0;
	transform: translateY(-50%) scale(1.5);
}

.product-link-label {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}

.product-link-arrow {
	position: relative;
	z-index: 1;
	width: 32px;
	height: 32px;
	flex: 0 0 auto;
	padding: 8px;
	border: 1px solid rgba(31, 41, 55, 0.74);
	border-radius: 999px;
	color: #172033;
	background: transparent;
	transform: rotate(45deg);
	transition:
		transform 300ms linear,
		background 300ms ease,
		border-color 300ms ease;
}

.product-link:hover .product-link-arrow,
.product-link:focus-visible .product-link-arrow {
	border-color: transparent;
	background: #f9fafb;
	transform: rotate(90deg);
}

.product-link-arrow path {
	fill: currentColor;
	transition: fill 300ms ease;
}

.product-switcher {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 1120px;
	transition: transform 360ms var(--ease-spring);
}

body.is-product-switching .product-switcher {
	transform: translate3d(0, 2px, 0);
}

.product-pill {
	--duration: 8s;
	--easing: linear;
	--pill-color-1: rgba(255, 233, 196, 0.24);
	--pill-color-2: rgba(126, 208, 255, 0.24);
	--pill-color-3: rgba(211, 196, 255, 0.21);
	--pill-color-4: rgba(180, 247, 255, 0.25);
	--pill-shadow: rgba(126, 195, 244, 0.12);
	--pill-shadow-inset-top: rgba(255, 255, 255, 0.94);
	--pill-shadow-inset-bottom: rgba(138, 200, 240, 0.14);
	--pill-radial-inner: #fbfeff;
	--pill-radial-outer: #edf9ff;
	--pill-text-color: #2c4964;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-height: 42px;
	max-width: 220px;
	padding: 5px 12px 5px 6px;
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 999px;
	color: var(--pill-text-color);
	background: radial-gradient(circle, var(--pill-radial-inner), var(--pill-radial-outer) 82%);
	backdrop-filter: blur(18px) saturate(1.2);
	box-shadow:
		0 0 14px var(--pill-shadow),
		0 12px 26px rgba(83, 143, 194, 0.06);
	cursor: pointer;
	transition:
		transform 360ms var(--ease-spring),
		background 620ms var(--ease-spring),
		box-shadow 620ms var(--ease-spring),
		border-color 420ms ease,
		color 260ms ease;
	will-change: transform;
}

.product-pill::before {
	content: "";
	z-index: 3;
	position: absolute;
	inset: 0;
	border-radius: inherit;
	box-shadow:
		inset 0 3px 12px var(--pill-shadow-inset-top),
		inset 0 -3px 5px var(--pill-shadow-inset-bottom);
	pointer-events: none;
	transition: box-shadow 420ms ease;
}

body[data-theme="dark"] .product-pill {
	--pill-text-color: #23415c;
	border-color: rgba(255, 255, 255, 0.7);
	background: radial-gradient(circle, var(--pill-radial-inner), var(--pill-radial-outer) 82%);
	box-shadow:
		0 0 14px rgba(150, 211, 255, 0.12),
		0 12px 30px rgba(3, 9, 20, 0.1);
}

.product-pill:hover,
.product-pill.is-active {
	--duration: 2600ms;
	transform: translate3d(0, -3px, 0);
	background: radial-gradient(circle, #ffffff, #e7f7ff 82%);
	box-shadow:
		0 0 18px rgba(118, 193, 246, 0.16),
		0 16px 34px rgba(78, 143, 198, 0.08);
}

body[data-theme="dark"] .product-pill:hover,
body[data-theme="dark"] .product-pill.is-active {
	background: radial-gradient(circle, #ffffff, #e7f7ff 82%);
	box-shadow:
		0 0 18px rgba(150, 211, 255, 0.18),
		0 16px 34px rgba(3, 9, 20, 0.11);
}

.pill-motion {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	border-radius: inherit;
	pointer-events: none;
	-webkit-mask-image: -webkit-radial-gradient(white, black);
}

.pill-motion-circle {
	position: absolute;
	left: 0;
	top: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	filter: blur(var(--blur, 7px));
	background: var(--background, transparent);
	transform: translate(var(--x, 0), var(--y, 0)) translateZ(0);
	animation: var(--animation, none) var(--duration) var(--easing) infinite;
	backface-visibility: hidden;
	will-change: transform;
}

.pill-motion-circle-1,
.pill-motion-circle-9,
.pill-motion-circle-10 {
	--background: var(--pill-color-4);
}

.pill-motion-circle-3,
.pill-motion-circle-4 {
	--background: var(--pill-color-2);
	--blur: 10px;
}

.pill-motion-circle-5,
.pill-motion-circle-6 {
	--background: var(--pill-color-3);
	--blur: 12px;
}

.pill-motion-circle-2,
.pill-motion-circle-7,
.pill-motion-circle-8,
.pill-motion-circle-11,
.pill-motion-circle-12 {
	--background: var(--pill-color-1);
	--blur: 12px;
}

.pill-motion-circle-1 {
	--x: 0;
	--y: -40px;
	--animation: pill-circle-1;
}

.pill-motion-circle-2 {
	--x: 92px;
	--y: 8px;
	--animation: pill-circle-2;
}

.pill-motion-circle-3 {
	--x: -12px;
	--y: -12px;
	--animation: pill-circle-3;
}

.pill-motion-circle-4 {
	--x: 80px;
	--y: -12px;
	--animation: pill-circle-4;
}

.pill-motion-circle-5 {
	--x: 12px;
	--y: -4px;
	--animation: pill-circle-5;
}

.pill-motion-circle-6 {
	--x: 56px;
	--y: 16px;
	--animation: pill-circle-6;
}

.pill-motion-circle-7 {
	--x: 8px;
	--y: 28px;
	--animation: pill-circle-7;
}

.pill-motion-circle-8 {
	--x: 28px;
	--y: -4px;
	--animation: pill-circle-8;
}

.pill-motion-circle-9 {
	--x: 20px;
	--y: -12px;
	--animation: pill-circle-9;
}

.pill-motion-circle-10 {
	--x: 64px;
	--y: 16px;
	--animation: pill-circle-10;
}

.pill-motion-circle-11 {
	--x: 4px;
	--y: 4px;
	--animation: pill-circle-11;
}

.pill-motion-circle-12 {
	--blur: 10px;
	--x: 52px;
	--y: 4px;
	--animation: pill-circle-12;
}

.pill-icon {
	position: relative;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	flex: 0 0 auto;
	border-radius: 10px;
	color: #fff;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 42%),
		var(--product-accent);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34), 0 8px 18px color-mix(in srgb, var(--product-accent), transparent 78%);
	font-size: 11px;
	font-weight: 840;
	transition:
		background 620ms var(--ease-spring),
		box-shadow 620ms var(--ease-spring),
		transform 420ms var(--ease-spring),
		filter 360ms ease;
}

body[data-theme="dark"] .pill-icon {
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.42),
		inset 0 -8px 18px rgba(8, 14, 26, 0.1),
		0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-pill:hover .pill-icon,
.product-pill.is-active .pill-icon {
	transform: translate3d(0, -1px, 0) scale(1.08);
	filter: saturate(1.08);
}

.product-pill > span:last-child {
	position: relative;
	z-index: 4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--pill-text-color);
	font-size: 14px;
	font-weight: 680;
}

@keyframes pill-circle-1 {
	33% {
		transform: translate(0, 16px) translateZ(0);
	}

	66% {
		transform: translate(12px, 64px) translateZ(0);
	}
}

@keyframes pill-circle-2 {
	33% {
		transform: translate(80px, -10px) translateZ(0);
	}

	66% {
		transform: translate(72px, -48px) translateZ(0);
	}
}

@keyframes pill-circle-3 {
	33% {
		transform: translate(20px, 12px) translateZ(0);
	}

	66% {
		transform: translate(12px, 4px) translateZ(0);
	}
}

@keyframes pill-circle-4 {
	33% {
		transform: translate(76px, -12px) translateZ(0);
	}

	66% {
		transform: translate(112px, -8px) translateZ(0);
	}
}

@keyframes pill-circle-5 {
	33% {
		transform: translate(84px, 28px) translateZ(0);
	}

	66% {
		transform: translate(40px, -32px) translateZ(0);
	}
}

@keyframes pill-circle-6 {
	33% {
		transform: translate(28px, -16px) translateZ(0);
	}

	66% {
		transform: translate(76px, -56px) translateZ(0);
	}
}

@keyframes pill-circle-7 {
	33% {
		transform: translate(8px, 28px) translateZ(0);
	}

	66% {
		transform: translate(20px, -60px) translateZ(0);
	}
}

@keyframes pill-circle-8 {
	33% {
		transform: translate(32px, -4px) translateZ(0);
	}

	66% {
		transform: translate(56px, -20px) translateZ(0);
	}
}

@keyframes pill-circle-9 {
	33% {
		transform: translate(20px, -12px) translateZ(0);
	}

	66% {
		transform: translate(80px, -8px) translateZ(0);
	}
}

@keyframes pill-circle-10 {
	33% {
		transform: translate(68px, 20px) translateZ(0);
	}

	66% {
		transform: translate(100px, 28px) translateZ(0);
	}
}

@keyframes pill-circle-11 {
	33% {
		transform: translate(4px, 4px) translateZ(0);
	}

	66% {
		transform: translate(68px, 20px) translateZ(0);
	}
}

@keyframes pill-circle-12 {
	33% {
		transform: translate(56px, 0) translateZ(0);
	}

	66% {
		transform: translate(60px, -32px) translateZ(0);
	}
}

.product-pill.has-contact-burst {
	isolation: isolate;
	overflow: visible;
}

.product-pill.has-contact-burst.is-bursting {
	border-color: color-mix(in srgb, var(--product-accent), rgba(255, 255, 255, 0.8) 58%);
	color: color-mix(in srgb, var(--product-accent), #172033 36%);
	box-shadow:
		0 0 25px color-mix(in srgb, var(--product-accent), transparent 60%),
		0 14px 32px color-mix(in srgb, var(--product-accent), transparent 78%),
		inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

body[data-theme="dark"] .product-pill.has-contact-burst.is-bursting {
	color: #f8fbff;
	border-color: color-mix(in srgb, var(--product-accent), rgba(255, 255, 255, 0.36) 54%);
	box-shadow:
		0 0 25px color-mix(in srgb, var(--product-accent), transparent 74%),
		0 14px 32px color-mix(in srgb, var(--product-accent), transparent 86%),
		inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.contact-burst-icons {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.contact-burst-icon {
	position: absolute;
	top: 20%;
	left: 20%;
	display: grid;
	place-items: center;
	width: 22px;
	height: 22px;
	border-radius: 8px;
	color: #fffdef;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 46%),
		var(--action-accent, var(--product-accent));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
	opacity: 0;
	filter: drop-shadow(0 0 0 #fffdef);
	transform: translate3d(0, 0, 0) scale(0.42) rotate(-12deg);
	transition:
		top 1s cubic-bezier(0.05, 0.83, 0.43, 0.96),
		left 1s cubic-bezier(0.05, 0.83, 0.43, 0.96),
		width 1s cubic-bezier(0.05, 0.83, 0.43, 0.96),
		height 1s cubic-bezier(0.05, 0.83, 0.43, 0.96),
		opacity 180ms ease,
		filter 1s cubic-bezier(0.05, 0.83, 0.43, 0.96),
		transform 1s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.contact-burst-icon svg {
	width: 70%;
	height: 70%;
	fill: currentColor;
}

.contact-burst-icon img {
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

.contact-burst-icon-2 {
	top: 45%;
	left: 45%;
	width: 18px;
	height: 18px;
	transition-timing-function: cubic-bezier(0, 0.4, 0, 1.01);
}

.contact-burst-icon-3 {
	top: 40%;
	left: 40%;
	width: 14px;
	height: 14px;
	transition-timing-function: cubic-bezier(0, 0.4, 0, 1.01);
}

.contact-burst-icon-4 {
	top: 20%;
	left: 40%;
	width: 16px;
	height: 16px;
	transition-duration: 0.8s;
	transition-timing-function: cubic-bezier(0, 0.4, 0, 1.01);
}

.contact-burst-icon-5 {
	top: 25%;
	left: 45%;
	width: 18px;
	height: 18px;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0, 0.4, 0, 1.01);
}

.contact-burst-icon-6 {
	top: 5%;
	left: 50%;
	width: 14px;
	height: 14px;
	transition-duration: 0.8s;
	transition-timing-function: ease;
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon {
	opacity: 1;
	filter: drop-shadow(0 0 10px rgba(255, 253, 239, 0.98));
	transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon-1 {
	top: -80%;
	left: -30%;
	width: 25px;
	height: 25px;
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon-2 {
	top: -40%;
	left: 16%;
	width: 18px;
	height: 18px;
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon-3 {
	top: 95%;
	left: 2%;
	width: 14px;
	height: 14px;
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon-4 {
	top: -70%;
	left: 75%;
	width: 16px;
	height: 16px;
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon-5 {
	top: 35%;
	left: 115%;
	width: 18px;
	height: 18px;
}

.product-pill.has-contact-burst.is-bursting .contact-burst-icon-6 {
	top: 75%;
	left: 60%;
	width: 14px;
	height: 14px;
}

.product-pill.has-contact-burst > .pill-icon,
.product-pill.has-contact-burst > span:last-child {
	z-index: 2;
}

.reward-widget {
	position: fixed;
	left: clamp(22px, 8vw, 240px);
	bottom: max(112px, calc(env(safe-area-inset-bottom) + 112px));
	z-index: 46;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
	will-change: transform;
	backface-visibility: hidden;
	animation: rewardWidgetFloat 3.2s ease-in-out infinite;
}

.reward-widget.is-open {
	animation: none;
	transform: translate3d(0, 0, 0);
}

.reward-actions {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.reward-trigger {
	position: relative;
	isolation: isolate;
	overflow: visible;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 46px;
	padding: 6px 15px 6px 7px;
	border: 1px solid var(--glass-edge);
	border-radius: 999px;
	color: var(--text);
	background:
		var(--glass-highlight),
		linear-gradient(180deg, var(--glass-surface-strong), var(--glass-surface));
	backdrop-filter: blur(26px) saturate(1.35) contrast(1.04);
	-webkit-backdrop-filter: blur(26px) saturate(1.35) contrast(1.04);
	box-shadow: 0 16px 38px rgba(47, 64, 96, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.62);
	cursor: pointer;
	font-weight: 760;
	transition:
		transform 260ms var(--ease-liquid),
		background 420ms var(--ease-liquid),
		box-shadow 420ms var(--ease-liquid);
}

.reward-list-trigger {
	margin-top: 34px;
	animation-delay: -1.1s;
}

.reward-list-trigger::before {
	animation-delay: -0.7s;
}

.reward-list-trigger::after {
	background:
		radial-gradient(circle at 27% 50%, rgba(126, 224, 160, 0.26), transparent 28%),
		radial-gradient(circle at 74% 44%, rgba(90, 183, 255, 0.22), transparent 34%);
	animation-delay: -0.5s;
}

.reward-trigger::before {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: 1;
	border-radius: inherit;
	background: linear-gradient(120deg, rgba(255, 255, 255, 0.44), transparent 38%, rgba(255, 255, 255, 0.22) 58%, transparent 76%);
	opacity: 0.72;
	pointer-events: none;
	will-change: transform, opacity;
	backface-visibility: hidden;
	animation: rewardSurfaceSweep 2.8s ease-in-out infinite;
}

.reward-trigger::after {
	content: "";
	position: absolute;
	inset: -8px -10px;
	z-index: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at 27% 50%, rgba(255, 126, 126, 0.28), transparent 28%),
		radial-gradient(circle at 74% 44%, rgba(126, 182, 255, 0.18), transparent 34%);
	filter: blur(9px);
	opacity: 0.46;
	pointer-events: none;
	will-change: transform, opacity;
	backface-visibility: hidden;
	animation: rewardGlowPulse 2.2s ease-in-out infinite;
}

.reward-trigger.is-active,
.reward-trigger:hover,
.reward-trigger:focus-visible {
	transform: translate3d(0, -3px, 0);
	box-shadow: 0 20px 46px rgba(47, 64, 96, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.reward-trigger-mark {
	--reward-mark-shadow: rgba(255, 126, 126, 0.22);
	--reward-mark-shadow-strong: rgba(255, 126, 126, 0.32);
	position: relative;
	z-index: 2;
	overflow: hidden;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	border-radius: 13px;
	color: #fff;
	background: linear-gradient(145deg, #ffb86c, #ff6f91);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 10px 20px var(--reward-mark-shadow);
	font-size: 13px;
	font-weight: 820;
	will-change: transform, box-shadow;
	animation: rewardMarkBreathe 1.9s ease-in-out infinite;
}

.reward-trigger-mark::after {
	content: "";
	position: absolute;
	inset: -38% -72%;
	background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.7) 50%, transparent 64%);
	transform: translate3d(-42%, 0, 0) rotate(18deg);
	will-change: transform, opacity;
	backface-visibility: hidden;
	animation: rewardMarkShine 2.4s ease-in-out infinite;
}

.reward-trigger > span:last-child {
	position: relative;
	z-index: 2;
}

.reward-list-trigger-mark {
	--reward-mark-shadow: rgba(90, 183, 255, 0.22);
	--reward-mark-shadow-strong: rgba(90, 183, 255, 0.32);
	background: linear-gradient(145deg, #8adf9a, #5ab7ff);
	animation-delay: -0.4s;
}

.reward-list-trigger-mark::after {
	animation-delay: -1s;
}

.reward-card {
	position: absolute;
	left: 0;
	bottom: calc(100% + 14px);
	z-index: 4;
	width: min(326px, calc(100vw - 44px));
	padding: 18px;
	border: 1px solid var(--glass-edge);
	border-radius: 24px;
	color: var(--text);
	background:
		var(--glass-highlight),
		linear-gradient(180deg, var(--glass-surface-strong), var(--glass-surface));
	backdrop-filter: blur(34px) saturate(1.45) contrast(1.06);
	-webkit-backdrop-filter: blur(34px) saturate(1.45) contrast(1.06);
	box-shadow: 0 24px 70px rgba(45, 63, 96, 0.18), var(--glass-shadow);
	opacity: 0;
	pointer-events: none;
	transform: translate3d(0, 14px, 0) scale(0.96);
	transform-origin: 34px 100%;
	transition:
		opacity 240ms ease,
		transform 320ms var(--ease-liquid);
}

.reward-card::after {
	content: "";
	position: absolute;
	left: 30px;
	bottom: -7px;
	width: 14px;
	height: 14px;
	border-right: 1px solid var(--glass-edge);
	border-bottom: 1px solid var(--glass-edge);
	background: color-mix(in srgb, var(--panel-strong), transparent 8%);
	transform: rotate(45deg);
}

.reward-card.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translate3d(0, 0, 0) scale(1);
}

.reward-list-card {
	left: 68px;
	width: min(410px, calc(100vw - 44px));
	max-height: min(520px, calc(100vh - 186px));
	overflow: auto;
	transform-origin: 74px 100%;
	scrollbar-width: thin;
}

.reward-list-card::after {
	left: 66px;
}

.reward-card-kicker {
	margin: 0 0 6px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 760;
}

.reward-card h2 {
	margin: 0;
	font-family: var(--font-display);
	font-size: 22px;
	line-height: 1.2;
	letter-spacing: 0;
}

.reward-card-description {
	margin: 8px 0 14px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.6;
}

.reward-qr-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.reward-qr-item {
	display: grid;
	gap: 8px;
	text-align: center;
}

.reward-qr-item strong {
	font-size: 13px;
	font-weight: 760;
}

.reward-qr-box {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.56);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.reward-qr-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reward-qr-box span {
	padding: 10px;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.45;
}

.reward-list {
	display: grid;
	gap: 12px;
}

.reward-list-item {
	padding: 0 0 12px;
	border-bottom: 1px solid var(--line);
}

.reward-list-item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.reward-list-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}

.reward-list-name,
.reward-list-amount {
	display: grid;
	gap: 3px;
	min-width: 0;
}

.reward-list-name em,
.reward-list-amount em,
.reward-list-meta dt,
.reward-list-message span {
	color: var(--muted);
	font-size: 11px;
	font-style: normal;
	font-weight: 720;
	line-height: 1.2;
}

.reward-list-name strong {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 780;
}

.reward-list-amount {
	flex: 0 0 auto;
	align-items: end;
	color: #ff6f7f;
	font-size: 15px;
	font-weight: 820;
}

.reward-list-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin: 9px 0 0;
}

.reward-list-meta div {
	display: grid;
	gap: 2px;
}

.reward-list-meta dd {
	margin: 0;
	font-size: 12px;
	font-weight: 680;
}

.reward-list-message {
	margin: 9px 0 0;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.32);
	color: var(--text);
	font-size: 12px;
	line-height: 1.55;
}

.reward-list-message span {
	display: block;
	margin-bottom: 4px;
}

.reward-list-empty {
	margin: 12px 0 0;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.32);
	color: var(--muted);
	font-size: 13px;
	text-align: center;
}

body[data-theme="dark"] .reward-trigger,
body[data-theme="dark"] .reward-card {
	background:
		var(--glass-highlight),
		linear-gradient(180deg, var(--glass-surface-strong), var(--glass-surface));
	box-shadow: 0 22px 60px rgba(5, 12, 24, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

body[data-theme="dark"] .reward-card::after {
	background: color-mix(in srgb, var(--panel-strong), transparent 10%);
}

body[data-theme="dark"] .reward-qr-box {
	background: rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .reward-list-message,
body[data-theme="dark"] .reward-list-empty {
	background: rgba(255, 255, 255, 0.06);
}

@keyframes rewardWidgetFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(-0.4deg);
	}

	42% {
		transform: translate3d(8px, -10px, 0) rotate(0.8deg);
	}

	72% {
		transform: translate3d(3px, -4px, 0) rotate(-0.7deg);
	}
}

@keyframes rewardSurfaceSweep {
	0%,
	100% {
		transform: translate3d(-3%, 0, 0);
		opacity: 0.56;
	}

	50% {
		transform: translate3d(5%, -1px, 0);
		opacity: 0.86;
	}
}

@keyframes rewardGlowPulse {
	0%,
	100% {
		transform: scale(0.94);
		opacity: 0.34;
	}

	50% {
		transform: scale(1.08);
		opacity: 0.66;
	}
}

@keyframes rewardMarkBreathe {
	0%,
	100% {
		transform: scale(1);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 10px 20px var(--reward-mark-shadow);
	}

	50% {
		transform: scale(1.1);
		box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64), 0 14px 26px var(--reward-mark-shadow-strong);
	}
}

/* Keep invisible work from consuming CPU without changing any visible animation. */
body.is-page-hidden *,
body.is-page-hidden *::before,
body.is-page-hidden *::after,
.is-performance-offscreen,
.is-performance-offscreen *,
.is-performance-offscreen::before,
.is-performance-offscreen::after,
.is-performance-offscreen *::before,
.is-performance-offscreen *::after {
	animation-play-state: paused !important;
}

@keyframes rewardMarkShine {
	0%,
	42% {
		transform: translate3d(-62%, 0, 0) rotate(18deg);
		opacity: 0;
	}

	58% {
		opacity: 0.9;
	}

	78%,
	100% {
		transform: translate3d(62%, 0, 0) rotate(18deg);
		opacity: 0;
	}
}

.site-dock {
	position: fixed;
	left: 50%;
	bottom: max(20px, env(safe-area-inset-bottom));
	z-index: 40;
	isolation: isolate;
	overflow: hidden;
	display: flex;
	align-items: end;
	gap: 12px;
	max-width: min(calc(100vw - 28px), 880px);
	padding: 12px;
	border: 1px solid var(--dock-border);
	border-radius: 30px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08) 46%, rgba(255, 255, 255, 0.18)),
		linear-gradient(115deg, rgba(255, 255, 255, 0.18), transparent 36%, rgba(255, 255, 255, 0.08) 72%),
		var(--dock-bg);
	backdrop-filter: blur(46px) saturate(1.6) contrast(1.08);
	-webkit-backdrop-filter: blur(46px) saturate(1.6) contrast(1.08);
	box-shadow: var(--dock-shadow), var(--glass-shadow);
	transform: translateX(-50%);
	transition:
		background 520ms var(--ease-liquid),
		border-color 420ms ease,
		box-shadow 520ms var(--ease-liquid),
		backdrop-filter 420ms ease;
}

@media (max-width: 767px) {
	.reward-widget {
		display: flex !important;
		position: absolute;
		left: clamp(18px, 6vw, 30px);
		right: clamp(18px, 6vw, 30px);
		bottom: 22px;
		z-index: 12;
		max-width: none;
		width: auto;
		animation: rewardWidgetFloat 3.2s ease-in-out infinite;
	}

	.reward-widget .reward-actions {
		width: 100%;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
	}

	.reward-widget .reward-list-trigger {
		margin-top: 0;
	}

	.reward-widget .reward-trigger {
		min-height: 40px;
		padding: 5px 12px 5px 6px;
		font-size: 13px;
		white-space: nowrap;
		box-shadow: 0 10px 26px rgba(47, 64, 96, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.66);
	}

	.reward-widget .reward-trigger-mark {
		width: 30px;
		height: 30px;
		border-radius: 12px;
	}

	.reward-widget .reward-card {
		left: 0;
		bottom: calc(100% + 10px);
		width: min(320px, calc(100vw - 56px));
		max-height: min(360px, calc(100vh - 210px));
		max-height: min(360px, calc(100svh - 210px));
		overflow: auto;
		padding: 15px;
		border-radius: 20px;
	}

	.reward-widget .reward-list-card {
		left: auto;
		right: 0;
		width: min(340px, calc(100vw - 56px));
		transform-origin: calc(100% - 34px) 100%;
	}

	.reward-widget .reward-list-card::after {
		left: auto;
		right: 30px;
	}
}

.site-dock::before,
.site-dock::after {
	content: "";
	position: absolute;
	pointer-events: none;
	z-index: 0;
}

.site-dock::before {
	inset: 1px;
	border-radius: inherit;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.04) 48%, rgba(255, 255, 255, 0.16)),
		linear-gradient(110deg, transparent 14%, rgba(255, 255, 255, 0.22) 22%, transparent 35%, rgba(255, 255, 255, 0.12) 64%, transparent 78%);
	opacity: 0.74;
}

.site-dock::after {
	left: 10%;
	right: 10%;
	top: -44px;
	height: 72px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.38);
	filter: blur(26px);
	opacity: 0.34;
}

body[data-theme="dark"] .site-dock {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018) 48%, rgba(255, 255, 255, 0.03)),
		linear-gradient(115deg, rgba(255, 255, 255, 0.036), transparent 40%, rgba(255, 255, 255, 0.02) 76%),
		var(--dock-bg);
	backdrop-filter: blur(68px) saturate(1.08) contrast(1.18) brightness(0.96);
	-webkit-backdrop-filter: blur(68px) saturate(1.08) contrast(1.18) brightness(0.96);
	box-shadow:
		0 24px 72px rgba(3, 9, 20, 0.36),
		0 8px 30px color-mix(in srgb, var(--active-accent), transparent 94%),
		inset 0 1px 0 rgba(255, 255, 255, 0.17),
		inset 0 -14px 30px rgba(8, 14, 26, 0.1);
}

body[data-theme="dark"] .site-dock::before {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.01) 50%, rgba(255, 255, 255, 0.032)),
		linear-gradient(110deg, transparent 16%, rgba(255, 255, 255, 0.075) 24%, transparent 38%, rgba(255, 255, 255, 0.022) 66%, transparent 80%);
	opacity: 0.68;
}

body[data-theme="dark"] .site-dock::after {
	background: color-mix(in srgb, var(--active-accent), rgba(255, 255, 255, 0.08) 82%);
	opacity: 0.1;
}

.dock-glass {
	position: absolute;
	inset: 0;
	z-index: 0;
	border-radius: inherit;
	background:
		radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.42), transparent 24%),
		radial-gradient(circle at 76% 100%, color-mix(in srgb, var(--active-accent), transparent 76%), transparent 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%);
	pointer-events: none;
	transition: background 560ms var(--ease-liquid), opacity 420ms ease;
}

body[data-theme="dark"] .dock-glass {
	background:
		radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.12), transparent 24%),
		radial-gradient(circle at 76% 100%, color-mix(in srgb, var(--active-accent), transparent 92%), transparent 38%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent 50%);
	opacity: 0.64;
}

.dock-motion {
	--duration: 10.5s;
	--easing: linear;
	--pill-color-1: rgba(255, 233, 196, 0.21);
	--pill-color-2: rgba(126, 208, 255, 0.23);
	--pill-color-3: rgba(211, 196, 255, 0.19);
	--pill-color-4: rgba(180, 247, 255, 0.24);
	opacity: 0.84;
}

body[data-theme="dark"] .dock-motion {
	opacity: 0.5;
}

.dock-motion .pill-motion-circle {
	--x: 0;
	--y: 0;
	--blur: 18px;
	width: clamp(92px, 10vw, 160px);
	height: clamp(92px, 10vw, 160px);
	filter: blur(var(--blur, 18px));
	opacity: 0.9;
}

.dock-motion .pill-motion-circle-1 {
	left: -4%;
	top: -26px;
	--animation: dock-flow-a;
}

.dock-motion .pill-motion-circle-2 {
	left: 18%;
	top: 24px;
	--animation: dock-flow-b;
	animation-delay: -1.2s;
}

.dock-motion .pill-motion-circle-3 {
	left: 40%;
	top: -34px;
	--animation: dock-flow-c;
	animation-delay: -2.4s;
}

.dock-motion .pill-motion-circle-4 {
	left: 62%;
	top: 16px;
	--animation: dock-flow-a;
	animation-delay: -3s;
}

.dock-motion .pill-motion-circle-5 {
	left: 84%;
	top: -28px;
	--animation: dock-flow-b;
	animation-delay: -4.2s;
}

.dock-motion .pill-motion-circle-6 {
	left: 86%;
	top: 22px;
	--animation: dock-flow-c;
	animation-delay: -5s;
}

.dock-motion .pill-motion-circle-7 {
	left: 66%;
	top: -30px;
	--animation: dock-flow-a;
	animation-delay: -6.2s;
}

.dock-motion .pill-motion-circle-8 {
	left: 78%;
	top: 14px;
	--animation: dock-flow-b;
	animation-delay: -2.8s;
}

.dock-motion .pill-motion-circle-9 {
	left: 88%;
	top: -24px;
	--animation: dock-flow-c;
	animation-delay: -4.6s;
}

.dock-motion .pill-motion-circle-10 {
	left: 96%;
	top: 24px;
	--animation: dock-flow-a;
	animation-delay: -6.8s;
}

.dock-motion .pill-motion-circle-11 {
	left: 34%;
	top: 42px;
	--animation: dock-flow-b;
	animation-delay: -7.4s;
}

.dock-motion .pill-motion-circle-12 {
	left: 70%;
	top: 38px;
	--animation: dock-flow-c;
	animation-delay: -5.8s;
}

@keyframes dock-flow-a {
	0%,
	100% {
		transform: translate3d(-18px, 2px, 0) scale(0.92);
	}

	50% {
		transform: translate3d(34px, -8px, 0) scale(1.08);
	}
}

@keyframes dock-flow-b {
	0%,
	100% {
		transform: translate3d(20px, -6px, 0) scale(1.02);
	}

	50% {
		transform: translate3d(-32px, 10px, 0) scale(0.9);
	}
}

@keyframes dock-flow-c {
	0%,
	100% {
		transform: translate3d(-12px, -8px, 0) scale(0.96);
	}

	50% {
		transform: translate3d(28px, 8px, 0) scale(1.12);
	}
}

.dock-link {
	position: relative;
	z-index: 1;
	display: grid;
	justify-items: center;
	gap: 7px;
	width: clamp(74px, 10vw, 120px);
	color: var(--text);
}

.dock-mark {
	position: relative;
	overflow: hidden;
	display: grid;
	place-items: center;
	width: clamp(48px, 6vw, 64px);
	aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.58);
	border-radius: 20px;
	color: #fff;
	background:
		radial-gradient(circle at 25% 16%, rgba(255, 255, 255, 0.46), transparent 21%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.26), transparent 35%),
		linear-gradient(135deg, var(--dock-accent, #7eb6ff), color-mix(in srgb, var(--dock-accent, #7eb6ff), #ffffff 16%));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), inset 0 -16px 26px rgba(72, 92, 126, 0.08), 0 10px 22px color-mix(in srgb, var(--dock-accent, #7eb6ff), transparent 84%);
	font-size: clamp(13px, 1.6vw, 16px);
	font-weight: 850;
	letter-spacing: 0;
	transition: transform 280ms var(--ease-liquid), background 460ms var(--ease-liquid), box-shadow 460ms var(--ease-liquid);
	will-change: transform;
}

.dock-mark::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(125deg, rgba(255, 255, 255, 0.25), transparent 34%, rgba(255, 255, 255, 0.08) 58%, transparent 78%);
	opacity: 0.78;
	mix-blend-mode: normal;
}

body[data-theme="dark"] .dock-mark {
	border-color: rgba(255, 255, 255, 0.44);
	background:
		radial-gradient(circle at 26% 16%, rgba(255, 255, 255, 0.48), transparent 20%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 34%),
		linear-gradient(135deg, var(--dock-accent, #7eb6ff), color-mix(in srgb, var(--dock-accent, #7eb6ff), #ffffff 18%));
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.58),
		inset 0 -12px 22px rgba(8, 14, 26, 0.12),
		0 8px 20px color-mix(in srgb, var(--dock-accent, #7eb6ff), transparent 90%),
		0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-theme="dark"] .dock-mark::before {
	background: linear-gradient(125deg, rgba(255, 255, 255, 0.28), transparent 34%, rgba(255, 255, 255, 0.08) 58%, transparent 78%);
	mix-blend-mode: normal;
}

.dock-link:hover .dock-mark,
.dock-link:focus-visible .dock-mark {
	transform: translateY(-9px) scale(1.08);
}

.dock-link:active .dock-mark {
	transform: translateY(-4px) scale(1.02);
}

.dock-label {
	overflow-wrap: anywhere;
	color: var(--text);
	font-size: 13px;
	font-weight: 720;
	line-height: 1.2;
	text-align: center;
}

.product-icon.has-mac-share-icon,
.product-icon.has-wallpaper-icon,
.product-icon.has-apple-specs-icon,
.product-icon.has-tutorial-icon,
.product-icon.has-video-shell-icon,
.product-icon.has-contact-icon,
.pill-icon.has-mac-share-icon,
.pill-icon.has-wallpaper-icon,
.pill-icon.has-apple-specs-icon,
.pill-icon.has-tutorial-icon,
.pill-icon.has-video-shell-icon,
.pill-icon.has-contact-icon,
.dock-mark.has-mac-share-icon,
.dock-mark.has-wallpaper-icon,
.dock-mark.has-apple-specs-icon,
.dock-mark.has-tutorial-icon,
.dock-mark.has-video-shell-icon,
.dock-mark.has-contact-icon {
	overflow: visible;
	color: transparent;
	background: transparent;
	border-color: transparent;
	box-shadow: none;
	isolation: isolate;
}

.product-icon.has-mac-share-icon::before,
.product-icon.has-mac-share-icon::after,
.product-icon.has-wallpaper-icon::before,
.product-icon.has-wallpaper-icon::after,
.product-icon.has-apple-specs-icon::before,
.product-icon.has-apple-specs-icon::after,
.product-icon.has-tutorial-icon::before,
.product-icon.has-tutorial-icon::after,
.product-icon.has-video-shell-icon::before,
.product-icon.has-video-shell-icon::after,
.product-icon.has-contact-icon::before,
.product-icon.has-contact-icon::after,
.dock-mark.has-mac-share-icon::before,
.dock-mark.has-wallpaper-icon::before,
.dock-mark.has-apple-specs-icon::before,
.dock-mark.has-tutorial-icon::before,
.dock-mark.has-video-shell-icon::before,
.dock-mark.has-contact-icon::before {
	display: none;
}

.mac-share-hover-icon,
.wallpaper-hover-icon,
.apple-specs-hover-icon,
.tutorial-hover-icon,
.video-shell-hover-icon,
.contact-hover-icon {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	--dynamic-icon-scale: 1;
	--dynamic-icon-animated-scale: 0.995;
	filter: drop-shadow(0 16px 26px rgba(81, 121, 184, 0.16));
}

.mac-share-hover-icon,
.apple-specs-hover-icon,
.tutorial-hover-icon,
.video-shell-hover-icon,
.contact-hover-icon {
	--dynamic-icon-scale: 1.1;
	--dynamic-icon-animated-scale: 1.095;
}

.pill-icon.has-mac-share-icon .mac-share-hover-icon,
.pill-icon.has-wallpaper-icon .wallpaper-hover-icon,
.pill-icon.has-apple-specs-icon .apple-specs-hover-icon,
.pill-icon.has-tutorial-icon .tutorial-hover-icon,
.pill-icon.has-video-shell-icon .video-shell-hover-icon,
.pill-icon.has-contact-icon .contact-hover-icon {
	filter: drop-shadow(0 4px 7px rgba(69, 102, 158, 0.16));
}

.dock-mark.has-mac-share-icon .mac-share-hover-icon,
.dock-mark.has-wallpaper-icon .wallpaper-hover-icon,
.dock-mark.has-apple-specs-icon .apple-specs-hover-icon,
.dock-mark.has-tutorial-icon .tutorial-hover-icon,
.dock-mark.has-video-shell-icon .video-shell-hover-icon,
.dock-mark.has-contact-icon .contact-hover-icon {
	filter: drop-shadow(0 8px 12px rgba(69, 102, 158, 0.16));
}

.mac-share-hover-icon__frame,
.wallpaper-hover-icon__frame,
.apple-specs-hover-icon__frame,
.tutorial-hover-icon__frame,
.video-shell-hover-icon__frame,
.contact-hover-icon__frame {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
	transform: scale(var(--dynamic-icon-scale, 1));
	transition: opacity 180ms ease, transform 420ms var(--ease-liquid);
}

.product-icon.has-mac-share-icon img.mac-share-hover-icon__frame,
.pill-icon.has-mac-share-icon img.mac-share-hover-icon__frame,
.dock-mark.has-mac-share-icon img.mac-share-hover-icon__frame,
.product-icon.has-wallpaper-icon img.wallpaper-hover-icon__frame,
.pill-icon.has-wallpaper-icon img.wallpaper-hover-icon__frame,
.dock-mark.has-wallpaper-icon img.wallpaper-hover-icon__frame,
.product-icon.has-apple-specs-icon img.apple-specs-hover-icon__frame,
.pill-icon.has-apple-specs-icon img.apple-specs-hover-icon__frame,
.dock-mark.has-apple-specs-icon img.apple-specs-hover-icon__frame,
.product-icon.has-tutorial-icon img.tutorial-hover-icon__frame,
.pill-icon.has-tutorial-icon img.tutorial-hover-icon__frame,
.dock-mark.has-tutorial-icon img.tutorial-hover-icon__frame,
.product-icon.has-video-shell-icon img.video-shell-hover-icon__frame,
.pill-icon.has-video-shell-icon img.video-shell-hover-icon__frame,
.dock-mark.has-video-shell-icon img.video-shell-hover-icon__frame,
.product-icon.has-contact-icon img.contact-hover-icon__frame,
.pill-icon.has-contact-icon img.contact-hover-icon__frame,
.dock-mark.has-contact-icon img.contact-hover-icon__frame {
	position: absolute;
	inset: 0;
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: contain;
}

.mac-share-hover-icon__frame--animated,
.wallpaper-hover-icon__frame--animated,
.apple-specs-hover-icon__frame--animated,
.tutorial-hover-icon__frame--animated,
.video-shell-hover-icon__frame--animated,
.contact-hover-icon__frame--animated {
	opacity: 0;
	transform: scale(var(--dynamic-icon-animated-scale, 0.995));
}

.product-icon.has-mac-share-icon:hover .mac-share-hover-icon__frame--static,
.product-icon.has-mac-share-icon:focus-visible .mac-share-hover-icon__frame--static,
.product-pill:hover .pill-icon.has-mac-share-icon .mac-share-hover-icon__frame--static,
.product-pill:focus-visible .pill-icon.has-mac-share-icon .mac-share-hover-icon__frame--static,
.dock-link:hover .dock-mark.has-mac-share-icon .mac-share-hover-icon__frame--static,
.dock-link:focus-visible .dock-mark.has-mac-share-icon .mac-share-hover-icon__frame--static,
.product-icon.has-wallpaper-icon:hover .wallpaper-hover-icon__frame--static,
.product-icon.has-wallpaper-icon:focus-visible .wallpaper-hover-icon__frame--static,
.product-card.is-active .product-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--static,
.product-pill.is-active .pill-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--static,
.product-pill:hover .pill-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--static,
.product-pill:focus-visible .pill-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--static,
.dock-link:hover .dock-mark.has-wallpaper-icon .wallpaper-hover-icon__frame--static,
.dock-link:focus-visible .dock-mark.has-wallpaper-icon .wallpaper-hover-icon__frame--static,
.product-icon.has-apple-specs-icon:hover .apple-specs-hover-icon__frame--static,
.product-icon.has-apple-specs-icon:focus-visible .apple-specs-hover-icon__frame--static,
.product-pill:hover .pill-icon.has-apple-specs-icon .apple-specs-hover-icon__frame--static,
.product-pill:focus-visible .pill-icon.has-apple-specs-icon .apple-specs-hover-icon__frame--static,
.dock-link:hover .dock-mark.has-apple-specs-icon .apple-specs-hover-icon__frame--static,
.dock-link:focus-visible .dock-mark.has-apple-specs-icon .apple-specs-hover-icon__frame--static,
.product-icon.has-tutorial-icon:hover .tutorial-hover-icon__frame--static,
.product-icon.has-tutorial-icon:focus-visible .tutorial-hover-icon__frame--static,
.product-pill:hover .pill-icon.has-tutorial-icon .tutorial-hover-icon__frame--static,
.product-pill:focus-visible .pill-icon.has-tutorial-icon .tutorial-hover-icon__frame--static,
.dock-link:hover .dock-mark.has-tutorial-icon .tutorial-hover-icon__frame--static,
.dock-link:focus-visible .dock-mark.has-tutorial-icon .tutorial-hover-icon__frame--static,
.product-icon.has-video-shell-icon:hover .video-shell-hover-icon__frame--static,
.product-icon.has-video-shell-icon:focus-visible .video-shell-hover-icon__frame--static,
.product-pill:hover .pill-icon.has-video-shell-icon .video-shell-hover-icon__frame--static,
.product-pill:focus-visible .pill-icon.has-video-shell-icon .video-shell-hover-icon__frame--static,
.dock-link:hover .dock-mark.has-video-shell-icon .video-shell-hover-icon__frame--static,
.dock-link:focus-visible .dock-mark.has-video-shell-icon .video-shell-hover-icon__frame--static,
.product-card.is-active .product-icon.has-contact-icon .contact-hover-icon__frame--static,
.product-icon.has-contact-icon:hover .contact-hover-icon__frame--static,
.product-icon.has-contact-icon:focus-visible .contact-hover-icon__frame--static,
.product-pill.is-active .pill-icon.has-contact-icon .contact-hover-icon__frame--static,
.product-pill:hover .pill-icon.has-contact-icon .contact-hover-icon__frame--static,
.product-pill:focus-visible .pill-icon.has-contact-icon .contact-hover-icon__frame--static,
.dock-link:hover .dock-mark.has-contact-icon .contact-hover-icon__frame--static,
.dock-link:focus-visible .dock-mark.has-contact-icon .contact-hover-icon__frame--static {
	opacity: 0;
}

.product-icon.has-mac-share-icon:hover .mac-share-hover-icon__frame--animated,
.product-icon.has-mac-share-icon:focus-visible .mac-share-hover-icon__frame--animated,
.product-pill:hover .pill-icon.has-mac-share-icon .mac-share-hover-icon__frame--animated,
.product-pill:focus-visible .pill-icon.has-mac-share-icon .mac-share-hover-icon__frame--animated,
.dock-link:hover .dock-mark.has-mac-share-icon .mac-share-hover-icon__frame--animated,
.dock-link:focus-visible .dock-mark.has-mac-share-icon .mac-share-hover-icon__frame--animated,
.product-icon.has-wallpaper-icon:hover .wallpaper-hover-icon__frame--animated,
.product-icon.has-wallpaper-icon:focus-visible .wallpaper-hover-icon__frame--animated,
.product-card.is-active .product-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--animated,
.product-pill.is-active .pill-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--animated,
.product-pill:hover .pill-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--animated,
.product-pill:focus-visible .pill-icon.has-wallpaper-icon .wallpaper-hover-icon__frame--animated,
.dock-link:hover .dock-mark.has-wallpaper-icon .wallpaper-hover-icon__frame--animated,
.dock-link:focus-visible .dock-mark.has-wallpaper-icon .wallpaper-hover-icon__frame--animated,
.product-icon.has-apple-specs-icon:hover .apple-specs-hover-icon__frame--animated,
.product-icon.has-apple-specs-icon:focus-visible .apple-specs-hover-icon__frame--animated,
.product-pill:hover .pill-icon.has-apple-specs-icon .apple-specs-hover-icon__frame--animated,
.product-pill:focus-visible .pill-icon.has-apple-specs-icon .apple-specs-hover-icon__frame--animated,
.dock-link:hover .dock-mark.has-apple-specs-icon .apple-specs-hover-icon__frame--animated,
.dock-link:focus-visible .dock-mark.has-apple-specs-icon .apple-specs-hover-icon__frame--animated,
.product-icon.has-tutorial-icon:hover .tutorial-hover-icon__frame--animated,
.product-icon.has-tutorial-icon:focus-visible .tutorial-hover-icon__frame--animated,
.product-pill:hover .pill-icon.has-tutorial-icon .tutorial-hover-icon__frame--animated,
.product-pill:focus-visible .pill-icon.has-tutorial-icon .tutorial-hover-icon__frame--animated,
.dock-link:hover .dock-mark.has-tutorial-icon .tutorial-hover-icon__frame--animated,
.dock-link:focus-visible .dock-mark.has-tutorial-icon .tutorial-hover-icon__frame--animated,
.product-icon.has-video-shell-icon:hover .video-shell-hover-icon__frame--animated,
.product-icon.has-video-shell-icon:focus-visible .video-shell-hover-icon__frame--animated,
.product-pill:hover .pill-icon.has-video-shell-icon .video-shell-hover-icon__frame--animated,
.product-pill:focus-visible .pill-icon.has-video-shell-icon .video-shell-hover-icon__frame--animated,
.dock-link:hover .dock-mark.has-video-shell-icon .video-shell-hover-icon__frame--animated,
.dock-link:focus-visible .dock-mark.has-video-shell-icon .video-shell-hover-icon__frame--animated,
.product-card.is-active .product-icon.has-contact-icon .contact-hover-icon__frame--animated,
.product-icon.has-contact-icon:hover .contact-hover-icon__frame--animated,
.product-icon.has-contact-icon:focus-visible .contact-hover-icon__frame--animated,
.product-pill.is-active .pill-icon.has-contact-icon .contact-hover-icon__frame--animated,
.product-pill:hover .pill-icon.has-contact-icon .contact-hover-icon__frame--animated,
.product-pill:focus-visible .pill-icon.has-contact-icon .contact-hover-icon__frame--animated,
.dock-link:hover .dock-mark.has-contact-icon .contact-hover-icon__frame--animated,
.dock-link:focus-visible .dock-mark.has-contact-icon .contact-hover-icon__frame--animated {
	opacity: 1;
	transform: scale(var(--dynamic-icon-scale, 1));
}

.content-shell {
	width: min(1120px, calc(100vw - 36px));
	min-height: calc(100vh - 126px);
	margin: 0 auto;
	padding: 132px 0 110px;
}

.content-shell-narrow {
	width: min(860px, calc(100vw - 36px));
}

.archive-hero {
	margin-bottom: 26px;
	text-align: center;
}

.content-grid,
.product-archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.content-card,
.archive-product-card,
.single-panel {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border: 1px solid var(--glass-edge);
	border-radius: 28px;
	background:
		var(--glass-highlight),
		linear-gradient(180deg, var(--glass-surface-strong), var(--glass-surface)),
		var(--panel);
	backdrop-filter: blur(26px) saturate(1.16) contrast(1.02);
	box-shadow: 0 18px 54px rgba(31, 42, 68, 0.12), var(--glass-shadow);
}

.content-card::before,
.archive-product-card::before,
.single-panel::before {
	content: "";
	position: absolute;
	inset: 1px;
	z-index: -1;
	border-radius: inherit;
	background:
		radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.42), transparent 28%),
		linear-gradient(115deg, transparent 12%, rgba(255, 255, 255, 0.18) 22%, transparent 36%, rgba(255, 255, 255, 0.1) 70%, transparent 84%);
	pointer-events: none;
}

.content-card a {
	display: block;
	padding: 18px;
}

.content-card img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	border-radius: 18px;
	margin-bottom: 14px;
}

.content-card h2,
.archive-product-card h2 {
	margin: 12px 0 8px;
	font-size: 22px;
	letter-spacing: 0;
}

.content-card p,
.archive-product-card p {
	color: var(--muted);
	line-height: 1.75;
}

.archive-product-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 18px;
}

.archive-product-icon {
	width: 76px;
	border-radius: 22px;
}

.archive-product-icon span {
	font-size: 19px;
}

.single-panel {
	padding: clamp(26px, 5vw, 54px);
}

.single-featured-image {
	margin: 28px 0;
}

.single-featured-image img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 22px;
}

.product-single-header {
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	gap: 28px;
	margin-bottom: 28px;
}

.product-single .product-icon {
	width: 132px;
	border-radius: 28px;
}

.entry-content {
	color: var(--text);
	font-size: 17px;
	line-height: 1.85;
}

.entry-content a {
	color: var(--active-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.entry-content img {
	border-radius: 18px;
}

.empty-state {
	grid-column: 1 / -1;
	margin: 0;
	padding: 36px;
	border: 1px solid var(--line);
	border-radius: 24px;
	color: var(--muted);
	background: var(--panel);
	text-align: center;
}

.navigation.pagination {
	margin-top: 30px;
	text-align: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	margin: 0 3px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 999px;
	background: var(--panel);
}

.site-footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: max(4px, calc(env(safe-area-inset-bottom) + 4px));
	z-index: 18;
	padding: 0 20px 4px;
	pointer-events: none;
}

.site-footer p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0 12px;
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	text-align: center;
}

.site-footer a {
	pointer-events: auto;
}

.footer-separator {
	opacity: 0.46;
}

@media (min-width: 768px) {
	.site-dock {
		bottom: max(42px, calc(env(safe-area-inset-bottom) + 42px));
	}

	.site-footer {
		bottom: max(8px, calc(env(safe-area-inset-bottom) + 8px));
	}
}

@media (min-width: 1181px) {
	body.home {
		overflow: hidden;
	}

	.home-shell {
		height: 100svh;
		min-height: 100svh;
		padding-top: 64px;
		padding-bottom: 92px;
	}

	.showcase {
		gap: 12px;
		transform: translateY(-26px);
	}

	.paper-stack {
		width: min(100%, 1020px);
		min-height: clamp(442px, calc(100svh - 238px), 570px);
	}

	.paper-window {
		width: min(100%, 960px);
		min-height: clamp(420px, calc(100svh - 278px), 540px);
		border-radius: 28px;
	}

	.paper-titlebar {
		height: 44px;
	}

	.paper-addressbar {
		padding: 9px 18px;
	}

	.paper-addressbar span {
		padding: 7px 15px;
	}

	.paper-content {
		gap: clamp(22px, 4vw, 44px);
		padding: clamp(34px, 4.6vw, 58px);
	}

	.product-icon {
		width: clamp(128px, 16vw, 188px);
		border-radius: 30px;
	}

	.product-copy h2 {
		font-size: clamp(30px, 4vw, 52px);
	}

	.product-headline {
		margin-top: 14px;
		font-size: clamp(18px, 2vw, 24px);
	}

	.product-description {
		font-size: 15px;
		line-height: 1.7;
	}

	.contact-actions {
		margin-top: 18px;
	}

	.product-switcher {
		gap: 8px;
	}

	.product-pill {
		min-height: 38px;
	}
}

@media (min-width: 1181px) and (hover: hover) and (pointer: fine) {
	.home-flower {
		position: fixed;
		right: clamp(42px, 7.2vw, 148px);
		bottom: clamp(112px, 14vh, 176px);
		z-index: 22;
		display: flex;
		align-items: center;
		justify-content: center;
		width: clamp(220px, 15vw, 300px);
		height: clamp(220px, 15vw, 300px);
		border-radius: 50%;
		pointer-events: auto;
	}
}

@media (min-width: 768px) and (max-width: 1180px) {
	.topbar {
		padding: 18px 26px;
	}

	.primary-menu {
		display: none;
	}

	.brand-word {
		font-size: clamp(26px, 4vw, 34px);
	}

	.home-shell {
		min-height: 100svh;
		padding: 76px 28px 112px;
		gap: 0;
	}

	.intro-copy {
		max-width: 720px;
	}

	.intro-copy h1,
	.archive-hero h1,
	.single-panel h1 {
		font-size: clamp(38px, 6vw, 58px);
	}

	.intro-copy p:last-child,
	.archive-hero p,
	.single-panel header p:last-child {
		font-size: 16px;
	}

	.paper-stack {
		width: min(100%, 880px);
		min-height: clamp(500px, calc(100svh - 270px), 600px);
	}

	.paper-window {
		width: min(100%, 840px);
		min-height: clamp(470px, calc(100svh - 300px), 560px);
		border-radius: 28px;
	}

	.paper-content {
		grid-template-columns: 1fr;
		gap: 26px;
		padding: 34px 38px 40px;
		text-align: center;
	}

	.product-icon {
		width: clamp(132px, 22vw, 176px);
		border-radius: 30px;
	}

	.product-meta {
		justify-content: center;
	}

	.product-copy h2 {
		font-size: clamp(38px, 7vw, 56px);
	}

	.product-headline {
		max-width: 620px;
		margin-inline: auto;
	}

	.product-description {
		max-width: 650px;
		margin-inline: auto;
	}

	.contact-actions {
		margin-inline: auto;
	}

	.contact-action-buttons {
		justify-content: center;
	}

	.contact-popover {
		margin-inline: auto;
	}

	.product-switcher {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: min(100%, 860px);
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		padding: 4px 4px 8px;
		scrollbar-width: none;
	}

	.product-switcher::-webkit-scrollbar {
		display: none;
	}

	.product-pill {
		flex: 0 0 auto;
		scroll-snap-align: center;
	}

	.content-grid,
	.product-archive-grid {
		grid-template-columns: 1fr 1fr;
	}

	.content-shell {
		width: min(940px, calc(100vw - 44px));
		padding-top: 116px;
		padding-bottom: 120px;
	}

	.site-dock {
		align-items: center;
		overflow-x: auto;
		justify-content: flex-start;
		width: min(760px, calc(100vw - 30px));
		padding: 11px;
		border-radius: 26px;
		scrollbar-width: none;
	}

	.site-dock::-webkit-scrollbar {
		display: none;
	}

	.dock-link {
		width: 102px;
		flex: 0 0 auto;
	}

	.dock-mark {
		width: 58px;
	}
}

@media (max-width: 767px) {
	body {
		min-height: 100svh;
		overflow-x: hidden;
		overflow-y: auto;
		background:
			radial-gradient(circle at 12% 10%, rgba(126, 182, 255, 0.16), transparent 70vw),
			radial-gradient(circle at 88% 16%, rgba(172, 240, 219, 0.14), transparent 62vw),
			linear-gradient(150deg, var(--background-a), var(--background-b) 54%, var(--background-c));
	}

	@supports selector(body:has(.home-shell)) {
		body:has(.home-shell) {
			overflow-x: hidden;
			overflow-y: auto;
		}
	}

	.page-atmosphere::before,
	.page-atmosphere::after {
		opacity: 0.28;
	}

	.grid-layer {
		background-size: 54px 54px;
		opacity: 0.36;
	}

	.topbar {
		padding: 10px 12px;
		gap: 8px;
	}

	.topbar-actions {
		gap: 6px;
	}

	.primary-menu {
		display: none;
	}

	.brand-logo {
		min-height: 45px;
	}

	.custom-logo-link img {
		max-height: 24px;
	}

	.brand-word {
		font-size: 17px;
	}

	.mario-block-container {
		width: min(42vw, 176px);
		height: 40px;
		padding-inline: 10px;
		border-radius: 12px;
	}

	.brand-clouds {
		inset: -12px -18px 2px -14px;
	}

	.brand-dot {
		width: 6px;
		height: 6px;
		transform: translateY(7px);
	}

	.theme-toggle.switch {
		width: 45px;
		height: 24px;
		font-size: 12px;
	}

	.theme-toggle .slider::before {
		width: 20px;
		height: 20px;
	}

	.theme-toggle .sun svg {
		top: 4px;
		left: 27px;
		width: 16px;
		height: 16px;
	}

	.theme-toggle .moon svg {
		top: 4px;
		left: 4px;
		width: 16px;
		height: 16px;
	}

	.theme-toggle .input:checked + .slider::before {
		transform: translateX(21px);
	}

	.home-shell {
		height: auto;
		min-height: 100svh;
		padding: 66px 14px calc(146px + env(safe-area-inset-bottom));
		display: block;
		gap: 0;
		overflow: visible;
	}

	.intro-copy {
		max-width: 100%;
	}

	.intro-kicker {
		margin-bottom: 8px;
		font-size: 12px;
	}

	.intro-copy h1,
	.archive-hero h1,
	.single-panel h1 {
		font-size: clamp(28px, 9vw, 38px);
		line-height: 1.08;
	}

	.intro-copy p:last-child {
		display: none;
	}

	.showcase {
		display: block;
		gap: 0;
		min-height: auto;
		transform: none;
	}

	.paper-stack {
		width: 100%;
		height: auto;
		min-height: 0;
		perspective: none;
		transform-style: flat;
		contain: none;
	}

	.paper-stack::before {
		display: none;
	}

	.product-card {
		position: relative;
		inset: auto;
		display: none;
		place-items: stretch;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: none;
		will-change: auto;
		transform-style: flat;
		contain: none;
	}

	.product-card.is-active,
	.product-card.is-entering {
		display: grid;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.product-card.is-leaving,
	.product-card:not(.is-active):not(.is-entering) {
		display: none;
		opacity: 1;
		visibility: hidden;
	}

	.product-card.is-entering .paper-window,
	.product-card.is-leaving .paper-window,
	.product-card.is-entering .product-visual,
	.product-card.is-entering .product-copy,
	.product-card.is-entering .product-icon,
	.product-card.is-entering .product-meta,
	.product-card.is-entering .product-headline,
	.product-card.is-entering .product-description,
	.product-card.is-entering .product-link,
	.product-card.is-entering .contact-actions {
		animation: none;
	}

	.paper-window {
		width: 100%;
		min-height: 0;
		border-radius: 24px;
	}

	.paper-titlebar {
		height: 38px;
		padding-inline: 12px;
	}

	.window-light {
		width: 9px;
		height: 9px;
	}

	.window-title {
		max-width: 46%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
		font-size: 12px;
	}

	.paper-addressbar {
		padding: 10px 14px;
	}

	.paper-addressbar span {
		max-width: 78%;
		padding: 7px 12px;
		font-size: 12px;
	}

	.paper-content {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 20px 18px 56px;
		text-align: center;
	}

	.product-icon {
		width: clamp(102px, 32vw, 132px);
		border-radius: 24px;
	}

	.product-icon::after,
	.archive-product-icon::after {
		inset: 8px;
		border-radius: 22px;
	}

	.product-meta {
		justify-content: center;
		gap: 5px;
		margin-bottom: 8px;
	}

	.product-meta span,
	.content-card-meta {
		min-height: 24px;
		padding-inline: 8px;
		font-size: 11.5px;
	}

	.product-copy h2 {
		font-size: clamp(27px, 8.2vw, 35px);
	}

	.product-headline {
		margin: 10px 0 7px;
		font-size: clamp(15px, 4.2vw, 18px);
		line-height: 1.3;
	}

	.product-description {
		display: block;
		overflow: visible;
		font-size: 13px;
		line-height: 1.55;
		-webkit-line-clamp: unset;
	}

	.contact-actions {
		width: 100%;
		margin-top: 18px;
	}

	.contact-action-buttons {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x proximity;
		padding: 2px 2px 8px;
		scrollbar-width: none;
	}

	.contact-action-buttons::-webkit-scrollbar {
		display: none;
	}

	.contact-action-button {
		flex: 0 0 auto;
		min-height: 38px;
		padding-right: 12px;
		font-size: 13px;
		scroll-snap-align: start;
	}

	.contact-action-icon {
		width: 26px;
		height: 26px;
		border-radius: 9px;
		font-size: 12px;
	}

	.contact-popover {
		left: 0;
		right: 0;
		max-width: none;
		padding: 14px 15px;
		border-radius: 18px;
		text-align: left;
	}

	.contact-popover::after {
		left: 32px;
	}

	.product-link {
		min-height: 38px;
		margin-top: 14px;
		padding: 5px 6px 5px 14px;
		font-size: 13px;
	}

	.product-link-arrow {
		width: 26px;
		height: 26px;
		padding: 6px;
	}

	.product-switcher {
		flex-wrap: nowrap;
		justify-content: flex-start;
		width: 100%;
		overflow-x: auto;
		overscroll-behavior-x: contain;
		scroll-snap-type: x mandatory;
		margin-top: 16px;
		padding: 2px 4px 10px;
		scrollbar-width: none;
	}

	.product-switcher::-webkit-scrollbar {
		display: none;
	}

	.product-pill {
		flex: 0 0 auto;
		max-width: 190px;
		min-height: 38px;
		scroll-snap-align: center;
	}

	.pill-icon {
		width: 28px;
		height: 28px;
		border-radius: 9px;
	}

	.product-pill > span:last-child {
		font-size: 13px;
	}

	.content-shell {
		width: min(calc(100% - 28px), 680px);
		padding-top: 94px;
		padding-bottom: 86px;
	}

	.content-grid,
	.product-archive-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.archive-product-card,
	.product-single-header {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}

	.archive-product-card,
	.content-card a,
	.single-panel {
		padding: 18px;
	}

	.content-card h2,
	.archive-product-card h2 {
		font-size: 20px;
	}

	.product-single .product-icon {
		width: 112px;
	}

	.entry-content {
		font-size: 16px;
	}

	.site-dock {
		align-items: center;
		justify-content: flex-start;
		width: calc(100vw - 16px);
		max-width: none;
		gap: 8px;
		padding: 9px 10px;
		border-radius: 22px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		scrollbar-width: none;
	}

	.site-dock::-webkit-scrollbar {
		display: none;
	}

	.dock-link {
		width: 76px;
		flex: 0 0 auto;
		display: grid;
		grid-template-rows: 50px minmax(28px, auto);
		align-content: start;
		align-items: start;
		gap: 6px;
		min-height: 84px;
		scroll-snap-align: center;
	}

	.dock-mark {
		width: 50px;
		height: 50px;
		align-self: start;
		border-radius: 16px;
		font-size: 13px;
	}

	.dock-label {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		min-height: 28px;
		font-size: 12px;
		line-height: 1.15;
	}

	.site-footer {
		display: none;
	}
}

@media (max-width: 390px) {
	.home-shell {
		padding-inline: 10px;
		padding-top: 62px;
		padding-bottom: calc(144px + env(safe-area-inset-bottom));
	}

	.paper-stack {
		min-height: 0;
	}

	.paper-window {
		min-height: 0;
		border-radius: 21px;
	}

	.paper-content {
		padding: 18px 14px 52px;
	}

	.product-icon {
		width: 96px;
		border-radius: 22px;
	}

	.product-copy h2 {
		font-size: 26px;
	}

	.product-headline {
		margin-top: 9px;
		font-size: 15px;
	}

	.product-description {
		font-size: 12.5px;
		line-height: 1.55;
		-webkit-line-clamp: unset;
	}

	.dock-link {
		width: 70px;
		grid-template-rows: 46px minmax(28px, auto);
		min-height: 80px;
	}

	.dock-mark {
		width: 46px;
		height: 46px;
	}
}

@media (max-width: 767px) and (orientation: landscape) {
	.home-shell {
		padding-top: 58px;
		padding-bottom: calc(124px + env(safe-area-inset-bottom));
	}

	.intro-copy {
		display: none;
	}

	.paper-stack {
		min-height: 0;
	}

	.paper-window {
		min-height: 0;
	}

	.paper-content {
		grid-template-columns: auto 1fr;
		gap: 18px;
		padding: 18px 22px 50px;
		text-align: left;
	}

	.product-meta {
		justify-content: flex-start;
	}

	.product-icon {
		width: 104px;
	}

	.product-copy h2 {
		font-size: 28px;
	}

	.product-headline {
		font-size: 17px;
	}

	.product-description {
		font-size: 13px;
		line-height: 1.55;
		-webkit-line-clamp: unset;
	}

	.product-switcher {
		width: min(100%, 680px);
	}
}

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