:root {
	--cream: #fffdf9;
	--sky-50: #e8f6ff;
	--sky-100: #c5ebff;
	--sky-400: #5eb8f0;
	--sky-600: #3a9fd9;
	--sky-800: #2a5a8a;
	--green-400: #7ec850;
	--green-600: #4fa838;
	--orange-500: #ff8c2a;
	--gold: #ffc94d;
	--ink: #2f4858;
	--ink-soft: #5a7080;
	--shadow: 0 18px 50px rgba(42, 90, 138, 0.14);
	--radius-lg: 24px;
	--radius-md: 16px;
	--radius-sm: 10px;
	--font-display: "ZCOOL KuaiLe", "Noto Sans SC", sans-serif;
	--font-body: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
	--header-h: 72px;
	--screenshot-aspect: 20 / 9;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background:
		radial-gradient(ellipse 80% 50% at 50% -10%, rgba(94, 184, 240, 0.18), transparent),
		var(--cream);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

body.is-loaded .hero-animate {
	animation-play-state: running;
}

/* Cursor glow */
.cursor-glow {
	position: fixed;
	width: 420px;
	height: 420px;
	margin: -210px 0 0 -210px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(94, 184, 240, 0.22) 0%, rgba(255, 201, 77, 0.08) 35%, transparent 68%);
	pointer-events: none;
	z-index: 9999;
	opacity: 0;
	transition: opacity 0.4s ease;
	mix-blend-mode: multiply;
}

body.is-loaded .cursor-glow {
	opacity: 1;
}

html.is-mobile body.is-loaded .cursor-glow {
	opacity: 0;
}

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

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

button {
	font: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

.container {
	width: min(1120px, calc(100% - 40px));
	margin-inline: auto;
}

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

.skip-link {
	position: absolute;
	left: 16px;
	top: -48px;
	z-index: 2000;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--sky-600);
	color: #fff;
	transition: top 0.2s ease;
}

.skip-link:focus {
	top: 16px;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	height: var(--header-h);
	background: rgba(255, 253, 249, 0.88);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(94, 184, 240, 0.16);
}

.site-header__inner {
	height: 100%;
	display: flex;
	align-items: center;
	gap: 24px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--sky-800);
}

.brand__logo {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	object-fit: cover;
	box-shadow: 0 6px 0 rgba(224, 144, 32, 0.35);
	animation: brand-pulse 3s ease-in-out infinite;
}

.brand--footer .brand__logo {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.site-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 28px;
	font-size: 0.95rem;
	font-weight: 500;
}

.site-nav a {
	position: relative;
	color: var(--ink-soft);
	transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
	color: var(--sky-800);
}

.site-nav a.is-active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--sky-400), var(--orange-500));
}

.header-cta {
	margin-left: 8px;
}

.nav-toggle {
	display: none;
	margin-left: auto;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(94, 184, 240, 0.12);
}

.nav-toggle__bar {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	border-radius: 999px;
	background: var(--sky-800);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn--sm {
	padding: 10px 18px;
	font-size: 0.92rem;
}

.btn--lg {
	padding: 14px 28px;
	font-size: 1rem;
}

.btn--primary {
	color: #fff;
	background: linear-gradient(180deg, #ffe082 0%, #ffb74d 55%, #ff8c2a 100%);
	box-shadow: 0 8px 0 #d07a18, 0 14px 28px rgba(255, 140, 42, 0.28);
	position: relative;
	overflow: hidden;
}

.btn--primary::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.45) 50%, transparent 60%);
	transform: translateX(-120%);
	animation: btn-shimmer 3.5s ease-in-out infinite;
}

.btn--ghost {
	color: var(--sky-800);
	background: rgba(255, 255, 255, 0.55);
	border: 2px solid rgba(94, 184, 240, 0.45);
	box-shadow: var(--shadow);
	backdrop-filter: blur(8px);
}

.btn--ghost:hover {
	border-color: rgba(94, 184, 240, 0.8);
	box-shadow: 0 0 24px rgba(94, 184, 240, 0.25), var(--shadow);
}

.btn--pulse {
	animation: btn-pulse-ring 2.8s ease-in-out infinite;
}

.btn--light {
	color: var(--sky-800);
	background: #fff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Global decor */
.page-decor {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.page-decor__blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	opacity: 0.45;
	animation: blob-float 14s ease-in-out infinite;
}

.page-decor__blob--1 {
	width: 320px;
	height: 320px;
	top: 12%;
	left: -80px;
	background: rgba(94, 184, 240, 0.35);
}

.page-decor__blob--2 {
	width: 280px;
	height: 280px;
	top: 48%;
	right: -60px;
	background: rgba(255, 201, 77, 0.28);
	animation-delay: -4s;
}

.page-decor__blob--3 {
	width: 240px;
	height: 240px;
	bottom: 8%;
	left: 35%;
	background: rgba(126, 200, 80, 0.22);
	animation-delay: -8s;
}

.sparkle-field {
	position: absolute;
	inset: 0;
}

.sparkle-particle {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 201, 77, 0.85);
	box-shadow: 0 0 10px rgba(255, 201, 77, 0.6);
	animation: sparkle-twinkle var(--dur, 3s) ease-in-out infinite;
	animation-delay: var(--delay, 0s);
}

main,
.site-header,
.site-footer {
	position: relative;
	z-index: 1;
}

/* Hero */
.hero {
	position: relative;
	overflow: hidden;
	padding: 56px 0 88px;
}

.hero__canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	opacity: 0.85;
}

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

.hero__sky {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, #7ec8f0 0%, #b8e4ff 32%, #dff4ff 58%, var(--cream) 100%);
}

.hero__aurora {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 60% 40% at 20% 30%, rgba(126, 200, 80, 0.28), transparent 60%),
		radial-gradient(ellipse 50% 35% at 75% 20%, rgba(255, 140, 42, 0.22), transparent 55%),
		radial-gradient(ellipse 45% 30% at 50% 60%, rgba(94, 184, 240, 0.3), transparent 50%);
	animation: aurora-shift 16s ease-in-out infinite alternate;
	mix-blend-mode: screen;
}

.hero__grid-lines {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(94, 184, 240, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(94, 184, 240, 0.06) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 75%);
	animation: grid-drift 24s ease-in-out infinite alternate;
}

