* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--hero-background:
		radial-gradient(
			circle at 15% 30%,
			rgba(129, 3, 233, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 85% 20%,
			rgba(214, 59, 245, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 60% 80%,
			rgba(106, 90, 255, 0.3) 0%,
			transparent 50%
		),
		radial-gradient(
			circle at 30% 70%,
			rgba(202, 166, 7, 0.3) 0%,
			transparent 50%
		),
		linear-gradient(135deg, #12091f 0%, #21133a 50%, #2d1b4e 100%);
	--hero-background-fallback: #180d2e;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 110px;
	background: var(--hero-background-fallback);
}

body {
	font-family: "Poppins", sans-serif;
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	background: var(--hero-background);
	background-color: var(--hero-background-fallback);
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	overflow-x: hidden;
	line-height: 1.6;
}

/* Animated background with artistic gradients */
.hero-bg {
	position: fixed;
	inset: 0;
	width: auto;
	height: 100vh;
	height: 100svh;
	height: 100dvh;
	background: var(--hero-background);
	background-color: var(--hero-background-fallback);
	background-repeat: no-repeat;
	background-size: cover;
	z-index: -2;
	animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
	0%,
	100% {
		transform: scale(1) rotate(0deg);
	}
	50% {
		transform: scale(1.1) rotate(1deg);
	}
}

/* Floating creative elements */
.floating-elements {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.floating-shape {
	position: absolute;
	border-radius: 50%;
	opacity: 0.1;
	animation: floatAround 25s infinite linear;
}

.floating-shape:nth-child(1) {
	width: 60px;
	height: 60px;
	background: linear-gradient(45deg, #ff4757, #ff6348);
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.floating-shape:nth-child(2) {
	width: 40px;
	height: 40px;
	background: linear-gradient(45deg, #ffd166, #ff8c42);
	top: 60%;
	right: 15%;
	animation-delay: -5s;
}

.floating-shape:nth-child(3) {
	width: 80px;
	height: 80px;
	background: linear-gradient(45deg, #6a5acd, #9b59b6);
	bottom: 30%;
	left: 20%;
	animation-delay: -10s;
}

@keyframes floatAround {
	0% {
		transform: translateY(0px) translateX(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-100px) translateX(100px) rotate(90deg);
	}
	50% {
		transform: translateY(-50px) translateX(-50px) rotate(180deg);
	}
	75% {
		transform: translateY(50px) translateX(-100px) rotate(270deg);
	}
	100% {
		transform: translateY(0px) translateX(0px) rotate(360deg);
	}
}

.hero-container {
	min-height: 100vh;
	min-height: 100svh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	position: relative;
	padding: 20px;
	padding-bottom: max(20px, env(safe-area-inset-bottom));
}

/* Header with navigation */
.header {
	position: sticky;
	top: 16px;
	z-index: 100;
	display: grid;
	grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
	align-items: center;
	gap: 18px;
	width: min(1320px, calc(100% - 32px));
	margin: 0 auto 44px;
	padding: 12px 14px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	background: rgba(13, 13, 13, 0.72);
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	opacity: 0;
	animation: slideDown 1s ease-out 0.3s forwards;
}

.logo {
	display: inline-flex;
	align-items: center;
	grid-column: 1;
	justify-self: start;
	flex: 0 0 auto;
	font-family: "Press Start 2P", monospace;
	font-size: clamp(0.72rem, 1.5vw, 0.95rem);
	font-weight: 900;
	line-height: 1.2;
	padding: 10px 12px;
	background: linear-gradient(135deg, #ff4757, #ff8c42, #6a5acd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	white-space: nowrap;
}

.nav-toggle {
	position: relative;
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.26);
	outline: none;
	transform: translateY(-1px);
}

.nav-toggle span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 0.25s ease, opacity 0.2s ease;
	transform: translate(-50%, -50%);
}

.nav-toggle span:nth-child(1) {
	transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle span:nth-child(3) {
	transform: translate(-50%, calc(-50% + 6px));
}

.header.nav-open .nav-toggle span:nth-child(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.header.nav-open .nav-toggle span:nth-child(2) {
	opacity: 0;
}

.header.nav-open .nav-toggle span:nth-child(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.nav {
	display: contents;
	list-style: none;
}

.nav-main-links,
.nav-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.nav-main-links {
	grid-column: 2;
	justify-self: center;
}

.nav-actions {
	grid-column: 3;
	justify-self: end;
}

.nav a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 14px;
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.74);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1;
	transition: all 0.3s ease;
	position: relative;
	white-space: nowrap;
}

.nav a:hover,
.nav a:focus-visible {
	color: #fff;
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-1px);
	outline: none;
}

.nav .nav-trial-link {
	color: #ffd84d;
	font-weight: 700;
}

.nav .nav-trial-link:hover,
.nav .nav-trial-link:focus-visible {
	color: #ffe680;
}

.nav a::after {
	display: none;
}

.nav .nav-cta {
	color: #fff;
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	box-shadow: 0 10px 24px rgba(255, 71, 87, 0.28);
}

.nav .nav-cta:hover,
.nav .nav-cta:focus-visible {
	background: linear-gradient(135deg, #ff5c6a, #ff9a5c);
}

.language-switch {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	min-height: 40px;
	padding: 3px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
	min-width: 38px;
	min-height: 32px;
	padding: 7px 10px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: rgba(255, 255, 255, 0.68);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.language-switch button:hover,
.language-switch button:focus-visible {
	color: #fff;
	outline: none;
	transform: translateY(-1px);
}

.language-switch button.is-active {
	background: #fff;
	color: #171717;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Story entry */
.story-entry-section {
	position: relative;
	z-index: 4;
	width: calc(100% + 40px);
	margin: 80px -20px 0;
	min-height: 680px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
		linear-gradient(135deg, #30142d 0%, #201432 50%, #140d26 100%);
	background-size: 58px 58px, 58px 58px, auto;
	opacity: 0;
	overflow: hidden;
	animation: fadeInUp 1s ease-out 0.62s forwards;
}

.story-entry-section::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 180px;
	background: linear-gradient(to bottom, transparent, #160b2e);
	pointer-events: none;
}

.story-entry-link {
	position: relative;
	z-index: 1;
	display: block;
	min-height: 680px;
	padding: 84px 20px 92px;
	color: inherit;
	text-decoration: none;
}

.story-entry-inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 900px);
	align-items: center;
	gap: 42px;
	max-width: 1280px;
	min-height: 504px;
	margin: 0 auto;
}

.story-entry-copy {
	position: relative;
	z-index: 2;
	min-width: 0;
}

.story-entry-parallax {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	will-change: transform;
}

.story-entry-parallax-grid {
	top: 18%;
	right: 8%;
	width: min(420px, 34vw);
	aspect-ratio: 1.35;
	border: 1px solid rgba(255, 255, 255, 0.055);
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(180deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
	background-size: 48px 48px;
	box-shadow: inset 0 0 0 1px rgba(255, 140, 66, 0.035);
	opacity: 0.42;
	transform: rotate(-3deg);
}

.story-entry-parallax-line {
	right: 11%;
	bottom: 26%;
	width: min(520px, 38vw);
	height: 2px;
	background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.42), transparent);
	opacity: 0.46;
}

.story-entry-kicker {
	margin: 0 0 24px;
	color: #ff8c42;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

.story-entry-title {
	margin: 0 0 34px;
	color: #ffffff;
	letter-spacing: 0;
	line-height: 0.96;
}

.story-entry-soft {
	display: block;
	background: linear-gradient(to bottom, #ffffff, rgba(255, 255, 255, 0.38));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 6rem;
	font-weight: 900;
}

.story-entry-brand {
	display: block;
	margin-top: 18px;
	color: rgba(255, 255, 255, 0.55);
	font-family: "Press Start 2P", monospace;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.22;
	text-shadow: 0 14px 46px rgba(0, 0, 0, 0.28);
	transition: color 0.25s ease;
}

.story-entry-copy p {
	max-width: 610px;
	margin: 0;
	color: rgba(255, 255, 255, 0.62);
	font-size: 1.16rem;
	line-height: 1.62;
}

.story-entry-copy p + p {
	margin-top: 16px;
}

.story-entry-copy strong {
	display: block;
	max-width: 660px;
	margin-top: 30px;
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.45rem;
	font-weight: 900;
	line-height: 1.32;
}

.story-entry-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	margin-top: 30px;
	padding: 11px 16px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.24);
}

.story-entry-action::after {
	content: "\2192";
	margin-left: 9px;
}

.story-entry-link:hover .story-entry-action,
.story-entry-link:focus-visible .story-entry-action {
	background: linear-gradient(135deg, #ff5c6a, #ff9a5c);
	color: #ffffff;
}

.story-entry-link:focus-visible {
	outline: 2px solid rgba(255, 255, 255, 0.76);
	outline-offset: -10px;
}

.story-entry-bg-word {
	position: absolute;
	top: -44px;
	left: -28px;
	z-index: 0;
	color: rgba(255, 255, 255, 0.035);
	font-size: 12rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 0.8;
	pointer-events: none;
	user-select: none;
	will-change: transform;
	white-space: nowrap;
}

.story-entry-rail {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: rgba(255, 255, 255, 0.32);
	font-size: 0.68rem;
	font-weight: 900;
	line-height: 1;
	text-align: right;
	text-transform: uppercase;
	will-change: transform;
}

.story-entry-rail li {
	position: relative;
	padding-right: 22px;
}

.story-entry-rail li::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.18);
	transform: translateY(-50%);
}

.story-entry-rail .is-active {
	color: #ffffff;
}

.story-entry-rail .is-active::after {
	background: #ff8c42;
	box-shadow: 0 0 18px rgba(255, 140, 66, 0.72);
}

.story-entry-link:hover .story-entry-brand,
.story-entry-link:focus-visible .story-entry-brand {
	color: rgba(255, 255, 255, 0.68);
}

.story-entry-link:hover,
.story-entry-link:focus-visible {
	text-decoration: none;
}

/* Hero content */
.hero-content {
	text-align: center;
	margin-bottom: 60px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 1;
	opacity: 0;
	animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* Scattered TikTok-style live chat bubbles */
.live-chat-cloud {
	position: absolute;
	inset: 0;
	z-index: auto;
	pointer-events: none;
}

.mobile-chat-stack {
	display: none;
}

.hero-content > :not(.live-chat-cloud) {
	position: relative;
	z-index: 2;
}

.live-chat-bubble {
	--bubble-x: 0px;
	--bubble-y: 0px;
	--float-x: 0px;
	--float-y: 0px;
	--depth-scale: 1;
	--depth-blur: 0px;
	--depth-opacity: 1;
	position: absolute;
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 190px;
	max-width: 250px;
	padding: 10px 15px 10px 10px;
	border: 1px solid rgba(255, 255, 255, .17);
	border-radius: 18px 18px 18px 5px;
	background: linear-gradient(135deg, rgba(34, 22, 48, .82), rgba(20, 15, 31, .62));
	box-shadow: 0 12px 35px rgba(0, 0, 0, .28), 0 0 22px rgba(191, 55, 255, .12);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	text-align: left;
	opacity: 0;
	transform: translate(calc(var(--bubble-x) + var(--float-x)), calc(var(--bubble-y) + 22px + var(--float-y))) scale(.82);
	animation: liveChatPop 8s cubic-bezier(.2,.8,.2,1) infinite;
	will-change: transform, opacity, filter;
}

.live-chat-bubble::after {
	content: "";
	position: absolute;
	left: -1px;
	bottom: -7px;
	width: 15px;
	height: 15px;
	background: rgba(28, 19, 40, .78);
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.chat-avatar {
	display: grid;
	place-items: center;
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, .8);
	border-radius: 50%;
	background: var(--avatar-color, linear-gradient(135deg, #ff3b73, #7c3cff));
	box-shadow: 2px 0 #25f4ee, -2px 0 #fe2c55;
	color: #fff;
	font-size: .7rem;
	font-weight: 800;
}

.chat-avatar--icon {
	font-size: 1.05rem;
}

.chat-copy { min-width: 0; line-height: 1.25; }

.chat-user {
	display: block;
	margin-bottom: 3px;
	color: #d8a9ff;
	font-size: .68rem;
	font-weight: 700;
	letter-spacing: .03em;
}

.chat-message {
	display: block;
	color: #fff;
	font-size: .78rem;
	line-height: 1.25;
	overflow-wrap: anywhere;
	white-space: normal;
}

.chat-gift .chat-message { color: #ffe66d; }

.live-chat-bubble:nth-child(1) { top: 18%; left: -18%; --bubble-x: -8px; z-index: 3; animation-delay: 1.2s; }
.live-chat-bubble:nth-child(2) { top: 8%; right: -33%; --bubble-x: 8px; --depth-scale: .78; --depth-blur: 2.7px; --depth-opacity: .62; z-index: 1; animation-delay: 2.5s; }
.live-chat-bubble:nth-child(3) { top: 48%; left: -39%; --bubble-x: -10px; --depth-scale: .9; --depth-blur: 1px; --depth-opacity: .82; z-index: 2; animation-delay: 3.8s; }
.live-chat-bubble:nth-child(4) { top: 37%; right: -18%; --bubble-x: 10px; z-index: 3; animation-delay: 5.1s; }
.live-chat-bubble:nth-child(5) { top: 75%; left: -27%; --bubble-x: -8px; --depth-scale: .76; --depth-blur: 3.2px; --depth-opacity: .58; z-index: 1; animation-delay: 6.4s; }
.live-chat-bubble:nth-child(6) { top: 78%; right: -29%; --bubble-x: 8px; --depth-scale: .9; --depth-blur: .9px; --depth-opacity: .84; z-index: 2; animation-delay: 7.7s; }
.live-chat-bubble:nth-child(7) { top: 61%; right: -48%; --bubble-x: 9px; --depth-scale: .72; --depth-blur: 3.5px; --depth-opacity: .56; z-index: 1; animation-delay: 8.9s; }

@keyframes liveChatPop {
	0%, 12% {
		opacity: 0;
		transform: translate(calc(var(--bubble-x) + var(--float-x)), calc(var(--bubble-y) + 22px + var(--float-y))) scale(var(--depth-scale));
		filter: blur(calc(var(--depth-blur) + 5px));
	}
	20%, 68% {
		opacity: var(--depth-opacity);
		transform: translate(calc(var(--bubble-x) + var(--float-x)), calc(var(--bubble-y) + var(--float-y))) scale(var(--depth-scale));
		filter: blur(var(--depth-blur));
	}
	82%, 100% {
		opacity: 0;
		transform: translate(calc(var(--bubble-x) + var(--float-x)), calc(var(--bubble-y) - 28px + var(--float-y))) scale(var(--depth-scale));
		filter: blur(calc(var(--depth-blur) + 2px));
	}
}

@keyframes mobileChatPop {
	0%, 10% {
		opacity: 0;
		transform: translateY(10px) scale(.94);
		filter: blur(4px);
	}
	20%, 68% {
		opacity: var(--mobile-bubble-opacity);
		transform: translateY(0) scale(1);
		filter: blur(0);
	}
	82%, 100% {
		opacity: 0;
		transform: translateY(-10px) scale(.97);
		filter: blur(2px);
	}
}

.hero-title {
	font-family: "Press Start 2P", monospace;
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 900;
	line-height: 0.9;
	margin-bottom: 20px;
	position: relative;
}

.hero-title-line {
	display: block;
	overflow: hidden;
	padding: 0.08em 0;
}

.hero-title-line:first-child {
	margin-top: 95px;
}

.title-main {
	background: linear-gradient(135deg, #a81af9, #fd75ff, #6911c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	will-change: transform, opacity;
}

.title-sub {
	background: linear-gradient(135deg, #ec42ff, #dfdaff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	font-size: 0.7em;
	font-weight: 800;
	will-change: transform, opacity;
}

.hero-tagline {
	font-size: clamp(1.2rem, 3vw, 1.8rem);
	color: #bbb;
	margin-top: 95px;
	margin-bottom: 30px;
	font-weight: 500;
	will-change: transform, opacity;
}

.hero-description {
	font-size: clamp(calc(1rem - 3px), calc(2vw - 3px), calc(1.3rem - 3px));
	color: #888;
	max-width: 860px;
	margin: 0 auto 40px;
	line-height: 1.7;
	will-change: transform, opacity;
}

.hero-description strong {
	color: rgba(255, 255, 255, 0.9);
	font-weight: 700;
}

.hero-description-closing {
	display: block;
	margin-top: 14px;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	will-change: transform, opacity;
}

.btn {
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-block;
	position: relative;
	overflow: hidden;
}

.btn-primary {
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	color: white;
}

.btn-secondary {
	background: transparent;
	color: #ff4757;
	border: 2px solid #ff4757;
}

.btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.pricing-section {
	margin: 40px auto 80px;
	max-width: 1200px;
	width: 100%;
	padding: 0 20px;
	text-align: center;
	scroll-margin-top: 110px;
}

.free-download-section {
	width: calc(100% + 40px);
	margin: 0 -20px 96px;
	padding: 76px 20px;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: #fff;
	color: #171717;
	scroll-margin-top: 110px;
}

.free-download-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
	align-items: center;
	gap: clamp(28px, 5vw, 64px);
	width: min(1120px, 100%);
	margin: 0 auto;
}

.free-download-copy {
	text-align: left;
}

.free-download-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 32px;
	margin-bottom: 18px;
	padding: 7px 13px;
	border: 1px solid rgba(255, 71, 87, 0.18);
	border-radius: 999px;
	background: rgba(255, 71, 87, 0.08);
	color: #d73648;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.free-download-section h2 {
	margin-bottom: 18px;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.05;
	font-weight: 900;
}

.free-download-section p {
	max-width: 620px;
	margin: 0 0 28px;
	color: #4b5563;
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.6;
}

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

.free-download-points li {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid rgba(23, 23, 23, 0.08);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.7);
	color: #27272a;
	font-size: calc(0.92rem - 3px);
	font-weight: 700;
	box-shadow: 0 10px 30px rgba(23, 23, 23, 0.06);
}

.free-download-points li::before {
	content: "";
	flex: 0 0 auto;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.12);
}

.download-cards {
	display: grid;
	gap: 22px;
}

.download-card .card-header {
	padding-top: 26px;
}

.download-card .card-content {
	padding: 30px;
}

.download-card p {
	margin-bottom: 24px;
	color: #6b7280;
	line-height: 1.75;
}

.free-download-section .btn {
	width: 100%;
	min-width: 180px;
	text-align: center;
}

.free-download-panel .btn + .btn {
	margin-top: 12px;
}

.free-download-section + .pricing-section {
	margin-top: 0;
}

.pricing-section .container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
}

.features-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 28px;
	width: min(1180px, calc(100% - 40px));
	margin: 80px auto;
	padding: clamp(32px, 5vw, 54px);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 32px;
	background: radial-gradient(circle at 100% 0, rgba(255, 71, 87, 0.16), transparent 34%), linear-gradient(135deg, rgba(18, 18, 28, 0.96), rgba(36, 18, 62, 0.96));
	box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.features-cta .features-eyebrow {
	display: inline-flex;
	margin-bottom: 18px;
	padding: 8px 16px;
	border-radius: 999px;
	background: rgba(255, 71, 87, 0.12);
	color: #ffb5c1;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.features-cta h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.08;
	letter-spacing: -0.04em;
	color: #ffffff;
}

.features-cta p {
	max-width: 720px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.75;
	font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}

.features-cta-actions {
	display: grid;
	gap: 12px;
	min-width: 240px;
}

.features-cta-actions .btn {
	width: 100%;
}

@media (max-width: 980px) {
	.features-cta {
		grid-template-columns: 1fr;
		padding: 42px 20px;
	}

	.features-cta-actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.features-cta {
		width: calc(100% - 32px);
		margin: 64px auto;
		padding: 32px 16px;
	}

	.features-cta-actions {
		grid-template-columns: 1fr;
	}
}

.trial-connection-section {
	position: relative;
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 92px 20px 52px;
	overflow: hidden;
	background:
		radial-gradient(circle at 18% 12%, rgba(21, 155, 255, 0.26), transparent 34%),
		radial-gradient(circle at 82% 22%, rgba(124, 58, 237, 0.24), transparent 36%),
		radial-gradient(circle at 50% 100%, rgba(21, 155, 255, 0.14), transparent 44%),
		linear-gradient(135deg, #050608 0%, #0d0d15 52%, #130f20 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	scroll-margin-top: 110px;
}

.ready-to-try-section {
	width: 100%;
	padding: 80px 20px;
	background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
	color: #f8fafc;
	text-align: center;
	scroll-margin-top: 110px;
}

.ready-to-try-inner {
	max-width: 920px;
	margin: 0 auto;
}

.ready-to-try-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 18px;
	border-radius: 999px;
	background: rgba(255, 71, 87, 0.12);
	color: #ffb5c1;
	font-size: 0.85rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 18px;
}

.ready-to-try-section h2 {
	max-width: 760px;
	margin: 0 auto 20px;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	line-height: 1.05;
	font-weight: 900;
}

.ready-to-try-section p {
	max-width: 720px;
	margin: 0 auto 32px;
	color: rgba(248, 250, 252, 0.75);
	font-size: clamp(1rem, 1.6vw, 1.1rem);
	line-height: 1.75;
}

.ready-to-try-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.ready-to-try-actions .btn {
	min-width: 180px;
}

.trial-connection-inner {
	position: relative;
	z-index: 1;
	width: min(1240px, 100%);
	margin: 0 auto;
}

.trial-connection-head {
	max-width: 800px;
	margin: 0 auto 38px;
	text-align: center;
}

.trial-connection-head h2 {
	font-size: clamp(2.1rem, 4.8vw, 4rem);
	line-height: 1.05;
	font-weight: 900;
	color: #fff;
}

.trial-connection-head p {
	max-width: 720px;
	margin: 16px auto 0;
	color: rgba(255, 255, 255, 0.66);
	font-size: clamp(0.98rem, 1.8vw, 1.14rem);
	line-height: 1.7;
}

.trial-cta-kicker {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	margin-bottom: 14px;
	padding: 7px 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #ffb86b;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.trial-connection-cta {
	max-width: 920px;
	margin: 0 auto;
}

.trial-cta-card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	min-width: 0;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 28px;
	background: rgba(8, 10, 18, 0.78);
	box-shadow: 0 26px 76px rgba(0, 0, 0, 0.32);
	overflow: hidden;
}

.trial-cta-card::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(21, 155, 255, 0.12), rgba(124, 58, 237, 0.1), transparent 54%);
	pointer-events: none;
}

.trial-cta-icon,
.trial-cta-copy,
.trial-cta-button {
	position: relative;
	z-index: 1;
}

.trial-cta-icon {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border: 1px solid rgba(21, 155, 255, 0.35);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(21, 155, 255, 0.18), rgba(124, 58, 237, 0.2));
	box-shadow: 0 0 34px rgba(21, 155, 255, 0.16);
	color: #bde4ff;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0;
	overflow: hidden;
}

.trial-cta-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.trial-cta-copy h3 {
	color: #fff;
	font-size: clamp(1.2rem, 2.4vw, 1.55rem);
	line-height: 1.2;
	font-weight: 800;
}

.trial-cta-copy p {
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.64);
	font-size: 0.94rem;
	line-height: 1.55;
}

.trial-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 154px;
	text-align: center;
	white-space: nowrap;
}

.faq-section {
	width: calc(100% + 40px);
	margin: 70px -20px 0;
	padding: 72px 20px 64px;
	background: linear-gradient(135deg, rgba(18, 18, 28, 0.96), rgba(38, 18, 52, 0.92));
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	scroll-margin-top: 110px;
}

.faq-section .section-container {
	width: min(1180px, 100%);
}

.faq-heading {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.faq-heading h2 {
	font-size: clamp(2rem, 5vw, 3.4rem);
	line-height: 1.08;
	font-weight: 800;
	background: linear-gradient(135deg, #fff, #ff8c42);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.faq-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	max-width: 1080px;
	margin: 0 auto;
}

.faq-item {
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: hidden;
}

.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 20px 22px;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

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

.faq-item summary::after {
	content: "+";
	display: grid;
	place-items: center;
	flex: 0 0 30px;
	width: 30px;
	height: 30px;
	border-radius: 999px;
	background: rgba(255, 140, 66, 0.16);
	color: #ff8c42;
	font-size: 1.2rem;
	line-height: 1;
}

.faq-item[open] summary::after {
	content: "-";
}

.faq-item p {
	padding: 0 22px 22px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.96rem;
	line-height: 1.7;
}

.faq-section + .site-footer {
	margin-top: 0 !important;
}

.section-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.site-footer {
	width: calc(100% + 40px);
	margin: 0 -20px -20px;
	padding: 42px 20px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	background: linear-gradient(135deg, #101014 0%, #181823 52%, #25142c 100%);
	color: rgba(255, 255, 255, 0.72);
	letter-spacing: 0.02em;
}

.footer-container {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(150px, 0.5fr) minmax(220px, 0.65fr) minmax(220px, 0.65fr);
	gap: clamp(24px, 4vw, 52px);
	align-items: start;
}

.footer-brand {
	max-width: 470px;
}

.footer-logo {
	display: inline-block;
	margin-bottom: 18px;
	font-family: "Press Start 2P", monospace;
	font-size: clamp(0.9rem, 1.8vw, 1.2rem);
	line-height: 1.4;
	text-decoration: none;
	background: linear-gradient(135deg, #ff4757, #ff8c42, #6a5acd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-logo:hover,
.footer-logo:focus-visible {
	text-decoration: none;
	outline: none;
}

.footer-brand p,
.footer-bottom {
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.95rem;
	line-height: 1.7;
}

.footer-title {
	margin-bottom: 18px;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.footer-links,
.footer-contact-list,
.footer-social {
	display: grid;
	gap: 12px;
}

.footer-links a,
.footer-contact-list a,
.social-link {
	color: rgba(255, 255, 255, 0.68);
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-list {
	margin: 0;
	font-style: normal;
}

.footer-contact-list span {
	color: rgba(255, 255, 255, 0.68);
}

.footer-contact-list a {
	word-break: break-word;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact-list a:hover,
.footer-contact-list a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
	color: #ff8c42;
	outline: none;
	transform: translateX(3px);
}

.social-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
}

.social-icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.07);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
}

.social-icon svg {
	display: block;
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.footer-bottom {
	width: min(1180px, calc(100% - 40px));
	margin: 30px auto 0;
	padding-top: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.site-footer strong {
	color: #fff;
	font-weight: 700;
}

.main-title {
	font-family: "Press Start 2P", monospace;
	font-size: 3rem;
	margin-bottom: 15px;
	letter-spacing: 0.5px;
	font-weight: 700;
	color: #ffffff;
}

.main-title span {
	color: #D4AF37;
	position: relative;
}

.main-title span::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #D4AF37;
	transform: scaleX(0.7);
	opacity: 0.8;
}

.subtitle {
	font-size: 1.1rem;
	color: #94979A;
	margin-bottom: 60px;
}

.pricing-cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
	perspective: 1000px;
}

.card {
	position: relative;
	width: 320px;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
	transform-style: preserve-3d;
	z-index: 1;
}

.card:hover {
	transform: translateY(-15px) rotateX(10deg);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
	border-color: rgba(212, 175, 55, 0.3);
}

.card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
	z-index: -1;
}

.card.premium {
	background: rgba(30, 30, 47, 0.8);
	border: 2px solid #D4AF37;
	transform: scale(1.05);
	z-index: 2;
}

.card.premium:hover {
	transform: translateY(-15px) rotateX(10deg) scale(1.05);
}

.popular-tag {
	position: absolute;
	top: 15px;
	right: 15px;
	background: #D4AF37;
	color: #1E1E2F;
	padding: 5px 15px;
	font-size: 0.8rem;
	font-weight: 600;
	border-radius: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.card-header {
	padding: 30px 20px 20px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier {
	font-family: "Poppins", sans-serif;
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.card.premium .tier {
	color: #D4AF37;
}

.price {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-bottom: 10px;
}

.currency {
	font-size: 1.08rem;
	font-weight: 500;
	margin-top: 4px;
	color: #F8F0D7;
}

.amount {
	font-size: 2.85rem;
	font-weight: 600;
	line-height: 1;
}

.card.premium .amount {
	color: #D4AF37;
}

.period {
	font-size: 0.74rem;
	color: #94979A;
	margin-top: 8px;
	margin-left: 5px;
}

.card-content {
	padding: 30px;
}

.features {
	list-style: none;
	margin-bottom: 30px;
}

.features li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	font-size: 0.95rem;
	text-align: left;
	opacity: 0;
	transform: translateY(10px);
	animation: fadeInUp 0.5s forwards;
}

.features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #D4AF37;
	font-weight: bold;
}

.features .not-included {
	color: #94979A;
	text-decoration: line-through;
	opacity: 0.7;
}

.features .not-included::before {
	content: "✕";
	color: #94979A;
}

.select-btn {
	width: 100%;
	padding: 12px;
	background: transparent;
	color: #FFFFFF;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	font-family: "Poppins", sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
	display: inline-block;
	text-align: center;
	text-decoration: none;
}

.select-btn:hover {
	border-color: #D4AF37;
	background: rgba(212, 175, 55, 0.1);
	transform: translateY(-3px);
}

.purchase-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
}

.purchase-actions .select-btn {
	min-width: 0;
	padding-inline: 10px;
	white-space: nowrap;
	font-size: 0.84rem;
	font-weight: 700;
	letter-spacing: 0.01em;
}

.purchase-actions .select-btn-idr {
	border-color: rgba(241, 194, 50, 0.72);
	background: rgba(241, 194, 50, 0.10);
	color: #ffe38a;
}

.purchase-actions .select-btn-idr:hover,
.purchase-actions .select-btn-idr:focus-visible {
	border-color: #f1c232;
	background: rgba(241, 194, 50, 0.18);
	color: #fff1bd;
}

.purchase-actions .select-btn-global {
	border-color: rgba(169, 120, 255, 0.62);
	background: rgba(132, 79, 224, 0.10);
	color: #d8c0ff;
}

.purchase-actions .select-btn-global:hover,
.purchase-actions .select-btn-global:focus-visible {
	border-color: #a978ff;
	background: rgba(132, 79, 224, 0.18);
	color: #f0e8ff;
}

.card.premium .purchase-actions .select-btn {
	border-width: 2px;
}

.card.premium .purchase-actions .select-btn-idr {
	background: #D4AF37;
	border-color: #D4AF37;
	color: #1E1E2F;
}

.card.premium .purchase-actions .select-btn-global {
	background: rgba(132, 79, 224, 0.18);
	border-color: rgba(169, 120, 255, 0.72);
	color: #f0e8ff;
}

@media (max-width: 420px) {
	.purchase-actions { gap: 8px; }
	.purchase-actions .select-btn {
		padding: 10px 6px;
		font-size: 0.76rem;
	}
}

.card.premium .select-btn {
	background: #D4AF37;
	color: #1E1E2F;
	border: none;
}

.card.premium .select-btn:hover {
	background: #C19B2B;
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.shine {
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		to right,
		rgba(255, 255, 255, 0) 0%,
		rgba(255, 255, 255, 0.1) 50%,
		rgba(255, 255, 255, 0) 100%
	);
	transform: rotate(30deg);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.card:hover .shine {
	opacity: 1;
	animation: shine 1.5s infinite;
}

.card.selected {
	border-color: #D4AF37;
	box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.card.pulse {
	animation: pulse 0.5s ease-out;
}

.card.clicked {
	transform: scale(0.98) !important;
	transition: transform 0.2s ease;
}

@keyframes shine {
	0% {
		transform: rotate(30deg) translateX(-100%);
	}
	100% {
		transform: rotate(30deg) translateX(100%);
	}
}

@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
	70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
	100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 1080px) {
	.pricing-cards {
		gap: 20px;
	}

	.footer-container {
		grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
	}

	.card {
		width: 300px;
	}

	.trial-cta-card {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.trial-cta-button {
		grid-column: 2;
		justify-self: start;
	}
}

@media (max-width: 768px) {
	.main-title {
		font-size: 2.5rem;
	}

	.pricing-cards {
		flex-direction: column;
		align-items: center;
	}

	.card, .card.premium {
		width: 100%;
		max-width: 350px;
		transform: none;
	}

	.popular-tag {
		top: 12px;
		right: 12px;
		padding: 4px 11px;
		border-radius: 13px;
		font-size: 0.68rem;
		line-height: 1.2;
	}

	.price {
		align-items: flex-start;
	}

	.currency {
		font-size: 1.15rem;
		margin-top: 4px;
	}

	.amount {
		font-size: 3.15rem;
	}

	.period {
		font-size: 0.78rem;
		margin-top: 8px;
	}

	.trial-connection-section {
		width: calc(100% + 30px);
		margin: 0 -15px;
		padding: 68px 15px 42px;
		scroll-margin-top: 100px;
	}

	.trial-connection-head {
		margin-bottom: 26px;
		text-align: left;
	}

	.trial-cta-card {
		grid-template-columns: 1fr;
		padding: 18px;
		border-radius: 24px;
	}

	.trial-cta-icon {
		width: 52px;
		height: 52px;
		border-radius: 16px;
	}

	.trial-cta-button {
		grid-column: auto;
		justify-self: stretch;
		width: 100%;
		min-width: 0;
	}

	.trial-cta-copy p {
		font-size: 0.9rem;
	}

	.site-footer {
		width: calc(100% + 30px);
		margin: 0 -15px -24px;
		padding: 36px 15px max(18px, env(safe-area-inset-bottom));
		font-size: 0.85rem;
	}

	@supports (margin-bottom: calc(0px - max(24px, env(safe-area-inset-bottom)))) {
		.site-footer {
			margin-bottom: calc(0px - max(24px, env(safe-area-inset-bottom)));
		}
	}

	.footer-container {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer-bottom {
		width: 100%;
		margin-top: 24px;
		padding-top: 14px;
		text-align: left;
	}

	.faq-section {
		width: calc(100% + 30px);
		margin: 56px -15px 0;
		padding: 56px 15px 54px;
	}

	.faq-heading {
		margin-bottom: 26px;
		text-align: left;
	}

	.faq-list {
		grid-template-columns: 1fr;
	}

	.faq-item summary {
		padding: 17px 16px;
		font-size: 0.94rem;
	}

	.faq-item p {
		padding: 0 16px 18px;
		font-size: 0.9rem;
	}

	.section-container {
		width: 100%;
	}

	.card[data-tier="basic"] {
		order: 1;
	}

	.card.premium {
		transform: none;
		order: 2;
	}

	.card[data-tier="enterprise"] {
		order: 3;
	}

	.card.premium:hover {
		transform: translateY(-15px) rotateX(10deg);
	}
}

/* Compact feature preview on the home page */
.portfolio-section.portfolio-highlight-section {
	padding: 88px 20px 96px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(180deg, rgba(12, 7, 22, 0.76), #160b2e 24%, #160b2e 100%);
}

.portfolio-highlight-heading {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.portfolio-highlight-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 15px;
	color: #ffb36f;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.portfolio-highlight-eyebrow::before,
.portfolio-highlight-eyebrow::after {
	content: "";
	width: 24px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
}

.portfolio-highlight-heading .section-title {
	margin-bottom: 15px;
	opacity: 1;
	animation: none;
}

.portfolio-highlight-heading > p {
	max-width: 680px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.58);
	font-size: 1rem;
	line-height: 1.7;
}

.portfolio-grid.portfolio-highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 1320px;
	padding: 0;
}

.portfolio-highlight-grid .portfolio-item:nth-child(n) {
	position: relative;
	display: block;
	min-height: 320px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.105);
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: none;
	opacity: 1;
	animation: none;
	transform: none;
	transition: transform 0.35s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.portfolio-highlight-grid .portfolio-item:nth-child(2),
.portfolio-highlight-grid .portfolio-item:nth-child(5) {
	background: linear-gradient(145deg, rgba(255, 71, 87, 0.13), rgba(124, 58, 237, 0.12));
}

.portfolio-highlight-grid .portfolio-item::before {
	content: attr(data-icon);
	display: grid;
	place-items: center;
	width: 55px;
	height: 55px;
	margin: 28px 28px 34px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 17px;
	background: linear-gradient(135deg, rgba(255, 71, 87, 0.16), rgba(155, 92, 255, 0.18));
	color: #ffd0aa;
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.04em;
}

.portfolio-highlight-grid .portfolio-item::after {
	content: "";
	position: absolute;
	right: -90px;
	bottom: -100px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 140, 66, 0.13), transparent 68%);
	pointer-events: none;
}

.portfolio-highlight-grid .portfolio-item:hover {
	border-color: rgba(255, 140, 66, 0.28);
	background-color: rgba(255, 255, 255, 0.075);
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
	transform: translateY(-7px);
}

.portfolio-highlight-grid .portfolio-image {
	display: none;
}

.portfolio-highlight-grid .portfolio-content {
	position: static;
	padding: 0 28px 28px;
}

.portfolio-highlight-grid .project-title {
	max-width: 95%;
	margin-bottom: 13px;
	font-size: clamp(1.22rem, 2vw, 1.58rem);
	line-height: 1.25;
}

.portfolio-highlight-grid .project-category {
	position: absolute;
	top: 31px;
	right: 28px;
	max-width: 48%;
	margin: 0;
	color: rgba(255, 255, 255, 0.43);
	font-size: 0.67rem;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.1em;
	text-align: right;
}

.portfolio-highlight-grid .project-description {
	color: rgba(255, 255, 255, 0.57);
	font-size: 0.92rem;
	line-height: 1.68;
}

.portfolio-highlight-action {
	margin-top: 38px;
	text-align: center;
}

.features-page-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 28px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	box-shadow: 0 12px 32px rgba(255, 71, 87, 0.24);
	color: #fff;
	font-size: 0.93rem;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
}

.features-page-button::after {
	content: "\2192";
	margin-left: 10px;
	font-size: 1.15rem;
	transition: transform 0.28s ease;
}

.features-page-button:hover,
.features-page-button:focus-visible {
	outline: none;
	filter: brightness(1.06);
	box-shadow: 0 17px 38px rgba(255, 71, 87, 0.3);
	transform: translateY(-3px);
}

.features-page-button:hover::after,
.features-page-button:focus-visible::after {
	transform: translateX(4px);
}

@media (max-width: 980px) {
	.portfolio-grid.portfolio-highlight-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.portfolio-section.portfolio-highlight-section {
		padding: 68px 15px 76px;
	}

	.portfolio-highlight-heading {
		margin-bottom: 32px;
	}

	.portfolio-grid.portfolio-highlight-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-highlight-grid .portfolio-item:nth-child(n) {
		min-height: 290px;
	}

	.features-page-button {
		width: min(100%, 330px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.portfolio-highlight-grid .portfolio-item:hover,
	.features-page-button:hover,
	.features-page-button:focus-visible {
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Portfolio masonry grid */
.portfolio-section {
	position: relative;
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 42px 20px 86px;
	background: #160b2e;
	scroll-margin-top: 110px;
}

.section-title {
	text-align: center;
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	margin-bottom: 50px;
	background: linear-gradient(135deg, #fff, #ff8c42);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	animation: fadeInUp 1s ease-out 1.5s forwards;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 15px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

.portfolio-item {
	position: relative;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 35px;
	overflow: hidden;
	cursor: default;
	transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation: fadeIn 1s ease-out forwards;
}

/* Different sizes for masonry effect */
.portfolio-item:nth-child(1) {
	animation: slideInLeft 1s ease-out 1.8s both;
}

.portfolio-item:nth-child(2) {
	animation: slideInRight 1s ease-out 2s both;
}

.portfolio-item:nth-child(3) {
	animation: slideInBottom 1s ease-out 2.2s both;
}

.portfolio-item:nth-child(4) {
	animation: slideInLeft 1s ease-out 2.4s both;
}

.portfolio-item:nth-child(5) {
	animation: slideInTop 1s ease-out 2.6s both;
}

.portfolio-item:nth-child(6) {
	animation: none;
}

.portfolio-item:nth-child(n+7) {
	animation: fadeIn 0.8s ease-out forwards;
	opacity: 0;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-100px) rotate(-10deg);
	}
	to {
		opacity: 1;
		transform: translateX(0) rotate(0deg);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(100px) rotate(10deg);
	}
	to {
		opacity: 1;
		transform: translateX(0) rotate(0deg);
	}
}

@keyframes slideInTop {
	from {
		opacity: 0;
		transform: translateY(-100px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes slideInBottom {
	from {
		opacity: 0;
		transform: translateY(100px) scale(0.8);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Hide cards 6-41 initially */
.portfolio-item:nth-child(n+6) {
	display: none;
}

.portfolio-grid.show-all .portfolio-item {
	display: block;
}

.show-all-btn {
	margin-top: 40px;
	padding: 14px 40px;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0;
	border: 0;
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	color: #ffffff;
	border-radius: 25px;
	box-shadow: 0 10px 30px rgba(255, 71, 87, 0.24);
	cursor: pointer;
	transition: all 0.4s ease;
}

.show-all-btn:hover {
	background: linear-gradient(135deg, #ff5c6a, #ff9a5c);
	transform: translateY(-2px);
}

.show-all-btn:active {
	transform: translateY(0);
}

.portfolio-item:hover {
	transform: translateY(-15px) scale(1.03);
	box-shadow: 0 25px 50px rgba(255, 71, 87, 0.2);
}

.portfolio-image {
	display: none;
}

.portfolio-item:nth-child(odd) .portfolio-image {
	height: 180px;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 71, 87, 0.8),
		rgba(255, 140, 66, 0.8)
	);
	opacity: 0;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.view-project {
	color: white;
	font-size: 1.2rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	background: rgba(0, 0, 0, 0.3);
	padding: 12px 25px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.portfolio-content {
	padding: 25px;
}

.project-title {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: #fff;
}

.project-category {
	color: #ff8c42;
	font-size: 0.9rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
}

.project-description {
	color: #aaa;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Project background images */
.project-1 {
	background: linear-gradient(135deg, #667eea, #764ba2);
}
.project-2 {
	background: linear-gradient(135deg, #f093fb, #f5576c);
}
.project-3 {
	background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.project-4 {
	background: linear-gradient(135deg, #43e97b, #38f9d7);
}
.project-5 {
	background: linear-gradient(135deg, #fa709a, #fee140);
}
.project-6 {
	background: linear-gradient(135deg, #a8edea, #fed6e3);
}

/* Stats section */
.stats-section {
	margin-top: 100px;
	padding: 60px 20px;
	text-align: center;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	opacity: 0;
	animation: fadeInUp 1s ease-out 3.5s forwards;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.stat-item {
	text-align: center;
}

.stat-number {
	font-size: 3rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ff4757, #ff8c42);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: block;
	transition: all 0.3s ease;
}

.stat-number.counting {
	transform: scale(1.1);
}

.stat-label {
	color: #aaa;
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 5px;
}

/* Mobile optimizations */
@media (max-width: 768px) {
	.hero-container {
		padding: 15px;
		padding-bottom: max(24px, env(safe-area-inset-bottom));
	}

	.portfolio-section {
		width: calc(100% + 30px);
		margin-inline: -15px;
		padding: 38px 15px 72px;
	}

	.header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		gap: 8px;
		text-align: left;
		top: 10px;
		width: 100%;
		margin-bottom: 36px;
		padding: 8px 10px 8px 12px;
		border-radius: 16px;
	}

	.logo {
		display: block;
		justify-content: flex-start;
		top: 6px;
		min-width: 0;
		align-self: center;
		padding: 8px 2px;
		overflow: hidden;
		font-size: clamp(0.66rem, 3.1vw, 0.8rem);
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.nav-toggle {
		display: inline-flex;
		align-self: center;
		justify-self: end;
		width: 40px;
		height: 40px;
	}

	.nav {
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		right: 0;
		display: grid;
		grid-template-columns: 1fr;
		width: auto;
		max-height: 0;
		gap: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		padding: 0 8px;
		border: 1px solid transparent;
		border-radius: 16px;
		background: rgba(13, 13, 13, 0.92);
		box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
		backdrop-filter: blur(18px);
		-webkit-backdrop-filter: blur(18px);
		transform: translateY(-6px);
		transition: max-height 0.32s ease, opacity 0.22s ease, visibility 0.22s ease, padding 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
	}

	.nav-main-links,
	.nav-actions {
		display: grid;
		grid-template-columns: 1fr;
		grid-column: auto;
		justify-self: stretch;
		width: 100%;
		gap: 6px;
	}

	.header.nav-open .nav {
		max-height: 560px;
		max-height: min(560px, calc(100dvh - 96px));
		gap: 6px;
		padding: 8px;
		overflow-y: auto;
		overscroll-behavior: contain;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		border-color: rgba(255, 255, 255, 0.12);
		transform: translateY(0);
	}

	.header.nav-open .nav::-webkit-scrollbar {
		width: 4px;
	}

	.header.nav-open .nav::-webkit-scrollbar-thumb {
		border-radius: 999px;
		background: rgba(255, 255, 255, 0.24);
	}

	.nav a {
		width: 100%;
		min-height: 42px;
		justify-content: flex-start;
		padding: 10px 13px;
		font-size: 0.9rem;
		background: rgba(255, 255, 255, 0.05);
	}

	.nav .nav-cta {
		justify-content: center;
	}

	.language-switch {
		width: 100%;
		justify-content: center;
		margin-top: 2px;
		min-height: 44px;
		flex-shrink: 0;
	}

	.language-switch button {
		flex: 1 1 0;
		min-height: 34px;
	}

	.story-entry-section {
		width: calc(100% + 30px);
		min-height: auto;
		margin: 64px -15px 0;
	}

	.story-entry-link {
		min-height: auto;
		padding: 58px 15px 44px;
	}

	.story-entry-inner {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 26px;
		min-height: auto;
	}

	.story-entry-kicker {
		margin-bottom: 18px;
	}

	.story-entry-title {
		line-height: 1.12;
	}

	.story-entry-soft {
		font-size: 3.25rem;
		line-height: 0.98;
	}

	.story-entry-brand {
		margin-top: 12px;
		font-size: 1.32rem;
		line-height: 1.28;
	}

	.story-entry-parallax {
		display: none;
	}

	.story-entry-copy p {
		font-size: 0.92rem;
	}

	.story-entry-copy strong {
		margin-top: 22px;
		font-size: 1.05rem;
	}

	.story-entry-action {
		margin-top: 24px;
	}

	.story-entry-rail {
		display: none;
	}

	.story-entry-bg-word {
		top: 16px;
		left: -12px;
		font-size: 5.4rem;
	}

	.hero-content {
		margin-bottom: 150px;
	}

	.live-chat-cloud {
		display: none;
	}

	.mobile-chat-stack {
		display: block;
		position: relative;
		z-index: 3;
		width: min(320px, 100%);
		margin-inline: auto;
		pointer-events: none;
	}

	.mobile-chat-stack--top {
		margin-bottom: 8px;
	}

	.mobile-chat-stack--bottom {
		margin: 8px auto 10px;
	}

	.mobile-chat-stack--top .mobile-chat-row:nth-child(2),
	.mobile-chat-stack--bottom .mobile-chat-row--single {
		display: none;
	}

	.mobile-chat-row {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		gap: 10px;
		min-height: auto;
	}

	.mobile-chat-stack--bottom .mobile-chat-row {
		min-height: auto;
	}

	.mobile-chat-row + .mobile-chat-row {
		margin-top: 0;
	}

	.mobile-chat-row--single {
		justify-content: center;
	}

	.mobile-chat-bubble {
		--mobile-bubble-opacity: 0.88;
		display: flex;
		align-items: center;
		gap: 7px;
		flex: 0 1 min(44vw, 146px);
		max-width: 146px;
		min-height: 40px;
		padding: 6px 8px 6px 6px;
		border: 1px solid rgba(255, 255, 255, .16);
		border-radius: 13px 13px 13px 4px;
		background: linear-gradient(135deg, rgba(34, 22, 48, .78), rgba(20, 15, 31, .58));
		box-shadow: 0 10px 24px rgba(0, 0, 0, .24), 0 0 16px rgba(191, 55, 255, .1);
		backdrop-filter: blur(12px);
		-webkit-backdrop-filter: blur(12px);
		text-align: left;
		opacity: 0;
		animation: mobileChatPop 7.2s cubic-bezier(.2,.8,.2,1) infinite;
	}

	.mobile-chat-bubble:nth-child(2) {
		margin-top: 10px;
		border-radius: 13px 13px 4px 13px;
		--mobile-bubble-opacity: 0.76;
		animation-delay: 1.15s;
	}

	.mobile-chat-stack--bottom .mobile-chat-bubble:nth-child(1) {
		margin-top: 0;
		--mobile-bubble-opacity: 0.78;
		animation-delay: 2.15s;
	}

	.mobile-chat-stack--bottom .mobile-chat-bubble:nth-child(2) {
		margin-top: 10px;
		--mobile-bubble-opacity: 0.86;
		animation-delay: 3.05s;
	}

	.mobile-chat-bubble .chat-avatar {
		flex: 0 0 26px;
		width: 26px;
		height: 26px;
		font-size: .52rem;
	}

	.mobile-chat-bubble .chat-avatar--icon {
		font-size: .8rem;
	}

	.mobile-chat-bubble .chat-user {
		margin-bottom: 2px;
		font-size: .58rem;
		letter-spacing: 0;
	}

	.mobile-chat-bubble .chat-message {
		font-size: .62rem;
		line-height: 1.2;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.hero-content > :not(.live-chat-cloud) {
		z-index: 4;
	}

	.hero-title {
		font-size: clamp(3.8rem, 15vw, 6.2rem);
	}

	.hero-title-line:first-child {
		margin-top: 4px;
	}

	.hero-tagline {
		margin-top: 12px;
		margin-bottom: 16px;
		font-size: clamp(1.05rem, 4.5vw, 1.28rem);
	}

	.hero-description {
		margin-bottom: 28px;
		font-size: clamp(calc(0.92rem - 3px), calc(3.7vw - 3px), calc(1.06rem - 3px));
	}

	.chat-avatar { flex-basis: 31px; width: 31px; height: 31px; font-size: .58rem; }
	.chat-message {
		font-size: .67rem;
		overflow-wrap: anywhere;
		white-space: normal;
	}

	.cta-buttons {
		flex-direction: column;
		align-items: center;
		gap: 11px;
		margin-top: 38px;
	}

	.cta-buttons .btn {
		width: 100%;
		max-width: 244px;
		padding: 12px 20px;
		border-radius: 22px;
		font-size: 0.96rem;
		line-height: 1.2;
	}

	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 10px;
	}

	.section-title {
		font-size: clamp(1.35rem, 7vw, 2rem);
		line-height: 1.12;
		margin-bottom: 34px;
	}

	.portfolio-item:nth-child(odd) .portfolio-image {
		height: 180px;
	}

	.portfolio-content {
		padding: 20px;
	}

	.project-title {
		font-size: 1.08rem;
		line-height: 1.24;
		margin-bottom: 6px;
	}

	.project-category {
		font-size: 0.76rem;
		margin-bottom: 10px;
	}

	.project-description {
		font-size: 0.88rem;
		line-height: 1.48;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.floating-elements {
		display: none;
	}
}

@media (max-width: 480px) {
	html {
		scroll-padding-top: 100px;
	}

	.portfolio-section {
		padding: 34px 15px 62px;
	}

	.story-entry-link {
		padding-top: 52px;
	}

	.story-entry-soft {
		font-size: 2.7rem;
	}

	.story-entry-brand {
		font-size: 1.02rem;
	}

	.story-entry-bg-word {
		font-size: 4.35rem;
	}

	.portfolio-section,
	.carousel-section,
	.free-download-section,
	.tiktok-showcase-section,
	.trial-connection-section,
	.pricing-section {
		scroll-margin-top: 100px;
	}

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

	.portfolio-grid {
		padding: 0 5px;
	}

	.section-title {
		font-size: clamp(1.18rem, 8vw, 1.58rem);
		line-height: 1.16;
		margin-bottom: 28px;
	}

	.project-title {
		font-size: 0.98rem;
		line-height: 1.26;
	}

	.project-category {
		font-size: 0.7rem;
		letter-spacing: 0.08em;
	}

	.project-description {
		font-size: 0.82rem;
	}

	.popular-tag {
		top: 10px;
		right: 10px;
		padding: 3px 9px;
		border-radius: 11px;
		font-size: 0.62rem;
	}

	.currency {
		font-size: 1.02rem;
	}

	.amount {
		font-size: 2.72rem;
	}

	.period {
		font-size: 0.72rem;
		margin-left: 4px;
	}

	.dock-showcase-copy h2 {
		font-size: clamp(1.12rem, 7vw, 1.52rem);
		line-height: 1.2;
	}

	.stats-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.mobile-chat-stack {
		width: min(296px, 100%);
	}

	.mobile-chat-row {
		gap: 8px;
		min-height: auto;
	}

	.mobile-chat-stack--bottom .mobile-chat-row {
		min-height: auto;
	}

	.mobile-chat-bubble {
		flex-basis: min(42vw, 132px);
		max-width: 132px;
		min-height: 38px;
		padding: 5px 7px 5px 5px;
	}

	.mobile-chat-bubble:nth-child(2) {
		margin-top: 8px;
	}

	.mobile-chat-stack--bottom .mobile-chat-bubble:nth-child(1) {
		margin-top: 0;
	}

	.mobile-chat-stack--bottom {
		margin-bottom: 6px;
	}

	.hero-tagline {
		margin-top: 10px;
		margin-bottom: 20px;
		font-size: 1rem;
	}

	.hero-description {
		margin-bottom: 10px;
		font-size: calc(0.92rem - 3px);
		line-height: 1.55;
	}

	.hero-content {
		margin-bottom: 10px;
	}

	.cta-buttons {
		gap: 10px;
		margin-top: 32px;
	}

	.cta-buttons .btn {
		max-width: 228px;
		padding: 11px 18px;
		font-size: 0.9rem;
	}

	.mobile-chat-bubble .chat-avatar {
		flex-basis: 23px;
		width: 23px;
		height: 23px;
		font-size: .48rem;
	}

	.mobile-chat-bubble .chat-avatar--icon {
		font-size: .72rem;
	}

	.mobile-chat-bubble .chat-user {
		font-size: .52rem;
	}

	.mobile-chat-bubble .chat-message {
		font-size: .56rem;
	}
}

/* Touch-friendly interactions */
@media (hover: none) and (pointer: coarse) {
	.portfolio-item:hover {
		transform: none;
	}

	.portfolio-item:active {
		transform: scale(0.98);
	}

	.portfolio-overlay {
		opacity: 0.7;
	}
}

@media (max-width: 900px), (hover: none) and (pointer: coarse) {
	.floating-shape {
		animation: none;
		transform: none !important;
	}
}

/* Loading animation */
:root {
	--splash-background: transparent;
	--splash-primary: #000000;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	height: 100svh;
	width: 100vw;
	overflow: hidden;
	background: var(--splash-background);
	z-index: 3000;
	pointer-events: none;
	visibility: visible;
}

.loader.is-hiding {
	animation: loaderDeactivate 0.01s linear 0.48s forwards;
}

.loader .splash-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	background: var(--splash-primary);
	height: 100vh;
	height: 100svh;
	width: 100vw;
	padding: 0 18px;
	backface-visibility: hidden;
	contain: layout paint;
	will-change: transform, opacity;
}

.loader.is-hiding .splash-container {
	animation: lift 0.48s cubic-bezier(.22, .8, .2, 1) forwards;
}

.loader .splash-live-elements {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.loader .splash-bubble,
.loader .splash-reaction {
	position: absolute;
	z-index: 1;
	opacity: 0;
	font-family: "Poppins", sans-serif;
	color: rgba(255, 255, 255, 0.92);
	backface-visibility: hidden;
}

.loader .splash-bubble {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: min(260px, 74vw);
	padding: 10px 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 18px 18px 18px 6px;
	background: rgba(18, 14, 28, 0.78);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
	font-size: clamp(0.72rem, 1.6vw, 0.95rem);
	line-height: 1.25;
	animation: splashBubbleIn 0.92s ease-in-out forwards;
	animation-delay: var(--bubble-delay, 0.08s);
}

.loader .splash-bubble::before {
	content: "";
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: linear-gradient(135deg, #a81af9, #fd75ff);
	box-shadow: 0 0 22px rgba(253, 117, 255, 0.28);
}

.loader .splash-bubble strong {
	display: block;
	margin-bottom: 2px;
	color: #ffffff;
	font-size: 0.72em;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.loader .splash-bubble span {
	display: block;
	color: rgba(255, 255, 255, 0.76);
	font-weight: 500;
}

.loader .splash-bubble--left {
	top: 24%;
	left: clamp(16px, 8vw, 120px);
}

.loader .splash-bubble--right {
	right: clamp(16px, 9vw, 130px);
	bottom: 24%;
	border-radius: 18px 18px 6px 18px;
	--bubble-delay: 0.2s;
}

.loader .splash-reaction {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 46px;
	min-height: 46px;
	padding: 9px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.13);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
	font-size: clamp(0.72rem, 1.5vw, 0.94rem);
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	animation: splashFloatUp 1s ease-in-out forwards;
	animation-delay: var(--reaction-delay, 0.12s);
}

.loader .splash-reaction--like {
	top: 17%;
	right: clamp(24px, 18vw, 250px);
	color: #fd75ff;
	--reaction-delay: 0.12s;
}

.loader .splash-reaction--follow {
	left: clamp(22px, 16vw, 220px);
	bottom: 18%;
	color: #ffffff;
	background: linear-gradient(135deg, rgba(168, 26, 249, 0.38), rgba(253, 117, 255, 0.2));
	--reaction-delay: 0.22s;
}

.loader .splash-reaction--share {
	right: clamp(26px, 24vw, 330px);
	top: 62%;
	color: #dfdaff;
	--reaction-delay: 0.32s;
}

.loader .splash-reaction--gift {
	left: clamp(24px, 28vw, 390px);
	top: 34%;
	color: #ff8c42;
	--reaction-delay: 0.42s;
}

.loader .logo-line {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 3;
}

.loader .logo-line + .logo-line {
	margin-top: clamp(-0.85rem, -0.9vw, -0.18rem);
}

.loader .title {
	position: relative;
	top: 0;
	z-index: 3;
	padding: 4px;
	font-family: "Press Start 2P", monospace;
	font-size: clamp(1.05rem, 4.8vw, 5.0625rem);
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: -0.5px;
	text-align: center;
	background: linear-gradient(135deg, #a81af9, #fd75ff, #6911c1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	opacity: 0;
	transform: translate3d(0, 38%, 0);
	animation: letterJump 0.78s ease-in-out;
	animation-delay: var(--letter-delay, 0s);
	animation-fill-mode: forwards;
	backface-visibility: hidden;
}

.loader .splash-tagline {
	position: relative;
	z-index: 3;
	margin: clamp(14px, 2.5vw, 24px) 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-family: "Poppins", sans-serif;
	font-size: clamp(0.85rem, 1.8vw, 1.2rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 2px;
	text-align: center;
	opacity: 0;
	transform: translate3d(0, 12px, 0);
	animation: splashTaglineReveal 0.42s ease 0.62s forwards;
}

.loader .splash-loading {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 18px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.58);
	font-family: "Poppins", sans-serif;
	font-size: clamp(0.72rem, 1.4vw, 0.94rem);
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
	opacity: 0;
	transform: translate3d(0, 8px, 0);
	animation: splashTaglineReveal 0.34s ease 0.78s forwards;
}

.loader .splash-loading::after {
	content: "";
	display: inline-block;
	width: 1.6em;
	margin-left: 0.22em;
	text-align: left;
	animation: splashLoadingDots 0.9s steps(4, end) infinite;
}

@keyframes letterJump {
	0% {
		transform: translate3d(0, 38%, 0);
		opacity: 0;
	}
	72% {
		transform: translate3d(0, -12%, 0);
		opacity: 1;
	}
	100% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

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

@keyframes splashLoadingDots {
	0% {
		content: "";
	}
	25% {
		content: ".";
	}
	50% {
		content: "..";
	}
	75%,
	100% {
		content: "...";
	}
}

@keyframes lift {
	0% {
		transform: translate3d(0, 0, 0);
		opacity: 1;
		visibility: visible;
	}
	100% {
		transform: translate3d(0, -100%, 0);
		opacity: 0;
		visibility: hidden;
	}
}

@keyframes splashBubbleIn {
	0% {
		transform: translate3d(0, 18px, 0) scale(0.92);
		opacity: 0;
	}
	22%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 1;
	}
}

@keyframes splashFloatUp {
	0% {
		transform: translate3d(0, 18px, 0) scale(0.84);
		opacity: 0;
	}
	24% {
		transform: translate3d(0, 0, 0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translate3d(0, -10px, 0) scale(1);
		opacity: 1;
	}
}

@keyframes loaderDeactivate {
	to {
		visibility: hidden;
	}
}

@media (prefers-reduced-motion: reduce) {
	.loader.is-hiding,
	.loader.is-hiding .splash-container,
	.loader .splash-bubble,
	.loader .splash-reaction,
	.loader .title,
	.loader .splash-tagline,
	.loader .splash-loading,
	.loader .splash-loading::after {
		animation-delay: 0s;
		animation-duration: 0.01s;
	}
}

@media (max-width: 768px) {
	.loader .splash-container {
		padding: 0 10px;
	}

	.loader .title {
		font-size: clamp(1.05rem, 8.2vw, 2rem);
		padding: 2px;
	}

	.loader .splash-tagline {
		max-width: 90vw;
		font-size: 0.82rem;
	}

	.loader .splash-bubble {
		max-width: min(210px, 58vw);
		padding: 8px 10px;
		gap: 7px;
		font-size: 0.68rem;
	}

	.loader .splash-bubble::before {
		width: 20px;
		height: 20px;
	}

	.loader .splash-bubble--left {
		top: 19%;
		left: 12px;
	}

	.loader .splash-bubble--right {
		right: 12px;
		bottom: 18%;
	}

	.loader .splash-reaction {
		min-width: 38px;
		min-height: 38px;
		padding: 7px 9px;
		font-size: 0.62rem;
	}

	.loader .splash-reaction--like {
		top: 13%;
		right: 18px;
	}

	.loader .splash-reaction--follow {
		left: 16px;
		bottom: 10%;
	}

	.loader .splash-reaction--share {
		right: 20px;
		top: 70%;
	}

	.loader .splash-reaction--gift {
		left: 18px;
		top: 36%;
	}
}
/* Tilted carousel */
.carousel-section {
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 110px 20px 40px;
	background: #ececec;
	color: #262626;
	overflow: hidden;
	scroll-margin-top: 110px;
}

.carousel-heading {
	text-align: center;
	margin-bottom: 56px;
	font-size: 1.0rem;
}

.carousel-heading h2 {
	font-size: clamp(1.2rem, 4vw, 4rem);
	line-height: 1;
	letter-spacing: -0.05em;
}

.carousel-heading p {
	margin-top: 12px;
	color: #737373;
}

.tilted-carousel {
	--card-width: clamp(260px, 42vw, 560px);
	--story-aspect-ratio: 2666 / 1434;
	position: relative;
	max-width: 1180px;
	min-height: 420px;
	margin: 0 auto;
	font-family: "Poppins", sans-serif;
	user-select: none;
}

.carousel-viewport {
	width: 100%;
	overflow: hidden;
	padding: 20px 0 55px;
}

.carousel-track {
	display: flex;
	width: max-content;
	will-change: transform;
	transition: transform 800ms cubic-bezier(.2,.8,.2,1);
}

.carousel-slide {
	width: var(--card-width);
	perspective: 900px;
}

.carousel-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	transform-origin: center;
	transition: transform 850ms cubic-bezier(.2,.8,.2,1), opacity 500ms ease;
}

.carousel-card img {
	width: 100%;
	aspect-ratio: var(--story-aspect-ratio);
	object-fit: cover;
	border-radius: 14px;
	cursor: pointer;
	box-shadow: 0 18px 35px rgba(0, 0, 0, .16);
}

.carousel-caption {
	font-size: .9rem;
	white-space: nowrap;
	transition: opacity 350ms ease, filter 350ms ease;
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	width: fit-content;
	max-width: 100%;
	margin: 10px auto 0;
	padding: 4px 8px;
	border: 1px solid rgba(212, 212, 212, .9);
	border-radius: 999px;
	background: rgba(229, 229, 229, .7);
	box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
	backdrop-filter: blur(8px);
}

.carousel-arrow {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: #404040;
	font-size: 1.55rem;
	cursor: pointer;
}

.carousel-arrow:hover:not(:disabled) { background: rgba(255, 255, 255, .8); }
.carousel-arrow:disabled { opacity: .28; cursor: default; }

.carousel-dots {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	width: 180px;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(64, 64, 64, .28);
	cursor: pointer;
	transition: width 300ms ease, background-color 300ms ease;
}

.carousel-dot.active { width: 28px; background: #404040; }

.tiktok-showcase-section {
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 72px 20px 62px;
	background: #fff;
	color: #171717;
	overflow: hidden;
	scroll-margin-top: 110px;
}

.tiktok-showcase-heading {
	max-width: 820px;
	margin: 0 auto 34px;
	text-align: center;
}

.tiktok-showcase-heading h2 {
	font-size: clamp(2rem, 4.2vw, 3.7rem);
	line-height: 1.02;
	font-weight: 800;
}

.tiktok-showcase-heading p {
	max-width: 640px;
	margin: 14px auto 0;
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.7;
}

.tiktok-carousel {
	--tiktok-card-width: clamp(260px, 27vw, 340px);
	position: relative;
	max-width: 1180px;
	min-height: 660px;
	margin: 0 auto;
	font-family: "Poppins", sans-serif;
	user-select: none;
}

.tiktok-carousel-viewport {
	width: 100%;
	overflow: hidden;
	padding: 16px 0 44px;
}

.tiktok-carousel-track {
	display: flex;
	width: max-content;
	will-change: transform;
	transition: transform 800ms cubic-bezier(.2,.8,.2,1);
}

.tiktok-carousel-slide {
	width: var(--tiktok-card-width);
	perspective: 900px;
}

.tiktok-showcase-card {
	width: min(100%, 340px);
	margin: 0 auto;
	padding: 8px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.13);
	transform-origin: center;
	pointer-events: none;
	transition: transform 850ms cubic-bezier(.2,.8,.2,1), opacity 500ms ease, filter 500ms ease;
}

.tiktok-showcase-card.is-active {
	pointer-events: auto;
}

.tiktok-showcase-card .tiktok-embed {
	width: 100% !important;
	min-width: 0 !important;
	max-width: 100% !important;
	margin: 0 !important;
	border-radius: 16px;
	overflow: hidden;
}

.tiktok-showcase-card iframe {
	width: 100% !important;
	max-width: 100% !important;
	border-radius: 16px;
}

.tiktok-fallback {
	min-height: 500px;
	display: grid;
	place-items: center;
	padding: 24px;
	border-radius: 16px;
	background: #f4f4f5;
	text-align: center;
	color: #334155;
}

.tiktok-fallback a {
	color: #0f766e;
	font-weight: 800;
	text-decoration: none;
}

.tiktok-caption {
	margin-top: 12px;
	color: #475569;
	font-size: 0.92rem;
	line-height: 1.4;
	text-align: center;
	transition: opacity 350ms ease, filter 350ms ease;
}

.tiktok-carousel .carousel-controls {
	border-color: rgba(15, 23, 42, 0.1);
	background: rgba(248, 250, 252, 0.9);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.tiktok-carousel .carousel-arrow {
	color: #171717;
}

.tiktok-carousel .carousel-arrow:hover:not(:disabled) {
	background: rgba(15, 23, 42, 0.07);
}

.tiktok-carousel .carousel-dot {
	background: rgba(15, 23, 42, 0.24);
}

.tiktok-carousel .carousel-dot.active {
	background: #171717;
}

.tiktok-showcase-section + .faq-section {
	margin-top: 0;
}

.dock-showcase-section {
	width: calc(100% + 40px);
	margin: 0 -20px;
	padding: 96px 20px 72px;
	background: linear-gradient(135deg, #101014 0%, #17171f 48%, #221427 100%);
	color: #fff;
	scroll-margin-top: 110px;
}

.dock-showcase-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
	align-items: center;
	gap: clamp(28px, 5vw, 70px);
	width: min(1180px, 100%);
	margin: 0 auto;
}

.dock-preview-frame {
	position: relative;
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.06);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
	overflow: hidden;
}

.dock-preview-frame::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(255, 71, 87, 0.28), rgba(255, 140, 66, 0.1), rgba(106, 90, 255, 0.2));
	opacity: 0.7;
	pointer-events: none;
}

.dock-preview-frame iframe {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	min-height: 750px;
	border: 0;
	border-radius: 14px;
	background: #1e1e22;
}

.dock-showcase-copy {
	max-width: 520px;
}

.dock-showcase-label {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	margin-bottom: 18px;
	padding: 7px 13px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	color: #ffb86b;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.dock-showcase-copy h2 {
	font-size: clamp(2rem, 4.6vw, 4.1rem);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: 0.01em;
}

@media (max-width: 768px), (hover: none) and (pointer: coarse) {
	.hero-bg {
		position: absolute;
		height: 100%;
		min-height: 100svh;
		min-height: 100dvh;
		animation: none;
		transform: none;
	}

	.floating-elements,
	.floating-shape {
		display: none;
		animation: none;
	}

	.header {
		border-color: rgba(255, 255, 255, 0.08);
		background: rgba(10, 12, 18, 0.94);
		box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.nav {
		background: rgba(10, 12, 18, 0.98);
		box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.mobile-chat-bubble {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.dock-preview-frame {
		box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
	}
}

@media (max-width: 768px) {
	.carousel-section {
		width: calc(100% + 30px);
		margin: 0 -15px;
		padding: 60px 15px 35px;
	}

	.tilted-carousel { --card-width: min(82vw, 340px); min-height: 300px; }
	.carousel-dots { width: 145px; gap: 5px; }

	.tiktok-showcase-section {
		width: calc(100% + 30px);
		margin-inline: -15px;
		padding: 56px 15px 48px;
	}

	.tiktok-showcase-heading {
		margin-bottom: 24px;
	}

	.tiktok-carousel {
		--tiktok-card-width: min(74vw, 260px);
		min-height: 540px;
	}

	.tiktok-showcase-card {
		width: min(100%, 260px);
		padding: 5px;
		border-radius: 14px;
	}

	.tiktok-fallback {
		min-height: 400px;
	}

	.dock-showcase-section {
		width: calc(100% + 30px);
		margin-inline: -15px;
		padding: 72px 15px 58px;
	}

	.free-download-section {
		width: calc(100% + 30px);
		margin-inline: -15px;
		padding: 60px 15px;
	}

	.free-download-inner {
		grid-template-columns: 1fr;
	}

	.free-download-copy,
	.free-download-panel {
		text-align: left;
	}

	.free-download-points {
		grid-template-columns: 1fr;
	}

	.free-download-section .btn {
		max-width: none;
	}

	.dock-showcase-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.dock-preview-frame {
		padding: 8px;
		border-radius: 18px;
	}

	.dock-preview-frame iframe {
		aspect-ratio: 9 / 13;
		min-height: 680px;
		border-radius: 12px;
	}

	.dock-showcase-copy {
		max-width: none;
	}

	.dock-showcase-copy h2 {
		font-size: clamp(1.35rem, 6.4vw, 2.05rem);
		line-height: 1.18;
	}
}

  