.hero__shooting-stars {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.hero__sun {
	position: absolute;
	top: 8%;
	right: 12%;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: radial-gradient(circle at 35% 35%, #fff6b0, var(--gold) 58%, #f0a020 100%);
	box-shadow: 0 0 40px rgba(255, 201, 77, 0.55);
	animation: sun-pulse 4s ease-in-out infinite;
}

.hero__sun-rays {
	position: absolute;
	top: 5%;
	right: 9%;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, transparent, rgba(255, 220, 100, 0.15), transparent, rgba(255, 220, 100, 0.12), transparent);
	animation: sun-spin 24s linear infinite;
}

.hero__cloud {
	position: absolute;
	width: 120px;
	height: 42px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	filter: blur(0.2px);
}

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

.hero__cloud::before {
	width: 48px;
	height: 48px;
	top: -20px;
	left: 18px;
}

.hero__cloud::after {
	width: 36px;
	height: 36px;
	top: -12px;
	right: 20px;
}

.hero__cloud--a {
	top: 16%;
	left: 8%;
	animation: cloud-drift 22s ease-in-out infinite alternate;
}

.hero__cloud--b {
	top: 24%;
	right: 28%;
	animation: cloud-drift 28s ease-in-out infinite alternate;
}

.hero__cloud--c {
	top: 10%;
	right: 42%;
	width: 90px;
	height: 32px;
	opacity: 0.7;
	animation: cloud-drift 26s ease-in-out infinite alternate;
	animation-delay: -6s;
}

.hero__bird {
	position: absolute;
	width: 18px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: -8px 2px 0 -2px rgba(255, 255, 255, 0.9), 8px 2px 0 -2px rgba(255, 255, 255, 0.9);
	animation: bird-glide 12s ease-in-out infinite alternate;
}

.hero__bird--1 { top: 20%; left: -20px; }
.hero__bird--2 { top: 28%; left: -40px; animation-delay: -4s; animation-duration: 16s; }

.hero__spark {
	position: absolute;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	text-shadow: 0 0 12px rgba(255, 201, 77, 0.8);
	animation: sparkle-pop 2.8s ease-in-out infinite;
}

.hero__spark--1 { top: 18%; left: 22%; }
.hero__spark--2 { top: 32%; right: 18%; animation-delay: 0.8s; }
.hero__spark--3 { bottom: 28%; left: 12%; animation-delay: 1.6s; font-size: 0.9rem; }

.hero__hill {
	position: absolute;
	bottom: 0;
	border-radius: 50% 50% 0 0;
}

.hero__hill--back {
	left: -8%;
	width: 70%;
	height: 180px;
	background: linear-gradient(180deg, #8fd97a, var(--green-400));
	opacity: 0.55;
}

.hero__hill--front {
	right: -10%;
	width: 62%;
	height: 140px;
	background: linear-gradient(180deg, var(--green-400), var(--green-600));
	opacity: 0.75;
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 48px;
	align-items: center;
}

.hero__eyebrow {
	display: inline-block;
	margin: 0 0 14px;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	backdrop-filter: blur(8px);
	color: var(--sky-800);
	font-size: 0.88rem;
	font-weight: 700;
	border: 1px solid rgba(94, 184, 240, 0.35);
	box-shadow: 0 0 20px rgba(94, 184, 240, 0.15);
}

.hero__title {
	margin: 0 0 18px;
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5vw, 3.8rem);
	line-height: 1.15;
	color: var(--sky-800);
}

.hero__title-accent {
	display: inline-block;
	background: linear-gradient(90deg, #ff8c2a, #ffc94d, #ff6b9d, #5eb8f0, #ff8c2a);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradient-flow 8s ease-in-out infinite alternate;
	filter: drop-shadow(0 2px 8px rgba(255, 140, 42, 0.25));
}

.hero__desc {
	max-width: 540px;
	margin: 0 0 28px;
	font-size: 1.05rem;
	color: var(--ink-soft);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 30px;
}

.hero__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hero__stats li,
.stat-card {
	position: relative;
	padding: 14px 16px;
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow);
	border: 1px solid rgba(255, 255, 255, 0.6);
	overflow: hidden;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(94, 184, 240, 0.6), rgba(255, 201, 77, 0.5), rgba(126, 200, 80, 0.4));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.7;
}

.stat-card:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 16px 40px rgba(94, 184, 240, 0.2);
}

.hero__stats strong {
	display: block;
	margin-bottom: 4px;
	color: var(--sky-800);
	font-size: 0.95rem;
}

.hero__stats span {
	color: var(--ink-soft);
	font-size: 0.82rem;
}

/* Device mock */
.hero__device {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 400px;
	padding: 40px 28px 32px;
}

.hero__decor-frame {
	grid-area: 1 / 1;
	position: relative;
	width: min(100%, 560px);
	aspect-ratio: var(--screenshot-aspect);
	pointer-events: none;
	z-index: 0;
	--decor-pad-x: 48px;
	--decor-pad-y: 40px;
	--decor-radius: 36px;
}

.hero__decor-ring {
	position: absolute;
	pointer-events: none;
}

.hero__decor-ring--outer {
	inset: calc(-1 * var(--decor-pad-y)) calc(-1 * var(--decor-pad-x));
	border-radius: calc(var(--decor-radius) + 4px);
	border: 2px dashed rgba(94, 184, 240, 0.42);
	box-shadow: 0 0 24px rgba(94, 184, 240, 0.12);
	animation: decor-ring-pulse 4s ease-in-out infinite;
}

.hero__decor-ring--inner {
	inset: calc(-0.55 * var(--decor-pad-y)) calc(-0.55 * var(--decor-pad-x));
	border-radius: calc(var(--decor-radius) * 0.72);
	border: 1.5px solid rgba(255, 201, 77, 0.35);
	animation: decor-ring-pulse 4s ease-in-out infinite reverse;
}

.hero__decor-ring--glow {
	inset: calc(-1.15 * var(--decor-pad-y)) calc(-1.15 * var(--decor-pad-x));
	border-radius: calc(var(--decor-radius) + 10px);
	background: radial-gradient(ellipse at 50% 50%, rgba(94, 184, 240, 0.08), transparent 68%);
	animation: decor-glow-breathe 5s ease-in-out infinite;
}

.decor-corner {
	position: absolute;
	width: 14px;
	height: 14px;
	border: 2px solid rgba(255, 201, 77, 0.75);
}

.decor-corner--tl {
	top: calc(-1 * var(--decor-pad-y) + 5px);
	left: calc(-1 * var(--decor-pad-x) + var(--decor-radius) * 0.72);
	border-right: 0;
	border-bottom: 0;
	border-radius: 6px 0 0 0;
}

.decor-corner--tr {
	top: calc(-1 * var(--decor-pad-y) + 5px);
	right: calc(-1 * var(--decor-pad-x) + var(--decor-radius) * 0.72);
	border-left: 0;
	border-bottom: 0;
	border-radius: 0 6px 0 0;
}

.decor-corner--bl {
	bottom: calc(-1 * var(--decor-pad-y) + 5px);
	left: calc(-1 * var(--decor-pad-x) + var(--decor-radius) * 0.72);
	border-right: 0;
	border-top: 0;
	border-radius: 0 0 0 6px;
}

.decor-corner--br {
	bottom: calc(-1 * var(--decor-pad-y) + 5px);
	right: calc(-1 * var(--decor-pad-x) + var(--decor-radius) * 0.72);
	border-left: 0;
	border-top: 0;
	border-radius: 0 0 6px 0;
}

.hero__decor-orbit {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 2;
}

.hero__decor-orbit .decor-orbit-item {
	position: absolute;
	left: 0;
	top: 0;
	offset-path: var(--orbit-path);
	offset-distance: calc(var(--orbit-start, 0) * 100%);
	offset-anchor: center;
	offset-rotate: 0deg;
	animation: decor-orbit-loop var(--orbit-duration, 36s) ease-in-out infinite alternate;
}

.decor-orbit-item--chip {
	padding: 6px 12px;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 800;
	white-space: nowrap;
	color: var(--sky-800);
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.95);
	box-shadow: 0 8px 22px rgba(42, 90, 138, 0.14), 0 0 16px rgba(255, 201, 77, 0.2);
}

.decor-orbit-item--icon {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 8px;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(42, 90, 138, 0.18);
	border: 2px solid rgba(255, 255, 255, 0.85);
	box-sizing: border-box;
}

.decor-orbit-item--icon img {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	object-fit: contain;
	display: block;
}

.decor-orbit-item--icon-gold {
	background: linear-gradient(180deg, #ffe082 0%, #ffc94d 55%, #f0a020 100%);
}

.decor-orbit-item--icon-orange {
	background: linear-gradient(180deg, #ffb74d 0%, #ff8c2a 100%);
}

.decor-orbit-item--icon-green {
	background: linear-gradient(180deg, #8fd97a 0%, #4fa838 100%);
}

.decor-orbit-item--icon-blue {
	background: linear-gradient(180deg, #9ee2ff 0%, #5eb8f0 100%);
}

.decor-orbit-item--icon-light img {
	filter: brightness(0) invert(1);
}

.decor-orbit-item--icon-gold:not(.decor-orbit-item--icon-light) img {
	filter: drop-shadow(0 1px 2px rgba(176, 120, 0, 0.35));
}

.decor-orbit-item--icon-orange img {
	filter: drop-shadow(0 1px 2px rgba(176, 90, 0, 0.3));
}

.decor-orbit-item--icon-blue img {
	filter: drop-shadow(0 1px 2px rgba(42, 90, 138, 0.25));
}

.decor-orbit-item--spark {
	font-size: 0.82rem;
	color: rgba(255, 201, 77, 0.92);
	text-shadow: 0 0 10px rgba(255, 201, 77, 0.6);
	animation-duration: calc(var(--orbit-duration, 20s) * 1.15);
}

.decor-orbit-item--runner {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: radial-gradient(circle, #fff 0%, #ffc94d 55%, transparent 100%);
	box-shadow: 0 0 14px rgba(255, 201, 77, 0.85);
	--orbit-duration: 20s;
}

.device {
	position: relative;
	grid-area: 1 / 1;
	z-index: 1;
	margin-inline: auto;
	padding: 14px;
	border-radius: 28px;
	background: linear-gradient(180deg, #4f5d73, #2f3b4d);
	box-shadow: 0 24px 60px rgba(42, 90, 138, 0.28);
}

.device--landscape {
	width: min(100%, 560px);
	aspect-ratio: var(--screenshot-aspect);
	animation: device-float 5s ease-in-out infinite;
	box-shadow:
		0 24px 60px rgba(42, 90, 138, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.1) inset,
		0 0 80px rgba(94, 184, 240, 0.15);
}

.device--landscape::after {
	content: "";
	position: absolute;
	inset: -12px;
	border-radius: 36px;
	background: radial-gradient(ellipse at 50% 80%, rgba(94, 184, 240, 0.35), transparent 65%);
	z-index: -1;
	animation: device-glow 4s ease-in-out infinite;
}

.device__screen {
	height: 100%;
	border-radius: 18px;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(158, 226, 255, 0.95) 0%, rgba(94, 184, 240, 0.88) 38%, rgba(126, 200, 80, 0.35) 100%);
	position: relative;
}

.device__screen::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
	animation: screen-shine 4s ease-in-out infinite;
	pointer-events: none;
	z-index: 2;
}

.device--screenshot .device__screen {
	background: #0f1720;
}

.device__shot {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	position: relative;
	z-index: 1;
}

/* H5 home mock — mirrors uniapp/pages/index/index.vue layout */
.mock-home {
	height: 100%;
	padding: 7px 8px 8px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-sizing: border-box;
	font-size: 0.58rem;
	line-height: 1.2;
	color: #2a5a8a;
}

.mock-topbar {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
	min-height: 0;
}

.mock-user {
	display: flex;
	align-items: center;
	flex: 0 1 42%;
	min-width: 0;
	gap: 5px;
}

.mock-user__avatar-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.mock-avatar {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: linear-gradient(145deg, #ffc96a, #ff8c2a);
	border: 1.5px solid #fff;
	box-shadow: 0 2px 6px rgba(255, 120, 30, 0.35);
}

.mock-grade {
	margin-top: -5px;
	padding: 1px 6px;
	border-radius: 999px;
	background: #ff8c2a;
	border: 1px solid #fff;
	color: #fff;
	font-size: 0.5rem;
	font-weight: 700;
	white-space: nowrap;
}

.mock-user__meta {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 1px;
}

.mock-user__name-row {
	display: flex;
	align-items: center;
	gap: 3px;
	min-width: 0;
}

.mock-lv {
	flex-shrink: 0;
	padding: 1px 4px;
	border-radius: 4px;
	background: linear-gradient(180deg, #7ec850, #4fa838);
	color: #fff;
	font-size: 0.48rem;
	font-weight: 800;
}

.mock-name {
	font-size: 0.56rem;
	font-weight: 700;
	color: #2a5a8a;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mock-user__actions {
	display: flex;
	gap: 3px;
}

.mock-user__actions span {
	padding: 1px 4px;
	border-radius: 4px;
	background: rgba(58, 159, 217, 0.18);
	color: #2a5a8a;
	font-size: 0.46rem;
	font-weight: 700;
}

.mock-user__stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	padding: 1px 5px;
	border-radius: 999px;
	background: rgba(30, 50, 70, 0.72);
	color: #ffc94d;
	font-size: 0.5rem;
	font-weight: 800;
}

.mock-user__stars img {
	width: 9px;
	height: 9px;
}

.mock-tabs {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 0;
}

.mock-search {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(180deg, #ffb74d, #ff8c2a);
	color: #fff;
	font-size: 0.5rem;
	box-shadow: 0 2px 0 #d07a18;
}

.mock-tab-chain {
	position: relative;
	display: flex;
	align-items: center;
	gap: 0;
	padding: 2px 3px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	min-width: 0;
	overflow-x: auto;
	scrollbar-width: none;
}

.mock-tab-chain::-webkit-scrollbar {
	display: none;
}

.mock-tab-chain__loading,
.mock-module-grid__loading {
	font-size: 0.46rem;
	color: #5a7080;
	padding: 2px 6px;
	white-space: nowrap;
}

.mock-tab-indicator {
	position: absolute;
	top: 2px;
	bottom: 2px;
	left: 0;
	width: 0;
	border-radius: 999px;
	background: linear-gradient(180deg, #ffe082, #ffb74d);
	box-shadow: 0 2px 0 #d07a18;
	transition: transform 0.25s ease, width 0.25s ease;
	pointer-events: none;
	z-index: 0;
}

.mock-tab-unit {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
}

.mock-tab-link {
	flex-shrink: 0;
	width: 8px;
	height: 1px;
	margin: 0 1px;
	background: repeating-linear-gradient(90deg, rgba(90, 112, 128, 0.45) 0 2px, transparent 2px 4px);
}

.mock-tab {
	display: block;
	padding: 2px 7px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	font-size: 0.5rem;
	font-weight: 700;
	color: #5a7080;
	white-space: nowrap;
	cursor: default;
}

.mock-tab--on {
	color: #9a4e00;
}

.mock-main {
	flex: 1;
	min-height: 0;
	display: flex;
	gap: 5px;
}

.mock-pet-slot {
	flex: 0 0 22%;
	min-width: 0;
	display: flex;
}

.mock-pet-slot__panel {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4px 3px 5px;
	border-radius: 10px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(220, 248, 210, 0.85));
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 12px rgba(40, 100, 160, 0.12);
}

.mock-pet-stage {
	width: 100%;
	flex: 1;
	min-height: 52px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background:
		radial-gradient(circle at 50% 80%, rgba(126, 200, 80, 0.25), transparent 60%),
		rgba(255, 255, 255, 0.5);
}

.mock-pet-stage img {
	width: 28px;
	height: 28px;
	filter: brightness(0) saturate(100%) invert(42%) sepia(72%) saturate(900%) hue-rotate(176deg);
}

.mock-pet-info {
	display: flex;
	align-items: center;
	gap: 3px;
	margin: 3px 0;
	width: 100%;
	justify-content: center;
}

.mock-pet-name {
	font-size: 0.5rem;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 55%;
}

.mock-pet-lv {
	padding: 1px 4px;
	border-radius: 4px;
	background: linear-gradient(180deg, #7ec850, #4fa838);
	color: #fff;
	font-size: 0.46rem;
	font-weight: 800;
}

.mock-pet-btn {
	width: 100%;
	padding: 3px 0;
	border: 0;
	border-radius: 6px;
	background: linear-gradient(180deg, #8fd97a, #4fa838);
	color: #fff;
	font-size: 0.48rem;
	font-weight: 700;
	box-shadow: 0 2px 0 #3d8a28;
}

.mock-center {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mock-theme-panel {
	position: relative;
	flex: 1;
	min-height: 0;
	display: flex;
	gap: 4px;
	padding: 5px 6px 5px 5px;
	border-radius: 10px;
	background: linear-gradient(155deg, rgba(255, 255, 255, 0.9) 0%, rgba(244, 250, 255, 0.78) 42%, rgba(255, 248, 236, 0.72) 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	box-shadow:
		0 4px 14px rgba(40, 100, 160, 0.12),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
	overflow: hidden;
}

.mock-theme-panel__mesh {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(58, 159, 217, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(58, 159, 217, 0.04) 1px, transparent 1px);
	background-size: 10px 10px;
	opacity: 0.75;
	pointer-events: none;
}

.mock-theme-panel__corner {
	position: absolute;
	width: 8px;
	height: 8px;
	border: 1.5px solid rgba(255, 184, 77, 0.88);
	pointer-events: none;
	z-index: 2;
}

.mock-theme-panel__corner--tl { top: 3px; left: 3px; border-right: 0; border-bottom: 0; border-radius: 3px 0 0 0; }
.mock-theme-panel__corner--tr { top: 3px; right: 3px; border-left: 0; border-bottom: 0; border-radius: 0 3px 0 0; }
.mock-theme-panel__corner--bl { bottom: 3px; left: 3px; border-right: 0; border-top: 0; border-radius: 0 0 0 3px; }
.mock-theme-panel__corner--br { bottom: 3px; right: 3px; border-left: 0; border-top: 0; border-radius: 0 0 3px 0; }

.mock-ribbon {
	position: relative;
	z-index: 1;
	flex: 0 0 22px;
	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	padding: 5px 2px 4px;
	border-radius: 8px;
	background: linear-gradient(180deg, #fffef8 0%, #fff0c8 32%, #ffc44a 72%, #f5a820 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.96);
	box-shadow:
		0 3px 10px rgba(247, 147, 30, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.mock-ribbon__gem {
	position: absolute;
	top: -2px;
	left: 50%;
	width: 5px;
	height: 5px;
	margin-left: -2.5px;
	border-radius: 50%;
	background: linear-gradient(180deg, #fff8c8, #ffb84d);
	border: 1px solid #fff;
	box-shadow: 0 1px 3px rgba(247, 147, 30, 0.35);
}

.mock-ribbon__cap {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
	border-radius: 8px 8px 0 0;
}

.mock-ribbon__icon-wrap {
	width: 12px;
	height: 12px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.98);
	box-shadow: 0 1px 4px rgba(247, 147, 30, 0.15);
}

.mock-ribbon__icon-wrap img {
	width: 8px;
	height: 8px;
}

.mock-ribbon__divider {
	width: 60%;
	height: 1px;
	margin: 3px 0;
	background: linear-gradient(90deg, transparent, rgba(196, 92, 0, 0.35), transparent);
}

.mock-ribbon__text {
	flex: 1;
	min-height: 0;
	writing-mode: vertical-lr;
	text-orientation: mixed;
	font-size: 0.46rem;
	font-weight: 900;
	color: #b84e00;
	line-height: 1.1;
	letter-spacing: 0.5px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.mock-ribbon__tail {
	position: absolute;
	bottom: -1px;
	left: 50%;
	width: 0;
	height: 0;
	margin-left: -4px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid #e89418;
	filter: drop-shadow(0 1px 1px rgba(196, 92, 0, 0.2));
}

.mock-module-scroll {
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	z-index: 1;
}

.mock-module-scroll::-webkit-scrollbar {
	display: none;
}

.mock-module-grid {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 5px;
	min-height: 100%;
	padding: 1px 0;
}

.mock-module-card {
	position: relative;
	flex: 0 0 calc(33.333% - 4px);
	min-width: 68px;
	max-width: 82px;
	display: flex;
	flex-direction: column;
	border-radius: 8px;
	overflow: visible;
}

.mock-module-card__stage {
	position: relative;
	flex: 1;
	min-height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px 8px 0 0;
	border: 1.5px solid rgba(255, 255, 255, 0.75);
	border-bottom: 0;
	background: linear-gradient(160deg, color-mix(in srgb, var(--theme, #5eb8f0) 75%, #fff), var(--theme, #5eb8f0));
	overflow: hidden;
}

.mock-module-card__stage-bg {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
	background-size: 8px 8px;
}

.mock-module-card__stage::before {
	content: "";
	position: absolute;
	inset: 3px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	border-radius: 6px;
	pointer-events: none;
}

.mock-module-card__spark {
	position: absolute;
	top: 5px;
	right: 6px;
	font-size: 0.4rem;
	color: rgba(255, 220, 120, 0.9);
	text-shadow: 0 0 4px rgba(255, 200, 80, 0.45);
	z-index: 2;
}

.mock-module-card__icon-plate {
	position: relative;
	z-index: 1;
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(228, 244, 255, 0.94));
	border: 1.5px solid rgba(255, 255, 255, 0.98);
	box-shadow:
		0 3px 8px rgba(94, 184, 240, 0.2),
		inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.mock-module-card__icon-plate img {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.mock-module-badge {
	position: absolute;
	z-index: 5;
	font-size: 0.38rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.14);
}

.mock-module-badge--vip {
	top: -3px;
	left: -2px;
	padding: 1px 4px;
	border-radius: 6px;
	background: linear-gradient(135deg, #ffe082, #ffb300 52%, #ff9800);
	border: 1px solid rgba(255, 255, 255, 0.72);
}

.mock-module-badge--tag {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	padding: 1px 5px 2px;
	border-radius: 0 0 8px 8px;
	background: linear-gradient(180deg, #ff9588, #ff4d40);
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-top: 0;
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mock-module-card__title {
	flex-shrink: 0;
	padding: 3px 2px;
	text-align: center;
	font-size: 0.44rem;
	font-weight: 800;
	color: #fff;
	background: var(--foot-bg, linear-gradient(180deg, #5eb8f0, #3a9fd9));
	border-radius: 0 0 8px 8px;
	border: 1.5px solid rgba(255, 255, 255, 0.55);
	border-top: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mock-module-grid--empty {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	font-size: 0.46rem;
	color: #5a7080;
}

.mock-bottom-bar {
	flex-shrink: 0;
	display: flex;
	align-items: stretch;
	gap: 4px;
	height: 22px;
}

.mock-chat {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 6px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.82);
	border: 1px solid rgba(255, 255, 255, 0.95);
	overflow: hidden;
}

.mock-chat__tag {
	flex-shrink: 0;
	padding: 1px 4px;
	border-radius: 4px;
	background: rgba(94, 184, 240, 0.2);
	color: #3a9fd9;
	font-size: 0.44rem;
	font-weight: 800;
}

.mock-chat__text {
	font-size: 0.46rem;
	color: #5a7080;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mock-social {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 0 5px;
	border-radius: 8px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 236, 0.9));
	border: 1px solid rgba(255, 255, 255, 0.95);
}

.mock-social__item {
	width: 16px;
	height: 16px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(94, 184, 240, 0.15);
}

.mock-social__item img {
	width: 10px;
	height: 10px;
}

.mock-quick-dock {
	flex: 0 0 14%;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	padding: 4px 3px;
	border-radius: 10px;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(244, 250, 255, 0.88));
	border: 1.5px solid rgba(255, 255, 255, 0.95);
	box-shadow: 0 4px 12px rgba(40, 100, 160, 0.1);
}

.mock-quick-dock__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 0.42rem;
	font-weight: 700;
	color: #2a5a8a;
	text-align: center;
}

.mock-quick-dock__icon {
	width: 18px;
	height: 18px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 2px 6px rgba(42, 90, 138, 0.15);
}

.mock-quick-dock__icon img {
	width: 10px;
	height: 10px;
}

.mock-quick-dock__icon--mistake { background: linear-gradient(180deg, #ffb74d, #ff8c2a); }
.mock-quick-dock__icon--mail { background: linear-gradient(180deg, #8fd97a, #4fa838); }
.mock-quick-dock__icon--rank { background: linear-gradient(180deg, #ffe082, #ffc94d); }
.mock-quick-dock__icon--more { background: linear-gradient(180deg, #c5d4e0, #8fa3b5); }

/* Back to top */
.back-to-top {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 200;
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border: 0;
	border-radius: 50%;
	color: #fff;
	background: linear-gradient(180deg, #5eb8f0, #3a9fd9);
	box-shadow: 0 8px 24px rgba(58, 159, 217, 0.35), 0 4px 0 #2a7ab0;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px) scale(0.9);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.back-to-top:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 28px rgba(58, 159, 217, 0.45), 0 4px 0 #2a7ab0;
}

.back-to-top:focus-visible {
	outline: 3px solid rgba(94, 184, 240, 0.5);
	outline-offset: 3px;
}

/* Hero device decor animations */
@keyframes decor-ring-pulse {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

@keyframes decor-glow-breathe {
	0%, 100% { opacity: 0.45; transform: scale(1); }
	50% { opacity: 0.85; transform: scale(1.02); }
}

@keyframes decor-orbit-loop {
	0% { offset-distance: calc(var(--orbit-start, 0) * 100%); }
	100% { offset-distance: calc((var(--orbit-start, 0) + var(--orbit-travel, 0.42)) * 100%); }
}

/* Hero entrance */
.hero-animate {
	opacity: 0;
	transform: translateY(22px);
	animation: hero-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
	animation-play-state: paused;
}

.hero-animate--1 { animation-delay: 0.05s; }
.hero-animate--2 { animation-delay: 0.15s; }
.hero-animate--3 { animation-delay: 0.28s; }
.hero-animate--4 { animation-delay: 0.4s; }
.hero-animate--5 { animation-delay: 0.55s; }

/* Marquee */
.marquee {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding: 14px 0;
	background: linear-gradient(90deg, rgba(94, 184, 240, 0.12), rgba(255, 201, 77, 0.16), rgba(126, 200, 80, 0.12));
	border-block: 1px solid rgba(94, 184, 240, 0.14);
}

.marquee::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	animation: marquee-flash 4s ease-in-out infinite;
	pointer-events: none;
}

.marquee__track {
	display: flex;
	width: max-content;
	gap: 36px;
	animation: marquee-scroll 28s linear infinite;
}

.marquee__track span {
	flex-shrink: 0;
	padding: 6px 16px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--sky-800);
	font-size: 0.88rem;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(42, 90, 138, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.marquee__track span:nth-child(odd) {
	animation: tag-bob 3s ease-in-out infinite;
}

.marquee__track span:nth-child(even) {
	animation: tag-bob 3s ease-in-out infinite reverse;
	animation-delay: -1.5s;
}

/* Sections */
.section {
	position: relative;
	padding: 88px 0;
}

.section-decor--dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(94, 184, 240, 0.14) 1px, transparent 1px);
	background-size: 22px 22px;
	mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
	opacity: 0.6;
}

.section-wave--top {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 48px;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48V20c80-12 160 12 240 0s160-12 240 0 160 12 240 0 160-12 240 0 160 12 240 0v28H0z' fill='%23fffdf9'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
	transform: translateY(-1px);
}

.section-head {
	max-width: 680px;
	margin-bottom: 42px;
}

.section-eyebrow {
	margin: 0 0 10px;
	color: var(--orange-500);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.section-eyebrow--light {
	color: #ffe082;
}

.section-title {
	margin: 0 0 12px;
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	line-height: 1.2;
	color: var(--sky-800);
}

.section-title--light {
	color: #fff;
}

.section-title--shimmer {
	background: linear-gradient(90deg, var(--sky-800) 0%, #3a9fd9 25%, #ff8c2a 50%, #7ec850 75%, var(--sky-800) 100%);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: gradient-flow 10s ease-in-out infinite alternate;
}

.section-desc {
	margin: 0;
	color: var(--ink-soft);
	font-size: 1.02rem;
}

.section-desc--light {
	color: rgba(255, 255, 255, 0.88);
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.feature-card {
	position: relative;
	padding: 26px 24px;
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow);
	border: 1px solid rgba(94, 184, 240, 0.12);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
	overflow: hidden;
}

.feature-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(94, 184, 240, 0.08), transparent 55%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.feature-card:hover::before {
	opacity: 1;
}

.feature-card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 22px 50px rgba(42, 90, 138, 0.18);
}

.feature-card--glow::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: calc(var(--radius-lg) + 1px);
	padding: 2px;
	background: conic-gradient(from var(--card-angle, 0deg), #5eb8f0, #ffc94d, #7ec850, #ff8c2a, #5eb8f0);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0.45;
	animation: border-spin 5s linear infinite;
	pointer-events: none;
	z-index: 0;
}

.feature-card--glow:hover::after {
	opacity: 1;
}

.feature-card--glow:hover {
	box-shadow:
		0 22px 50px rgba(42, 90, 138, 0.2),
		0 0 40px rgba(94, 184, 240, 0.15),
		0 0 60px rgba(255, 201, 77, 0.1);
}

.feature-card:hover .feature-card__icon {
	animation: icon-bounce 0.55s ease;
}

.feature-card > * {
	position: relative;
	z-index: 1;
}

.feature-card__spark {
	position: absolute;
	top: 14px;
	right: 16px;
	color: rgba(255, 201, 77, 0.55);
	font-size: 0.9rem;
	animation: sparkle-pop 2.4s ease-in-out infinite;
}

.feature-card__icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	margin-bottom: 18px;
	border-radius: 16px;
}

.feature-card__icon img {
	width: 28px;
	height: 28px;
}

.feature-card__icon--blue {
	background: rgba(94, 184, 240, 0.18);
}

.feature-card__icon--orange {
	background: rgba(255, 140, 42, 0.16);
}

.feature-card__icon--green {
	background: rgba(126, 200, 80, 0.18);
}

.feature-card__icon--gold {
	background: rgba(255, 201, 77, 0.22);
}

.feature-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
	color: var(--sky-800);
}

.feature-card p {
	margin: 0;
	color: var(--ink-soft);
	font-size: 0.95rem;
}

.experience {
	background: linear-gradient(180deg, rgba(197, 235, 255, 0.35), rgba(255, 253, 249, 0));
}

.experience__grid {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 40px;
	align-items: center;
}

.check-list {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 12px;
	color: var(--ink-soft);
}

.check-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--green-600);
	font-weight: 900;
}

.experience__panels {
	display: grid;
	gap: 16px;
}

.shooting-star {
	position: absolute;
	width: 80px;
	height: 2px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
	border-radius: 999px;
	transform: rotate(-35deg);
	opacity: 0;
	animation: shooting-star var(--dur, 1.2s) ease-in forwards;
	animation-delay: var(--delay, 0s);
	box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.xp-panel {
	position: relative;
	padding: 24px 22px 24px 64px;
	border-radius: var(--radius-lg);
	color: #fff;
	box-shadow: var(--shadow);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
	overflow: hidden;
}

.xp-panel::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.xp-panel:hover::before {
	opacity: 1;
}

.xp-panel:hover {
	transform: translateX(8px) scale(1.02);
	box-shadow: 0 20px 44px rgba(42, 90, 138, 0.22);
}

.xp-panel__icon {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.6rem;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.xp-panel h3 {
	margin: 0 0 8px;
	font-size: 1.2rem;
}

.xp-panel p {
	margin: 0;
	opacity: 0.92;
}

.xp-panel--challenge {
	background: linear-gradient(135deg, #5eb8f0, #3a9fd9);
}

.xp-panel--ai {
	background: linear-gradient(135deg, #ffb74d, #ff8c2a);
}

.xp-panel--pet {
	background: linear-gradient(135deg, #8fd97a, #4fa838);
}

.step-list {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.step-track {
	position: absolute;
	top: 58%;
	left: 8%;
	right: 8%;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--sky-400), var(--gold), var(--green-400));
	opacity: 0.35;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.step-track.is-visible {
	transform: scaleX(1);
}

.step-item {
	position: relative;
	padding: 28px 24px;
	border-radius: var(--radius-lg);
	background: #fff;
	box-shadow: var(--shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(42, 90, 138, 0.16);
}

.step-item:hover .step-item__num {
	animation: icon-bounce 0.5s ease;
}

.step-item__num {
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	margin-bottom: 16px;
	border-radius: 14px;
	background: linear-gradient(180deg, var(--sky-100), var(--sky-400));
	color: var(--sky-800);
	font-family: var(--font-display);
	font-size: 1.2rem;
}

.step-item h3 {
	margin: 0 0 10px;
	color: var(--sky-800);
}

.step-item p {
	margin: 0;
	color: var(--ink-soft);
}

.download {
	position: relative;
	padding-bottom: 100px;
	overflow: hidden;
}

.download__decor {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.download__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	animation: orb-drift 6s ease-in-out infinite;
}

.download__orb--1 {
	width: 120px;
	height: 120px;
	top: -20px;
	left: 10%;
	background: rgba(255, 255, 255, 0.18);
}

.download__orb--2 {
	width: 80px;
	height: 80px;
	bottom: 10%;
	right: 15%;
	background: rgba(255, 255, 255, 0.14);
	animation-delay: -2s;
}

.download__orb--3 {
	width: 60px;
	height: 60px;
	top: 30%;
	right: 35%;
	background: rgba(255, 224, 130, 0.35);
	animation-delay: -4s;
}

.download__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 42px 36px;
	border-radius: calc(var(--radius-lg) + 8px);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
		linear-gradient(135deg, #3a9fd9 0%, #5eb8f0 45%, #7ec850 100%);
	background-size: 200% 200%, 100% 100%;
	box-shadow: 0 24px 60px rgba(58, 159, 217, 0.28);
	animation: cta-glow 4s ease-in-out infinite, download-mesh 10s ease infinite;
	overflow: hidden;
}

.download__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.25) 0%, transparent 40%),
		radial-gradient(circle at 80% 70%, rgba(255, 224, 130, 0.2) 0%, transparent 35%);
	animation: aurora-shift 8s ease-in-out infinite alternate;
	pointer-events: none;
}

.download__actions {
	text-align: center;
}

.download__hint {
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.88);
	font-size: 0.92rem;
}

.download__panel {
	flex: 1;
	min-width: 0;
}

.download__meta {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.95);
	font-weight: 700;
}

.download__meta--sub {
	font-weight: 500;
	opacity: 0.88;
	font-size: 0.92rem;
}

.download__changelog {
	margin-top: 18px;
	padding: 16px 18px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.18);
	text-align: left;
}

.download__changelog-title {
	margin: 0 0 10px;
	font-size: 0.95rem;
	color: #fff;
}

.download__changelog-list {
	margin: 0;
	padding-left: 1.1rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9rem;
	line-height: 1.7;
}

.btn--ghost-light {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem 1.4rem;
	border-radius: 999px;
	border: 2px solid rgba(255, 255, 255, 0.72);
	color: #fff;
	background: rgba(255, 255, 255, 0.08);
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.btn--ghost-light:hover {
	background: rgba(255, 255, 255, 0.16);
	transform: translateY(-1px);
}

.btn.is-disabled,
.btn.is-disabled:hover {
	opacity: 0.55;
	cursor: not-allowed;
	transform: none;
	pointer-events: none;
}

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

.gallery-card {
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(255, 201, 138, 0.35);
}

.gallery-card img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: var(--screenshot-aspect);
	object-fit: contain;
	object-position: center;
	background: #f5fbff;
}

.gallery-card figcaption {
	padding: 12px 14px 14px;
	font-weight: 700;
	color: var(--ink);
}

.audience {
	background: linear-gradient(180deg, rgba(255, 249, 240, 0.65) 0%, rgba(255, 255, 255, 0) 100%);
}

.audience__grid {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 28px;
	align-items: start;
}

.audience-cards {
	display: grid;
	gap: 14px;
}

.audience-card {
	padding: 18px 20px;
	border-radius: 18px;
	background: #fff;
	border: 1px solid rgba(255, 201, 138, 0.35);
	box-shadow: var(--shadow-soft);
}

.audience-card h3 {
	margin: 0 0 8px;
	font-size: 1.05rem;
	color: var(--ink);
}

.audience-card p {
	margin: 0;
	color: var(--ink-soft);
	line-height: 1.7;
}

.faq-list {
	display: grid;
	gap: 12px;
	max-width: 860px;
}

.faq-item {
	padding: 16px 18px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(255, 201, 138, 0.35);
	box-shadow: var(--shadow-soft);
}

.faq-item summary {
	cursor: pointer;
	font-weight: 800;
	color: var(--ink);
	list-style: none;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item p {
	margin: 10px 0 0;
	color: var(--ink-soft);
	line-height: 1.7;
}

/* Footer */
.site-footer {
	padding: 56px 0 28px;
	background: #1f3344;
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr 1fr;
	gap: 28px;
	margin-bottom: 28px;
}

.brand--footer .brand__text {
	color: #fff;
}

.footer-tagline {
	margin: 12px 0 0;
	max-width: 280px;
	color: rgba(255, 255, 255, 0.68);
}

.footer-title {
	margin: 0 0 12px;
	color: #fff;
	font-size: 1rem;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 8px;
}

.footer-links a:hover {
	color: #fff;
}

.site-footer__bottom {
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.56);
}

/* Reveal */
.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.reveal--delay {
	transition-delay: 0.15s;
}

.reveal[data-stagger] {
	transition-delay: calc(var(--stagger, 0) * 90ms);
}

/* Animations */
@keyframes sun-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

@keyframes sun-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes cloud-drift {
	0%, 100% { transform: translate3d(-22px, 0, 0); }
	50% { transform: translate3d(22px, 0, 0); }
}

@keyframes bird-glide {
	0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.75; }
	50% { transform: translate3d(28px, -8px, 0); opacity: 0.95; }
}

@keyframes bird-fly {
	0% { transform: translateX(0) translateY(0); opacity: 0; }
	8% { opacity: 0.85; }
	92% { opacity: 0.85; }
	100% { transform: translateX(calc(100vw + 80px)) translateY(-18px); opacity: 0; }
}

@keyframes sparkle-pop {
	0%, 100% { opacity: 0.35; transform: scale(0.85) rotate(0deg); }
	50% { opacity: 1; transform: scale(1.15) rotate(18deg); }
}

@keyframes hero-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes marquee-scroll {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes blob-float {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(24px, -18px) scale(1.05); }
	66% { transform: translate(-16px, 12px) scale(0.96); }
}

@keyframes sparkle-twinkle {
	0%, 100% { opacity: 0.15; transform: scale(0.6); }
	50% { opacity: 0.9; transform: scale(1); }
}

@keyframes btn-shimmer {
	0%, 72%, 100% { transform: translateX(-120%); }
	40% { transform: translateX(120%); }
}

@keyframes icon-bounce {
	0%, 100% { transform: translateY(0); }
	40% { transform: translateY(-6px); }
	70% { transform: translateY(2px); }
}

@keyframes orb-drift {
	0%, 100% { transform: translate(0, 0); }
	50% { transform: translate(12px, -16px); }
}

@keyframes cta-glow {
	0%, 100% { box-shadow: 0 24px 60px rgba(58, 159, 217, 0.28); }
	50% { box-shadow: 0 28px 70px rgba(126, 200, 80, 0.35); }
}

@keyframes float-y {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes device-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

@keyframes device-glow {
	0%, 100% { opacity: 0.55; }
	50% { opacity: 1; }
}

@keyframes mock-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.03); }
}

@keyframes brand-pulse {
	0%, 100% { box-shadow: 0 6px 0 rgba(224, 144, 32, 0.35), 0 0 0 rgba(255, 201, 77, 0); }
	50% { box-shadow: 0 6px 0 rgba(224, 144, 32, 0.35), 0 0 20px rgba(255, 201, 77, 0.5); }
}

@keyframes aurora-shift {
	0% { transform: translate3d(0, 0, 0) scale(1); }
	100% { transform: translate3d(3%, -2%, 0) scale(1.04); }
}

@keyframes grid-drift {
	from { background-position: 0 0; }
	to { background-position: 48px 48px; }
}

@keyframes gradient-flow {
	0% { background-position: 0% center; }
	100% { background-position: 100% center; }
}

@keyframes orbit-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes orbit-counter {
	from { transform: rotate(0deg); }
	to { transform: rotate(-360deg); }
}

@keyframes border-spin {
	from { --card-angle: 0deg; }
	to { --card-angle: 360deg; }
}

@property --card-angle {
	syntax: "<angle>";
	initial-value: 0deg;
	inherits: false;
}

@keyframes screen-shine {
	0%, 70%, 100% { transform: translateX(-120%); }
	40% { transform: translateX(120%); }
}

@keyframes shooting-star {
	0% { opacity: 0; transform: rotate(-35deg) translateX(0); }
	10% { opacity: 1; }
	100% { opacity: 0; transform: rotate(-35deg) translateX(280px); }
}

@keyframes marquee-flash {
	0%, 100% { opacity: 0; transform: translate3d(-100%, 0, 0); }
	50% { opacity: 0.45; transform: translate3d(100%, 0, 0); }
}

@keyframes tag-bob {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-3px); }
}

@keyframes btn-pulse-ring {
	0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 0 rgba(255, 255, 255, 0.4); }
	50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12), 0 0 0 12px rgba(255, 255, 255, 0); }
}

@keyframes download-mesh {
	0%, 100% { background-position: 0% 50%, 0% 0%; }
	50% { background-position: 100% 50%, 0% 0%; }
}

.download__copy,
.download__actions {
	position: relative;
	z-index: 1;
}

.steps .container {
	position: relative;
}

.step-track {
	top: auto;
	bottom: 42%;
	left: 6%;
	right: 6%;
}

/* Responsive */
@media (max-width: 960px) {
	.hero__grid,
	.experience__grid,
	.feature-grid,
	.step-list,
	.site-footer__grid,
	.gallery-grid,
	.audience__grid,
	.download__inner {
		grid-template-columns: 1fr;
		display: grid;
	}

	.hero__stats {
		grid-template-columns: 1fr;
	}

	.header-cta {
		display: none;
	}

	.nav-toggle {
		display: block;
	}

	.site-nav {
		position: fixed;
		inset: var(--header-h) 16px auto 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px;
		border-radius: var(--radius-md);
		background: rgba(255, 253, 249, 0.96);
		box-shadow: var(--shadow);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav a {
		padding: 12px 14px;
		border-radius: 10px;
	}

	.site-nav a:hover {
		background: rgba(94, 184, 240, 0.12);
	}
}

@media (max-width: 640px) {
	.section {
		padding: 72px 0;
	}

	.hero {
		padding-top: 36px;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.download__inner {
		padding: 28px 22px;
	}

	.step-track {
		display: none;
	}

	.cursor-glow {
		display: none;
	}

	.hero__decor-orbit .decor-orbit-item--icon,
	.hero__decor-orbit .decor-orbit-item--spark {
		display: none;
	}

	.hero__decor-orbit .decor-orbit-item--chip:nth-child(n+4) {
		display: none;
	}

	.hero__device {
		min-height: 340px;
		padding: 28px 16px 20px;
	}

	.hero__canvas {
		opacity: 0.4;
	}

	.back-to-top {
		right: 16px;
		bottom: 16px;
		width: 44px;
		height: 44px;
	}
}

/* Mobile performance: reduce expensive paints and flicker */
@media (max-width: 768px), (hover: none) and (pointer: coarse) {
	html.is-mobile .site-header,
	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		background: rgba(255, 253, 249, 0.97);
	}

	.btn--ghost,
	.hero__badge,
	.decor-orbit-item--chip {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.hero__aurora {
		mix-blend-mode: normal;
		opacity: 0.72;
		animation: none;
	}

	.hero__grid-lines {
		animation: none;
	}

	.page-decor {
		opacity: 0.55;
	}

	.page-decor__blob {
		filter: blur(36px);
		animation-duration: 22s;
	}

	.feature-card--glow::after {
		animation: none;
		opacity: 0.4;
	}

	.hero__canvas,
	.hero__shooting-stars,
	.cursor-glow {
		display: none;
	}

	.marquee::before {
		animation: none;
		opacity: 0;
	}

	.hero-animate {
		animation-duration: 0.55s;
	}

	.reveal {
		transition-duration: 0.45s;
	}

	.hero__cloud,
	.hero__bird,
	.marquee__track,
	.page-decor__blob,
	.hero__device {
		-webkit-backface-visibility: hidden;
		backface-visibility: hidden;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}

	.hero-animate {
		opacity: 1;
		transform: none;
	}

	.cursor-glow {
		display: none;
	}
}
