/* Font loaded via HTML preload + link for non-blocking render */
:root {
	/* Typography */
	--font-sans: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji', sans-serif;

	/* Dark (default) theme – red & black */
	--bg: #050509;
	/* near-black */
	--panel: #141118;
	/* dark panel */
	--muted: #b0b3c6;
	/* muted light */
	--accent: #ef4444;
	/* red */
	--accent-2: #b91c1c;
	/* deep red */
	--glass: rgba(255, 255, 255, 0.03);
	--text: #f9fafb;
	--header-height: 72px;

	/* ─── Motion system tokens ─── */
	--motion-fast: 0.15s;
	--motion-base: 0.35s;
	--motion-slow: 0.6s;
	--motion-xslow: 0.8s;
	--ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
	--ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
	--ease-spring: cubic-bezier(0.2, 0.9, 0.3, 1);
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light theme overrides using CSS variables */
body.theme-light {
	--bg: #f9fafb;
	--panel: #ffffff;
	--muted: #6b7280;
	--accent: #b91c1c;
	--accent-2: #dc2626;
	--glass: rgba(15, 23, 42, 0.04);
	--text: #111827;
}

body.theme-light .card {
	background: linear-gradient(180deg, #ffffff, #f3f4f6);
	border: 1px solid rgba(185, 28, 28, 0.15);
	box-shadow: 0 12px 38px rgba(15, 23, 42, 0.12);
}

body.theme-light .site-cart {
	background: linear-gradient(180deg, #ffffff, #f9fafb);
	border-left: 1px solid rgba(185, 28, 28, 0.2);
}

body.theme-light .site-cart-items li {
	background: linear-gradient(180deg, #ffffff, #f3f4f6);
	border: 1px solid rgba(185, 28, 28, 0.15);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

body.theme-light .site-cart-items li:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
}

body.theme-light .how-step,
body.theme-light .how-intro,
body.theme-light .faq details,
body.theme-light .contact-info,
body.theme-light #contact-form {
	background: linear-gradient(180deg, #ffffff, #f8f9fa);
	border: 1px solid rgba(185, 28, 28, 0.12);
	box-shadow: 0 8px 20px rgba(248, 113, 113, 0.08);
}

body.theme-light .site-cart-backdrop {
	background: rgba(15, 23, 42, 0.4);
}

body.theme-light .card::before {
	background: radial-gradient(circle, rgba(185, 28, 28, 0.15) 0%, transparent 70%);
}

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

html,
body {
	height: 100%;
	font-family: var(--font-sans);
	color: var(--text);
}

/* Ensure consistent fonts – buttons/inputs use system fonts by default */
button,
input,
select,
textarea,
.btn,
.select-btn,
nav a,
a.btn,
.header-right a,
.cart-toggle,
.theme-toggle,
.profile-trigger,
.profile-dropdown-item,
label,
.form-label {
	font-family: var(--font-sans);
}

body {
	line-height: 1.6;
	background: radial-gradient(1200px 600px at 10% 10%, rgba(248, 113, 113, 0.08), transparent 14%), radial-gradient(900px 480px at 90% 90%, rgba(185, 28, 28, 0.5), transparent 55%), linear-gradient(180deg, #020106 0%, #050509 60%);
	-webkit-font-smoothing: antialiased;
	padding-top: var(--header-height);
}

body.theme-light {
	background: radial-gradient(1200px 600px at 10% 10%, rgba(248, 113, 113, 0.12), transparent 18%), linear-gradient(180deg, #f9fafb 0%, #fee2e2 60%);
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 28px;
}

/* Header */
.site-header {
	background: transparent;
	color: var(--text);
	box-shadow: none;
	border-bottom: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 120;
	transform: translateY(0);
	transition: transform .32s ease, box-shadow .32s ease;
	will-change: transform;
}

body.theme-light .site-header {
	background: transparent;
	box-shadow: none;
	border-bottom: none;
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 28px;
	min-height: 72px;
	max-width: 100%;
	margin: 0;
}

.logo-link {
	position: relative;
	display: block;
	width: 148px;
	height: 46px;
	flex-shrink: 0;
}

.logo-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

/* Show dark logo in dark mode, hide in light mode */
.logo-dark {
	display: block;
}

html.theme-light .logo-dark,
body.theme-light .logo-dark {
	display: none;
}

/* Show light logo in light mode, hide in dark mode */
.logo-light {
	display: none;
}

html.theme-light .logo-light,
body.theme-light .logo-light {
	display: block;
}

.logo {
	display: none;
}

/* Mobile cart – visible only on small screens, hidden on desktop */
.cart-toggle.cart-toggle-mobile {
	display: none !important;
}

/* Mobile hamburger toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 8px;
	cursor: pointer;
	margin-left: auto;
	flex-shrink: 0;
	transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
	background: var(--glass);
}

.hamburger-line {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.theme-light .mobile-menu-toggle {
	border-color: rgba(0, 0, 0, 0.1);
}

.header-right {
	display: flex;
	align-items: center;
	gap: 16px;
	flex: 1;
	margin-left: 8px;
}

.header-right .nav-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-right .nav-center-link {
	margin-left: auto;
	margin-right: auto;
}

.header-right .header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
	flex-shrink: 0;
}

.header-actions a.btn {
	flex: 0 0 110px;
	width: 110px;
	min-width: 110px;
	max-width: 110px;
	text-align: center;
	justify-content: center;
	display: inline-flex;
	align-items: center;
	box-sizing: border-box;
	font-weight: 600;
}

.header-right nav a {
	position: relative;
	transition:
		transform var(--motion-base) var(--ease-expo),
		color var(--motion-base) var(--ease-smooth),
		opacity var(--motion-base) var(--ease-smooth);
}
.header-right nav a::after {
	content: '';
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: -4px;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	transform: scaleX(0);
	transform-origin: 0 50%;
	transition: transform var(--motion-base) var(--ease-expo);
	opacity: 0.95;
}
.header-right nav a:hover::after,
.header-right nav a.nav-active::after {
	transform: scaleX(1);
}
body:not(.nav-choreo-ready) .header-right nav a,
body:not(.nav-choreo-ready) .header-right a.nav-ultimate {
	opacity: 0;
	transform: translateY(-6px);
}
body.nav-choreo-ready .header-right nav a,
body.nav-choreo-ready .header-right a.nav-ultimate {
	opacity: 1;
	transform: translateY(0);
	transition-delay: var(--nav-delay, 0s);
}

.cart-toggle {
	min-width: 52px;
	height: 36px;
	padding: 0 12px;
	border-radius: 999px;
	border: 1px solid rgba(248, 250, 252, 0.18);
	background: rgba(15, 23, 42, 0.85);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
	transition: background .2s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease, border-color .3s ease;
	position: relative;
	overflow: hidden;
}

.cart-toggle::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.25), transparent);
	transition: left .5s ease;
}

.cart-toggle:hover::before {
	left: 100%;
}

.cart-toggle-icon {
	font-size: 0.95rem;
	position: relative;
	z-index: 1;
	transition: transform .3s ease;
}

.cart-toggle:hover .cart-toggle-icon {
	transform: rotate(-15deg) scale(1.1);
}

.cart-toggle-count {
	margin-left: 6px;
	font-size: 0.75rem;
	min-width: 1.4em;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: transform .3s ease;
}

.cart-toggle:hover .cart-toggle-count {
	transform: scale(1.15);
}

.cart-toggle:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
	border-color: rgba(239, 68, 68, 0.4);
}

.cart-toggle-pulse {
	box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
	animation: cartPulse .6s ease-out;
}

@keyframes cartPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(248, 113, 113, 0.7);
	}

	100% {
		box-shadow: 0 0 0 14px rgba(248, 113, 113, 0);
	}
}

/* Global cinematic canvas + vignette */
.site-canvas-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.site-vignette {
	position: fixed;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.32) 100%);
	pointer-events: none;
	z-index: 1;
}

body.theme-light .site-vignette {
	background: radial-gradient(ellipse at center, transparent 56%, rgba(15, 23, 42, 0.06) 100%);
}

body:not(.ultimate-page) main,
body:not(.ultimate-page) .site-footer {
	position: relative;
	z-index: 10;
}

body:not(.ultimate-page) .site-header {
	z-index: 120;
}

body:not(.ultimate-page) .site-cart-backdrop,
body:not(.ultimate-page) .site-cart {
	z-index: 110;
}

body:not(.ultimate-page) .site-cart {
	top: 0;
	padding-top: var(--header-height);
}

.cursor-halo {
	position: fixed;
	left: 0;
	top: 0;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1000;
	background: radial-gradient(circle, rgba(248, 113, 113, 0.28) 0%, rgba(239, 68, 68, 0.08) 40%, transparent 70%);
	mix-blend-mode: screen;
	opacity: 0;
	transition: opacity .22s ease, transform .12s ease;
	filter: blur(2px);
}

body.theme-light .cursor-halo {
	width: 120px;
	height: 120px;
	background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(185, 28, 28, 0.04) 40%, transparent 70%);
	mix-blend-mode: multiply;
	filter: blur(3px);
}

.cursor-halo.active {
	opacity: 1;
}

.cursor-halo.pressed {
	transform: scale(0.9);
}

.interactive-spot {
	--mx: 50%;
	--my: 50%;
}

.interactive-spot.is-hot {
	box-shadow: 0 0 32px rgba(248, 113, 113, 0.14);
}

body.theme-light .interactive-spot.is-hot {
	box-shadow: 0 0 28px rgba(185, 28, 28, 0.1);
}

.card,
.how-step,
.how-intro,
.faq details,
.contact-info {
	transform-style: preserve-3d;
}

.magnetic {
	--mag-x: 0px;
	--mag-y: 0px;
	translate: var(--mag-x) var(--mag-y);
	transition: translate .05s cubic-bezier(.2, .9, .2, 1), box-shadow .06s ease, border-color .06s ease;
}

.glow-letter {
	--g: 0;
	display: inline-block;
	vertical-align: baseline;
	opacity: calc(0.78 + (var(--g) * 0.32));
	transform: translateY(calc(var(--g) * -2.5px)) scale(calc(1 + (var(--g) * 0.05)));
	color: color-mix(in srgb, currentColor calc(80% - (var(--g) * 16%)), #f87171 calc(var(--g) * 62%));
	text-shadow:
		0 0 calc(var(--g) * 14px) rgba(248, 113, 113, calc(0.18 + (var(--g) * 0.52))),
		0 0 calc(var(--g) * 28px) rgba(239, 68, 68, calc(0.04 + (var(--g) * 0.2)));
	transition: transform .02s linear, opacity .02s linear, text-shadow .025s linear, color .025s linear;
	will-change: transform, opacity, color;
}

/* Body text: gentler transform to prevent line bleed */
.glow-word .glow-letter {
	transform: translateY(calc(var(--g) * -1px)) scale(calc(1 + (var(--g) * 0.02)));
}

.glow-letter-space {
	width: 0.25em;
	min-width: 0.15em;
	display: inline-block;
	vertical-align: baseline;
}

/* Body text: tighter word spacing */
.page-lead .glow-letter-space,
.hero p .glow-letter-space,
.hero-sequence p .glow-letter-space {
	width: 0.2em;
}


.glow-word {
	display: inline;
	white-space: nowrap;
}

/* Prevent letter overflow/bleed between lines */
[data-glow-ready="1"] {
	overflow-wrap: break-word;
	word-break: normal;
	line-height: 1.55;
}

.page-title[data-glow-ready="1"] {
	line-height: 1.45;
}

.page-lead[data-glow-ready="1"] {
	line-height: 1.7;
}

body.theme-light .glow-letter {
	color: color-mix(in srgb, currentColor calc(80% - (var(--g) * 16%)), #b91c1c calc(var(--g) * 62%));
	text-shadow:
		0 0 calc(var(--g) * 12px) rgba(185, 28, 28, calc(0.14 + (var(--g) * 0.42))),
		0 0 calc(var(--g) * 24px) rgba(185, 28, 28, calc(0.03 + (var(--g) * 0.15)));
}

.text-hover-fade {
	transition: color .04s ease, text-shadow .04s ease;
}
.text-fade-word {
	display: inline;
	white-space: nowrap;
}
.text-hover-fade .text-fade-letter {
	display: inline-block;
	transition: color .04s ease, text-shadow .04s ease;
	transition-delay: calc(var(--letter-index, 0) * 0.004s);
}

.text-hover-fade:hover,
.text-hover-fade:hover .text-fade-letter,
.text-hover-fade:hover .glow-letter {
	color: #f87171;
	text-shadow: 0 0 12px rgba(248, 113, 113, 0.28);
}

body.theme-light .text-hover-fade:hover,
body.theme-light .text-hover-fade:hover .text-fade-letter,
body.theme-light .text-hover-fade:hover .glow-letter {
	color: #b91c1c;
	text-shadow: 0 0 10px rgba(185, 28, 28, 0.18);
}

.headline-reveal {
	opacity: .32;
	transform: translateY(14px);
	filter: blur(7px);
	transition: opacity 0.05s var(--ease-spring), transform 0.05s var(--ease-spring), filter 0.05s var(--ease-spring), text-shadow 0.05s ease;
}

.headline-reveal.headline-live {
	opacity: 1;
	transform: none;
	filter: none;
	text-shadow: 0 0 20px rgba(239, 68, 68, 0.16);
}

body.theme-light .headline-reveal.headline-live {
	text-shadow: 0 0 16px rgba(185, 28, 28, 0.14);
}

.page-hop-overlay {
	position: fixed;
	inset: 0;
	z-index: 9900;
	display: grid;
	place-items: center;
	background:
		radial-gradient(circle at 20% 25%, rgba(239, 68, 68, 0.2), transparent 34%),
		radial-gradient(circle at 80% 80%, rgba(67, 56, 202, 0.14), transparent 34%),
		linear-gradient(180deg, #020106, #08050e);
	opacity: 0;
	pointer-events: none;
	transition: opacity .22s ease;
	overflow: hidden;
}

.page-hop-overlay.theme-light-hop {
	background:
		radial-gradient(circle at 18% 20%, rgba(252, 165, 165, 0.28), transparent 32%),
		radial-gradient(circle at 78% 78%, rgba(147, 197, 253, 0.26), transparent 36%),
		linear-gradient(155deg, #f8fafc, #fee2e2);
}

.page-hop-overlay.active {
	opacity: 1;
}

.page-hop-core {
	padding: 18px 22px;
	border-radius: 14px;
	border: 1px solid rgba(239, 68, 68, 0.42);
	background: rgba(2, 6, 23, 0.75);
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42), 0 0 24px rgba(239, 68, 68, 0.2);
	animation: pageHopPulse .38s ease-out both;
}

.page-hop-overlay.theme-light-hop .page-hop-core {
	background: rgba(255, 255, 255, 0.82);
	border-color: rgba(185, 28, 28, 0.35);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14), 0 0 20px rgba(185, 28, 28, 0.16);
}

.page-hop-title {
	color: #f9fafb;
	letter-spacing: .12em;
	font-size: .78rem;
	font-weight: 700;
	text-transform: uppercase;
}

.page-hop-overlay.theme-light-hop .page-hop-title {
	color: #111827;
}

nav a,
.btn,
.select-btn,
.theme-toggle,
.cart-toggle {
	position: relative;
}

.click-burst {
	position: absolute;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	pointer-events: none;
	transform: translate(-50%, -50%);
	background: radial-gradient(circle, rgba(248, 113, 113, 0.95) 0%, rgba(239, 68, 68, 0.4) 35%, rgba(239, 68, 68, 0) 70%);
	animation: clickBurstExpand .52s ease-out forwards;
}

.click-burst-light {
	background: radial-gradient(circle, rgba(185, 28, 28, 0.7) 0%, rgba(239, 68, 68, 0.36) 35%, rgba(239, 68, 68, 0) 70%);
}

@keyframes clickBurstExpand {
	0% {
		opacity: 0.95;
		transform: translate(-50%, -50%) scale(0.2);
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(14);
	}
}

body.theme-light .theme-toggle,
body.theme-light .cart-toggle {
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
}

body.theme-light .theme-toggle:active,
body.theme-light .cart-toggle:active {
	transform: translateY(-1px) scale(0.97);
	box-shadow: 0 10px 22px rgba(185, 28, 28, 0.2);
}

@keyframes pageHopPulse {
	from {
		opacity: 0;
		transform: scale(.92) translateY(8px);
		filter: blur(4px);
	}

	to {
		opacity: 1;
		transform: none;
		filter: none;
	}
}

@keyframes siteAuroraShift {
	0% {
		transform: translate3d(-2%, -1%, 0) scale(1);
	}

	50% {
		transform: translate3d(2%, 1%, 0) scale(1.03);
	}

	100% {
		transform: translate3d(-1%, 2%, 0) scale(1);
	}
}

@keyframes siteScanDrift {
	0% {
		transform: translateY(0);
	}

	100% {
		transform: translateY(20px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.cursor-halo {
		display: none;
	}

	.interactive-spot.is-hot {
		box-shadow: none;
	}
}

body.theme-light .cart-toggle {
	background: #fef2f2;
	color: #111827;
	border-color: rgba(15, 23, 42, 0.16);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

body.theme-light .cart-toggle::before {
	background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.2), transparent);
}

body.theme-light .cart-toggle:hover {
	box-shadow: 0 12px 28px rgba(185, 28, 28, 0.3);
	border-color: rgba(185, 28, 28, 0.3);
}

/* Header grid: nav-left | ULTIMATE (center) | header-actions */
.nav-center-link {
	z-index: 2;
}

nav a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-weight: 600;
	padding: 10px 18px;
	border-radius: 8px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.8));
	border: 1px solid rgba(239, 68, 68, 0.2);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	position: relative;
	transition: all .3s cubic-bezier(.34, 1.56, .64, 1);
	overflow: hidden;
}

body.theme-light nav a {
	color: rgba(15, 23, 42, 0.9);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95));
	border: 1px solid rgba(185, 28, 28, 0.15);
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

nav a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.2), transparent);
	transition: left .5s ease;
}

nav a:hover::before {
	left: 100%;
}

nav a:hover {
	color: #b91c1c;
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
	border-color: rgba(239, 68, 68, 0.4);
}

/* ULTIMATE is a direct child of header-right, NOT inside nav - use a.nav-ultimate */
a.nav-ultimate,
.header-right a.nav-ultimate {
	background: linear-gradient(180deg, #2e2d3a 0%, #2c2b3c 50%, #26242d 100%) !important;
	border: 1px solid var(--accent) !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	color: var(--accent) !important;
	text-decoration: none !important;
	border-radius: 8px;
	padding: 10px 24px;
	appearance: none;
	font-weight: 600;
	position: relative;
	transition: transform var(--motion-base) var(--ease-expo), color var(--motion-base) var(--ease-smooth), opacity var(--motion-base) var(--ease-smooth), box-shadow var(--motion-base) ease, border-color var(--motion-base) ease;
	overflow: hidden;
}
/* Shine sweep animation - same as nav links */
a.nav-ultimate::before,
.header-right a.nav-ultimate::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.2), transparent);
	transition: left .5s ease;
}
a.nav-ultimate:hover::before,
.header-right a.nav-ultimate:hover::before {
	left: 100%;
}
a.nav-ultimate:hover,
.header-right a.nav-ultimate:hover {
	background: linear-gradient(180deg, #35344a 0%, #2e2d3a 50%, #2a2832 100%) !important;
	border-color: rgba(239, 68, 68, 0.4) !important;
	box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4) !important;
	transform: translateY(-3px) scale(1.05);
	color: var(--accent) !important;
}
a.nav-ultimate:visited,
a.nav-ultimate:focus,
a.nav-ultimate:active,
.header-right a.nav-ultimate:visited,
.header-right a.nav-ultimate:focus,
.header-right a.nav-ultimate:active {
	color: var(--accent) !important;
	text-decoration: none !important;
}
/* Force hide any underline - prevent link appearance */
a.nav-ultimate::after,
.header-right a.nav-ultimate::after {
	display: none !important;
	content: none !important;
	height: 0 !important;
	visibility: hidden !important;
}

.nav-ultimate {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.nav-ultimate-letter {
	--glow: 0;
	display: inline-block;
	opacity: calc(0.9 + (var(--glow) * 0.1));
	transform: translateY(calc(var(--glow) * -2px));
	color: color-mix(in srgb, var(--accent) calc(90% - (var(--glow) * 10%)), var(--accent-2) calc(var(--glow) * 70%));
	text-shadow: 0 0 calc(var(--glow) * 12px) rgba(239, 68, 68, calc(0.15 + (var(--glow) * 0.4)));
	transition: transform .02s linear, opacity .02s linear, color .025s linear, text-shadow .025s linear;
}

.nav-ultimate-letter-space {
	width: .28em;
}

body.theme-light a.nav-ultimate,
body.theme-light .header-right a.nav-ultimate {
	background: linear-gradient(180deg, #f0eef5 0%, #e8e4f0 50%, #e0dce8 100%) !important;
	border: 1px solid var(--accent) !important;
	box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1) !important;
	color: var(--accent) !important;
}
body.theme-light a.nav-ultimate:hover,
body.theme-light .header-right a.nav-ultimate:hover {
	background: linear-gradient(180deg, #f5f3f8 0%, #f0eef5 50%, #e8e4f0 100%) !important;
	border-color: var(--accent) !important;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12) !important;
	color: var(--accent) !important;
}
body.theme-light .nav-ultimate-letter {
	color: color-mix(in srgb, var(--accent) calc(85% - (var(--glow) * 15%)), var(--accent-2) calc(var(--glow) * 80%));
}

/* Site load animation (non-ultimate pages) – reuses ultimate-loading structure */
.site-load-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.18), transparent 50%),
		radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.35), transparent 45%),
		radial-gradient(circle at 80% 80%, rgba(248, 113, 113, 0.3), transparent 42%),
		linear-gradient(180deg, #020106, #0a050c);
	opacity: 1;
	visibility: visible;
	transition: opacity .65s ease, visibility .65s ease;
	overflow: hidden;
}

.site-load-overlay::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
	pointer-events: none;
	animation: siteLoadVignettePulse 2s ease-in-out infinite;
}

@keyframes siteLoadVignettePulse {
	0%, 100% { opacity: 0.6; }
	50% { opacity: 1; }
}

.site-load-overlay.site-load-done {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.site-load-overlay.site-load-mode-light {
	background:
		radial-gradient(circle at 50% 50%, rgba(239, 68, 68, 0.12), transparent 45%),
		radial-gradient(circle at 20% 20%, rgba(252, 165, 165, 0.5), transparent 40%),
		radial-gradient(circle at 80% 30%, rgba(147, 197, 253, 0.45), transparent 42%),
		radial-gradient(circle at 50% 85%, rgba(239, 68, 68, 0.35), transparent 38%),
		linear-gradient(155deg, #f8fafc, #fee2e2 48%, #fef3c7 100%);
}

.site-load-overlay.site-load-mode-light::before {
	background: radial-gradient(ellipse 80% 50% at 50% 50%, transparent 35%, rgba(254, 242, 242, 0.4) 100%);
	animation: none;
	opacity: 0.5;
}

/* Warp tunnel – radial zoom effect */
.site-load-layers {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.site-load-warp {
	position: absolute;
	inset: -80%;
	background:
		radial-gradient(circle at 50% 50%, transparent 20%, rgba(248, 113, 113, 0.06) 25%, transparent 30%),
		radial-gradient(circle at 50% 50%, transparent 40%, rgba(239, 68, 68, 0.08) 45%, transparent 50%),
		radial-gradient(circle at 50% 50%, transparent 60%, rgba(248, 113, 113, 0.05) 65%, transparent 70%),
		radial-gradient(circle at 50% 50%, transparent 75%, rgba(239, 68, 68, 0.04) 80%, transparent 90%);
	animation: siteLoadWarpZoom 1.5s cubic-bezier(.12, .9, .35, 1) both;
}

@keyframes siteLoadWarpZoom {
	0% {
		opacity: 0.5;
		transform: scale(4);
	}
	35% {
		opacity: 1;
		transform: scale(1.5);
	}
	100% {
		opacity: 0.3;
		transform: scale(0.5);
	}
}

.site-load-tunnel {
	position: absolute;
	inset: -30%;
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(248, 113, 113, 0.25) 0%, rgba(239, 68, 68, 0.1) 30%, transparent 60%);
	filter: blur(30px);
	animation: siteLoadTunnelZoom 1.2s cubic-bezier(.2, .9, .4, 1) both;
}

@keyframes siteLoadTunnelZoom {
	0% {
		opacity: 0;
		transform: scale(4);
	}
	50% {
		opacity: 1;
		transform: scale(1.5);
	}
	100% {
		opacity: 0.6;
		transform: scale(0.8);
	}
}

/* Sliding streaks – warp speed lines */
.site-load-streaks {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.site-load-streak {
	position: absolute;
	left: -30%;
	top: var(--y);
	width: 160%;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.4) 15%, rgba(248, 113, 113, 0.85) 50%, rgba(248, 113, 113, 0.4) 85%, transparent 100%);
	transform: rotate(var(--angle));
	animation: siteLoadStreakSlide 1.5s linear var(--delay) both;
	filter: blur(0.5px);
}

@keyframes siteLoadStreakSlide {
	0% {
		opacity: 0;
		transform: rotate(var(--angle)) translateX(-40%);
	}
	15% {
		opacity: 1;
	}
	85% {
		opacity: 0.7;
	}
	100% {
		opacity: 0;
		transform: rotate(var(--angle)) translateX(40%);
	}
}

/* Streaking stars */
.site-load-stars {
	position: absolute;
	inset: 0;
}

.site-load-star {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 2px;
	height: 2px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 0 6px rgba(248, 113, 113, 0.5);
	animation: siteLoadStarStreak var(--dur) linear var(--delay) both;
}

@keyframes siteLoadStarStreak {
	0% {
		opacity: 0;
		transform: translateX(0) scale(0.3);
	}
	8% {
		opacity: 1;
		transform: translateX(-60px) scale(1);
	}
	92% {
		opacity: 0.7;
		transform: translateX(-180px) scale(0.6);
	}
	100% {
		opacity: 0;
		transform: translateX(-220px) scale(0.2);
	}
}

/* Hyperspace burst – after initial animation, dense streaks radiating from center */
.site-load-hyperspace {
	position: absolute;
	inset: 0;
	z-index: 10;
	background: #000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.site-load-hyperspace::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(ellipse 35% 35% at 50% 50%, rgba(0, 0, 0, 0.85) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(239, 68, 68, 0.12) 0%, transparent 50%);
	pointer-events: none;
}

.site-load-overlay.site-load-hyperspace-active .site-load-hyperspace {
	opacity: 1;
}

.site-load-overlay.site-load-mode-light .site-load-hyperspace {
	background: linear-gradient(155deg, #f8fafc 0%, #fee2e2 45%, #fef3c7 100%);
}

.site-load-overlay.site-load-mode-light .site-load-hyperspace::before {
	background:
		radial-gradient(ellipse 35% 35% at 50% 50%, rgba(255, 255, 255, 0.7) 0%, transparent 55%),
		radial-gradient(ellipse 50% 40% at 20% 80%, rgba(185, 28, 28, 0.1) 0%, transparent 50%);
}

/* Center line – camera zooming toward this line */
.site-load-zoom-line {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	transform: translateY(-50%);
	background: linear-gradient(90deg, transparent 0%, rgba(248, 113, 113, 0.4) 35%, rgba(248, 113, 113, 0.7) 50%, rgba(248, 113, 113, 0.4) 65%, transparent 100%);
	animation: siteLoadZoomLinePulse 0.4s ease-out both;
}

.site-load-overlay.site-load-mode-light .site-load-zoom-line {
	background: linear-gradient(90deg, transparent 0%, rgba(185, 28, 28, 0.5) 35%, rgba(185, 28, 28, 0.85) 50%, rgba(185, 28, 28, 0.5) 65%, transparent 100%);
}

@keyframes siteLoadZoomLinePulse {
	0% { opacity: 0; transform: translateY(-50%) scaleX(0.3); }
	40% { opacity: 1; transform: translateY(-50%) scaleX(1.1); }
	100% { opacity: 0.9; transform: translateY(-50%) scaleX(1); }
}

.site-load-hyperspace-streaks {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.site-load-center-out {
	opacity: 0 !important;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.site-load-hyperspace-streak {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 2px;
	height: var(--len);
	margin-left: -1px;
	transform-origin: 50% 0%;
	transform: rotate(var(--angle)) scaleY(0);
	--streak-color: rgba(248, 113, 113, 0.9);
	background: linear-gradient(
		to bottom,
		rgba(255, 200, 200, 0.92) 0%,
		var(--streak-color) 20%,
		var(--streak-color) 55%,
		transparent 85%,
		transparent 100%
	);
	filter: blur(0.6px);
	animation: siteLoadHyperspaceBurst 0.2s cubic-bezier(.02, .98, .4, 1) both;
	animation-delay: var(--delay, 0s);
}

.site-load-hyperspace-streak.site-load-hs-red {
	--streak-color: rgba(248, 113, 113, 0.95);
}
.site-load-hyperspace-streak.site-load-hs-coral {
	--streak-color: rgba(251, 146, 146, 0.9);
}
.site-load-hyperspace-streak.site-load-hs-darkred {
	--streak-color: rgba(185, 28, 28, 0.9);
}
.site-load-hyperspace-streak.site-load-hs-brightred {
	--streak-color: rgba(239, 68, 68, 0.95);
}

@keyframes siteLoadHyperspaceBurst {
	0% {
		opacity: 0;
		transform: rotate(var(--angle)) scaleY(0);
	}
	20% {
		opacity: 1;
	}
	100% {
		opacity: 0.95;
		transform: rotate(var(--angle)) scaleY(1);
	}
}

.site-load-overlay.site-load-mode-light .site-load-hyperspace-streak,
.site-load-overlay.site-load-mode-light .site-load-hyperspace-streak.site-load-hs-red {
	--streak-color: rgba(185, 28, 28, 0.9);
}
.site-load-overlay.site-load-mode-light .site-load-hyperspace-streak.site-load-hs-coral {
	--streak-color: rgba(220, 38, 38, 0.85);
}
.site-load-overlay.site-load-mode-light .site-load-hyperspace-streak.site-load-hs-darkred {
	--streak-color: rgba(127, 29, 29, 0.9);
}
.site-load-overlay.site-load-mode-light .site-load-hyperspace-streak.site-load-hs-brightred {
	--streak-color: rgba(185, 28, 28, 0.95);
}
.site-load-overlay.site-load-mode-light .site-load-hyperspace-streak {
	background: linear-gradient(
		to bottom,
		rgba(127, 29, 29, 0.85) 0%,
		var(--streak-color) 20%,
		var(--streak-color) 55%,
		transparent 85%,
		transparent 100%
	);
}

.site-load-overlay.site-load-mode-light .site-load-streak {
	background: linear-gradient(90deg, transparent 0%, rgba(185, 28, 28, 0.5) 20%, rgba(239, 68, 68, 0.7) 50%, rgba(185, 28, 28, 0.5) 80%, transparent 100%);
}

.site-load-overlay.site-load-mode-light .site-load-star {
	background: rgba(17, 24, 39, 0.9);
	box-shadow: 0 0 6px rgba(185, 28, 28, 0.5);
}

.site-load-overlay.site-load-mode-light .site-load-title {
	color: #111827;
	text-shadow: 0 0 24px rgba(239, 68, 68, 0.35), 0 0 48px rgba(239, 68, 68, 0.15);
}

.site-load-overlay.site-load-mode-light .site-load-subtitle {
	color: rgba(17, 24, 39, 0.8);
}

.site-load-overlay.site-load-mode-light .site-load-warp {
	background:
		radial-gradient(circle at 50% 50%, transparent 20%, rgba(185, 28, 28, 0.05) 25%, transparent 30%),
		radial-gradient(circle at 50% 50%, transparent 40%, rgba(239, 68, 68, 0.06) 45%, transparent 50%),
		radial-gradient(circle at 50% 50%, transparent 60%, rgba(185, 28, 28, 0.04) 65%, transparent 70%),
		radial-gradient(circle at 50% 50%, transparent 75%, rgba(239, 68, 68, 0.03) 80%, transparent 90%);
}

.site-load-overlay.site-load-mode-light .site-load-tunnel {
	background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(252, 165, 165, 0.35) 0%, rgba(239, 68, 68, 0.15) 30%, transparent 60%);
}

.site-load-center {
	text-align: center;
	position: relative;
	z-index: 2;
}

.site-load-brand-wrap {
	position: relative;
	width: min(400px, 72vw);
	margin: 0 auto 24px;
	display: flex;
	justify-content: center;
}

.site-load-brand-wrap::before {
	content: '';
	position: absolute;
	inset: -15%;
	background: radial-gradient(circle, rgba(248, 113, 113, 0.5) 0%, transparent 65%);
	filter: blur(24px);
	animation: siteLoadLogoAura 1.8s ease-in-out infinite alternate;
}

@keyframes siteLoadLogoAura {
	from { transform: scale(0.9); opacity: 0.5; }
	to { transform: scale(1.15); opacity: 1; }
}

.site-load-brand-img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 340px;
	height: auto;
	filter: drop-shadow(0 0 40px rgba(248, 113, 113, 0.5)) drop-shadow(0 0 80px rgba(239, 68, 68, 0.25));
	animation: siteLoadBrandPop 1.1s cubic-bezier(.2, .9, .35, 1) 0.35s both;
}

@keyframes siteLoadBrandPop {
	0% {
		opacity: 0;
		transform: scale(0.4) translateZ(0);
		filter: drop-shadow(0 0 0 rgba(248, 113, 113, 0)) blur(8px);
	}
	50% {
		opacity: 1;
		transform: scale(1.08) translateZ(0);
		filter: drop-shadow(0 0 60px rgba(248, 113, 113, 0.6)) drop-shadow(0 0 120px rgba(239, 68, 68, 0.35)) blur(0);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateZ(0);
		filter: drop-shadow(0 0 40px rgba(248, 113, 113, 0.5)) drop-shadow(0 0 80px rgba(239, 68, 68, 0.25)) blur(0);
	}
}

/* Expanding pulse – arrival effect */
.site-load-pulse {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 20px;
	border-radius: 50%;
	border: 2px solid rgba(248, 113, 113, 0.5);
	animation: siteLoadPulseExpand 1.2s cubic-bezier(.2, .8, .4, 1) 0.5s both;
}

.site-load-pulse::before,
.site-load-pulse::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	border: 1px solid rgba(248, 113, 113, 0.3);
	animation: siteLoadPulseRipple 1.4s ease-out 0.6s both;
}

.site-load-pulse::after {
	animation-delay: 0.9s;
}

@keyframes siteLoadPulseExpand {
	0% {
		opacity: 0;
		transform: scale(0.3);
	}
	60% {
		opacity: 1;
		transform: scale(1.1);
	}
	100% {
		opacity: 0.6;
		transform: scale(1);
	}
}

@keyframes siteLoadPulseRipple {
	0% {
		opacity: 0.8;
		transform: scale(0.8);
	}
	100% {
		opacity: 0;
		transform: scale(1.8);
	}
}

.site-load-title {
	color: #f9fafb;
	font-size: clamp(1.9rem, 5.5vw, 3rem);
	letter-spacing: 0.2em;
	font-weight: 800;
	text-shadow:
		0 0 20px rgba(248, 113, 113, 0.6),
		0 0 40px rgba(239, 68, 68, 0.4),
		0 0 60px rgba(239, 68, 68, 0.2);
	animation: siteLoadTitleIn 0.7s cubic-bezier(.22, .8, .26, 1) 0.7s both;
}

.site-load-subtitle {
	color: rgba(255, 255, 255, 0.88);
	letter-spacing: 0.22em;
	font-size: .75rem;
	margin-top: 10px;
	text-transform: uppercase;
	text-shadow: 0 0 16px rgba(248, 113, 113, 0.3);
	animation: siteLoadSubtitleIn 0.6s cubic-bezier(.22, .8, .26, 1) 0.9s both;
}

@keyframes siteLoadTitleIn {
	0% {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
		text-shadow: 0 0 0 rgba(248, 113, 113, 0), 0 0 0 rgba(239, 68, 68, 0), 0 0 0 rgba(239, 68, 68, 0);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
		text-shadow:
			0 0 20px rgba(248, 113, 113, 0.6),
			0 0 40px rgba(239, 68, 68, 0.4),
			0 0 60px rgba(239, 68, 68, 0.2);
	}
}

@keyframes siteLoadSubtitleIn {
	0% {
		opacity: 0;
		transform: translateY(14px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.ultimate-loading-overlay {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	background:
		radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.24), transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.2), transparent 36%),
		linear-gradient(180deg, #020106, #09040b);
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease;
	overflow: hidden;
}

.ultimate-loading-overlay.active {
	opacity: 1;
	visibility: visible;
}

.ultimate-loading-overlay.ultimate-mode-dark {
	background:
		radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.24), transparent 40%),
		radial-gradient(circle at 80% 80%, rgba(239, 68, 68, 0.2), transparent 36%),
		linear-gradient(180deg, #020106, #09040b);
}

.ultimate-loading-overlay.ultimate-mode-cosmic {
	background:
		radial-gradient(circle at 50% 45%, rgba(248, 113, 113, 0.2), transparent 28%),
		radial-gradient(circle at 15% 25%, rgba(67, 56, 202, 0.26), transparent 38%),
		radial-gradient(circle at 85% 72%, rgba(239, 68, 68, 0.26), transparent 40%),
		linear-gradient(150deg, #050612, #160617 40%, #0a1024 100%);
}

.ultimate-loading-overlay.ultimate-mode-light {
	background:
		radial-gradient(circle at 20% 20%, rgba(252, 165, 165, 0.42), transparent 36%),
		radial-gradient(circle at 80% 30%, rgba(147, 197, 253, 0.38), transparent 38%),
		radial-gradient(circle at 50% 85%, rgba(239, 68, 68, 0.28), transparent 34%),
		linear-gradient(155deg, #f8fafc, #fee2e2 48%, #fef3c7 100%);
}

.ultimate-loading-layers {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.ultimate-loading-beam {
	position: absolute;
	inset: -10% -20%;
	background:
		conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(239, 68, 68, 0.18) 70deg, transparent 150deg, rgba(239, 68, 68, 0.2) 220deg, transparent 300deg);
	filter: blur(12px);
	animation: ultimateBeamSpin 2.8s linear infinite;
}

.ultimate-loading-grid {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 58px 58px;
	opacity: 0.28;
	transform: perspective(520px) rotateX(58deg) scale(1.2) translateY(22%);
	transform-origin: center center;
	animation: ultimateGridMove 1.4s linear infinite;
}

.ultimate-loading-nebula {
	position: absolute;
	inset: -20%;
	background:
		radial-gradient(circle at 45% 55%, rgba(248, 113, 113, 0.24), transparent 25%),
		radial-gradient(circle at 55% 45%, rgba(96, 165, 250, 0.2), transparent 30%),
		radial-gradient(circle at 70% 60%, rgba(239, 68, 68, 0.15), transparent 24%);
	filter: blur(18px);
	opacity: 0;
	animation: ultimateNebulaPulse 1.6s ease-in-out infinite alternate;
}

.ultimate-loading-overlay.ultimate-mode-cosmic .ultimate-loading-nebula {
	opacity: 1;
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-nebula {
	opacity: 1;
	filter: blur(14px);
}

.ultimate-loading-overlay.ultimate-mode-cosmic .ultimate-loading-grid {
	opacity: 0.14;
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-grid {
	opacity: 0.18;
}

.ultimate-loading-overlay.ultimate-mode-cosmic .ultimate-loading-beam {
	background: conic-gradient(from 90deg at 50% 50%, transparent 0deg, rgba(96, 165, 250, 0.18) 85deg, transparent 165deg, rgba(239, 68, 68, 0.24) 250deg, transparent 330deg);
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-beam {
	background: conic-gradient(from 140deg at 50% 50%, transparent 0deg, rgba(59, 130, 246, 0.18) 95deg, transparent 170deg, rgba(239, 68, 68, 0.24) 255deg, transparent 330deg);
}

.ultimate-loading-sparks {
	position: absolute;
	inset: 0;
}

.ultimate-loading-spark {
	position: absolute;
	left: var(--spark-x);
	top: -8%;
	width: var(--spark-size);
	height: var(--spark-size);
	border-radius: 50%;
	background: rgba(248, 113, 113, 0.9);
	filter: blur(.5px);
	animation: ultimateSparkFall 1.6s linear infinite;
	animation-delay: var(--spark-delay);
	opacity: 0;
}

.ultimate-loading-center {
	text-align: center;
	position: relative;
	z-index: 2;
}

.ultimate-loading-brand-wrap {
	position: relative;
	width: min(420px, 72vw);
	margin: 0 auto 8px;
	display: flex;
	justify-content: center;
}

.ultimate-loading-brand-wrap::before {
	content: '';
	position: absolute;
	inset: 12% 16%;
	background: radial-gradient(circle, rgba(248, 113, 113, 0.35) 0%, rgba(2, 6, 23, 0) 70%);
	filter: blur(14px);
	animation: ultimateBrandAura 1.4s ease-in-out infinite alternate;
}

.ultimate-loading-brand-img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 360px;
	height: auto;
	filter: drop-shadow(0 0 30px rgba(248, 113, 113, 0.35));
	animation: ultimateBrandPop 1.05s cubic-bezier(.22, .8, .26, 1) both;
}

.ultimate-loading-logo {
	position: relative;
	height: 86px;
	margin: 0 auto 12px;
	display: grid;
	place-items: center;
}

.ultimate-logo-layer,
.ultimate-logo-morph {
	grid-area: 1 / 1;
	font-size: clamp(1.5rem, 4.8vw, 2.5rem);
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.ultimate-logo-layer {
	color: rgba(248, 250, 252, 0.88);
}

.ultimate-logo-layer.base {
	text-shadow: 0 0 16px rgba(248, 113, 113, 0.32);
	animation: ultimateLogoBase 1.1s ease-in-out both;
}

.ultimate-logo-layer.glitch {
	mix-blend-mode: screen;
	opacity: 0;
}

.ultimate-logo-layer.g1 {
	color: rgba(248, 113, 113, 0.9);
	animation: ultimateLogoGlitch1 1.15s ease-in-out .05s both;
}

.ultimate-logo-layer.g2 {
	color: rgba(251, 191, 36, 0.72);
	animation: ultimateLogoGlitch2 1.15s ease-in-out .08s both;
}

.ultimate-logo-morph {
	color: #f87171;
	text-shadow: 0 0 28px rgba(248, 113, 113, 0.4);
	opacity: 0;
	transform: scale(.94) translateY(6px);
	animation: ultimateLogoMorph 0.55s cubic-bezier(.22, .8, .26, 1) 0.78s forwards;
}

.ultimate-loading-rings {
	position: relative;
	width: 150px;
	height: 150px;
	margin: 0 auto 26px;
}

.ultimate-loading-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(239, 68, 68, 0.45);
	animation: ultimateSpin 2.4s linear infinite;
}

.ultimate-loading-ring:nth-child(2) {
	inset: 18px;
	border-color: rgba(248, 113, 113, 0.36);
	animation-direction: reverse;
	animation-duration: 1.9s;
}

.ultimate-loading-ring:nth-child(3) {
	inset: 36px;
	border-color: rgba(248, 250, 252, 0.28);
	animation-duration: 1.3s;
}

.ultimate-loading-title {
	color: #f9fafb;
	font-size: clamp(2rem, 6vw, 3.5rem);
	letter-spacing: 0.18em;
	font-weight: 800;
	text-shadow: 0 0 30px rgba(239, 68, 68, 0.4);
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-title {
	color: #111827;
	text-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.ultimate-loading-subtitle {
	color: rgba(255, 255, 255, 0.78);
	letter-spacing: 0.2em;
	font-size: .75rem;
	margin-top: 10px;
	text-transform: uppercase;
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-subtitle {
	color: rgba(17, 24, 39, 0.72);
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-ring {
	border-color: rgba(185, 28, 28, 0.34);
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-ring:nth-child(2) {
	border-color: rgba(59, 130, 246, 0.3);
}

.ultimate-loading-overlay.ultimate-mode-light .ultimate-loading-ring:nth-child(3) {
	border-color: rgba(17, 24, 39, 0.28);
}

@keyframes ultimateSpin {
	from {
		transform: rotate(0deg) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(1.04);
	}

	to {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes ultimateBeamSpin {
	from {
		transform: rotate(0deg) scale(1.1);
	}

	to {
		transform: rotate(360deg) scale(1.1);
	}
}

@keyframes ultimateGridMove {
	from {
		background-position: 0 0, 0 0;
	}

	to {
		background-position: 0 58px, 58px 0;
	}
}

@keyframes ultimateSparkFall {
	0% {
		transform: translateY(-5%) scale(.8);
		opacity: 0;
	}

	12% {
		opacity: .95;
	}

	100% {
		transform: translateY(120vh) scale(1.1);
		opacity: 0;
	}
}

@keyframes ultimateNebulaPulse {
	from {
		transform: scale(.94);
		opacity: .72;
	}

	to {
		transform: scale(1.08);
		opacity: 1;
	}
}

@keyframes ultimateLogoBase {
	0% {
		opacity: 0;
		transform: scale(.92) translateY(8px);
		filter: blur(6px);
	}

	50% {
		opacity: 1;
		transform: scale(1.02) translateY(0);
		filter: blur(0);
	}

	100% {
		opacity: 0;
		transform: scale(1.05) translateY(-4px);
		filter: blur(2px);
	}
}

@keyframes ultimateLogoGlitch1 {
	0%,
	20%,
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}

	22% {
		opacity: .9;
		transform: translate(-4px, 1px);
	}

	25% {
		opacity: .8;
		transform: translate(3px, -2px);
	}

	28% {
		opacity: 0;
		transform: translate(0, 0);
	}

	56% {
		opacity: .62;
		transform: translate(-2px, 0);
	}

	60% {
		opacity: 0;
	}
}

@keyframes ultimateLogoGlitch2 {
	0%,
	26%,
	100% {
		opacity: 0;
		transform: translate(0, 0);
	}

	30% {
		opacity: .8;
		transform: translate(4px, 2px);
	}

	34% {
		opacity: .5;
		transform: translate(-3px, -1px);
	}

	38% {
		opacity: 0;
	}

	62% {
		opacity: .42;
		transform: translate(2px, 0);
	}

	66% {
		opacity: 0;
	}
}

@keyframes ultimateLogoMorph {
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

@keyframes ultimateBrandPop {
	0% {
		opacity: 0;
		transform: scale(.9) translateY(10px);
		filter: blur(8px) drop-shadow(0 0 0 rgba(248, 113, 113, 0));
	}

	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
		filter: drop-shadow(0 0 30px rgba(248, 113, 113, 0.35));
	}
}

@keyframes ultimateBrandAura {
	from {
		transform: scale(.96);
		opacity: .72;
	}

	to {
		transform: scale(1.06);
		opacity: 1;
	}
}

nav a.btn {
	background: linear-gradient(90deg, var(--accent-2), var(--accent));
	color: #020617;
	padding: 8px 12px;
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.theme-toggle {
	min-width: 64px;
	height: 36px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(248, 250, 252, 0.15);
	background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.32), transparent 55%), rgba(15, 23, 42, 0.85);
	color: var(--text);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
	transition: background .2s ease, transform .3s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s ease, border-color .3s ease;
	position: relative;
	overflow: hidden;
	padding-left: 4px;
	padding-right: 4px;
}

.theme-toggle-switch {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	position: relative;
}

.theme-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.6);
	transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1), opacity .3s ease, background .3s ease;
	font-size: 1rem;
	position: absolute;
	left: 4px;
}

.theme-icon-light {
	opacity: 0;
	transform: translateX(-20px);
	left: auto;
	right: 4px;
}

.theme-toggle:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 12px 28px rgba(239, 68, 68, 0.4);
	border-color: rgba(239, 68, 68, 0.4);
}

body.theme-light .theme-toggle {
	background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.4), transparent 55%), #fef2f2;
	color: #111827;
	border-color: rgba(15, 23, 42, 0.16);
	box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

body.theme-light .theme-icon-dark {
	opacity: 0;
	transform: translateX(20px);
}

body.theme-light .theme-icon-light {
	opacity: 1;
	transform: translateX(0);
	background: rgba(255, 255, 255, 0.8);
}

body.theme-light .theme-toggle:hover {
	box-shadow: 0 12px 28px rgba(185, 28, 28, 0.3);
	border-color: rgba(185, 28, 28, 0.3);
}

/* Hero */
.hero {
	margin-top: calc(-1 * var(--header-height));
	padding: calc(64px + var(--header-height)) 0 56px;
	background-image:
		radial-gradient(circle at 15% 15%, rgba(248, 113, 113, 0.2), transparent 22%),
		radial-gradient(circle at 90% 85%, rgba(248, 113, 113, 0.1), transparent 22%),
		radial-gradient(ellipse at 50% 100%, rgba(239, 68, 68, 0.06), transparent 50%);
	border-bottom: 1px solid rgba(239, 68, 68, 0.08);
}

body.theme-light .hero {
	background-image:
		radial-gradient(circle at 15% 15%, rgba(185, 28, 28, 0.08), transparent 22%),
		radial-gradient(circle at 90% 85%, rgba(185, 28, 28, 0.06), transparent 22%);
	border-bottom: 1px solid rgba(185, 28, 28, 0.06);
}

.hero .container {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hero h2 {
	font-size: 2rem;
	margin-bottom: 8px;
	color: var(--text);
}

.hero p {
	color: var(--muted);
	margin-bottom: 16px;
	max-width: 830px;
}

.hero-cta .btn {
	margin-right: 10px;
}

.btn {
	display: inline-block;
	background: linear-gradient(90deg, var(--accent-2), var(--accent));
	color: #020617;
	padding: 10px 16px;
	border-radius: 12px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
	transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease, background .25s ease;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width .6s ease, height .6s ease;
}

.btn:hover::before {
	width: 300px;
	height: 300px;
}

.btn:hover {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 20px 45px rgba(239, 68, 68, 0.5);
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.btn:active {
	transform: translateY(-2px) scale(0.98);
}

.card-action-btn {
	min-height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: auto;
}

.btn.ghost {
	background: transparent;
	color: var(--accent-2);
	border: 1px solid rgba(248, 113, 113, 0.35);
}

.account-interface-btn {
	font-weight: 600;
}

.muted {
	color: var(--muted);
}

.nav-active {
	color: #b91c1c;
}

/* Services / cards */
.services {
	padding: 36px 0 56px;
}

.services h3 {
	margin-bottom: 10px;
	font-size: 1.25rem;
	color: var(--text);
}

.services > .muted {
	margin-bottom: 28px;
}

#zen-scripts-page h3 {
	margin-bottom: 18px;
}

#zen-scripts-page > .muted {
	margin-bottom: 32px;
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 18px;
	content-visibility: auto;
	contain-intrinsic-size: auto 500px;
	contain: layout paint;
}

.zen-grid {
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	content-visibility: auto;
	contain-intrinsic-size: auto 500px;
	contain: layout paint;
}

.card {
	background: linear-gradient(180deg, var(--panel), #050509);
	padding: 20px;
	border-radius: 14px;
	box-shadow: 0 12px 38px rgba(0, 0, 0, 0.65);
	border: 1px solid rgba(248, 250, 252, 0.04);
	transform: translateY(18px);
	opacity: 0;
	transition: transform var(--motion-base) var(--ease-back), opacity var(--motion-slow) ease, box-shadow var(--motion-base) var(--ease-smooth), border-color var(--motion-base) var(--ease-smooth);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
}

.card::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity .4s ease, transform .6s ease;
	transform: scale(0.5);
	pointer-events: none;
}

.card:hover::before {
	opacity: 1;
	transform: scale(1);
}

.card h4 {
	margin-bottom: 8px;
	font-size: 1.05rem;
	word-wrap: break-word;
	word-break: break-word;
	transition: color .3s ease;
}

.card:hover {
	transform: translateY(-12px) scale(1.03) rotate(0.5deg);
	box-shadow: 0 25px 55px rgba(239, 68, 68, 0.4), 0 0 40px rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.3);
}

.card:hover h4 {
	color: var(--accent);
}

.zen-product {
	position: relative;
	overflow: hidden;
}

.zen-product::after {
	content: '';
	position: absolute;
	inset: -40%;
	background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.16), transparent 55%);
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	transform: translate3d(-8%, -8%, 0);
	pointer-events: none;
}

.zen-product:hover::after {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.zen-product--highlight {
	border-color: rgba(248, 113, 113, 0.5);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.8);
}

.zen-product p.muted {
	flex-grow: 1;
	min-height: 2.5em;
}

.zen-ultimate-link {
	color: var(--accent);
	text-decoration: none;
}

.zen-ultimate-link:hover {
	text-decoration: underline;
}

.price {
	margin: 10px 0;
	font-weight: 700;
	color: var(--accent);
}

.select-btn {
	margin-top: auto;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	border-radius: 8px;
	padding: 10px 12px;
	color: #f9fafb;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	box-sizing: border-box;
	min-height: 42px;
	transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s ease, background .25s ease;
	position: relative;
	overflow: hidden;
}

.select-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	transform: translate(-50%, -50%);
	transition: width .6s ease, height .6s ease;
}

.select-btn:hover::before {
	width: 300px;
	height: 300px;
}

.select-btn.zen-link-btn {
	text-decoration: none;
	border: none;
}

.select-btn:hover {
	text-decoration: none;
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 30px rgba(239, 68, 68, 0.5);
	background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.select-btn:active {
	transform: translateY(-1px) scale(0.98);
}

.card p,
.card ul {
	color: #cbd5e1;
}
body.theme-light .card p,
body.theme-light .card ul {
	color: #4b5563;
}

.card ul {
	margin-top: 8px;
	margin-bottom: 16px;
	list-style: none;
	padding-left: 0;
	flex-grow: 1;
}

.card ul li::before {
	content: '•';
	color: var(--accent);
	display: inline-block;
	width: 1em;
	margin-left: -1em;
}

.cart {
	margin-top: 20px;
	background: linear-gradient(180deg, #050509, #111827);
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.cart-actions {
	margin-top: 12px;
}

.zen-cart-items {
	list-style: none;
	margin: 10px 0 6px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.9rem;
}

.zen-cart-items li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--muted);
}

.zen-cart-total {
	margin-top: 6px;
	font-weight: 700;
}

.zen-cart-actions {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

/* Global site cart (slide-out) */
.site-cart-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(15, 23, 42, 0.65);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
	z-index: 140;
}

.site-cart {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: min(460px, calc(100vw - 24px));
	background: linear-gradient(180deg, #020617, #050509);
	box-shadow: -18px 0 40px rgba(0, 0, 0, 0.8);
	transform: translateX(100%);
	transition: transform .28s cubic-bezier(.2, .9, .3, 1);
	z-index: 150;
	display: flex;
	flex-direction: column;
	padding: 18px 18px 24px;
	border-left: 1px solid rgba(248, 250, 252, 0.06);
}

/* When the Account button is replaced by profile icon, keep drawer slightly more right */
body.site-account-hidden .site-cart {
	width: min(390px, calc(100vw - 24px));
}

.site-cart-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.site-cart-header h2 {
	font-size: 1.1rem;
}

.site-cart-close {
	border: none;
	background: transparent;
	color: var(--muted);
	font-size: 1.3rem;
	cursor: pointer;
}

.site-cart-body {
	flex: 1;
	min-height: 0;
	overflow: auto;
	padding-right: 4px;
	-webkit-overflow-scrolling: touch;
}

#site-cart-summary {
	margin: 20px 0 16px;
}

.site-cart-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.site-cart-items li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.9rem;
	color: var(--muted);
	border-radius: 10px;
	padding: 8px 10px;
	background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.2), transparent 55%), rgba(15, 23, 42, 0.9);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6);
	transform: translateY(6px);
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease, box-shadow .2s ease, background .2s ease;
}

.site-cart-items li.site-cart-item-visible {
	opacity: 1;
	transform: translateY(0);
}

.site-cart-items li:hover {
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
	background: radial-gradient(circle at 0 0, rgba(248, 113, 113, 0.3), transparent 55%), rgba(15, 23, 42, 0.98);
}

.site-cart-item-main {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.site-cart-item-name {
	font-weight: 600;
	color: var(--text);
	word-break: break-word;
}

.site-cart-item-price {
	font-size: 0.85rem;
}

.site-cart-item-remove {
	border: none;
	background: transparent;
	color: rgba(248, 113, 113, 0.9);
	cursor: pointer;
	font-size: 1.1rem;
	margin-left: 8px;
	padding: 4px 6px;
	border-radius: 6px;
	transition: transform .2s cubic-bezier(.34, 1.56, .64, 1), background .2s ease, color .2s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
}

.site-cart-item-remove:hover {
	transform: scale(1.2) rotate(10deg);
	background: rgba(248, 113, 113, 0.2);
	color: var(--accent);
}

.site-cart-item-remove:active {
	transform: scale(0.9) rotate(-5deg);
}

/* How it Works layout */
.how-layout {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.how-intro {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
	border-radius: 18px;
	padding: 28px 24px;
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
	border: 1px solid rgba(239, 68, 68, 0.2);
	overflow: hidden;
	position: relative;
}

.how-intro::before {
	content: '';
	position: absolute;
	top: -50%;
	left: 50%;
	transform: translateX(-50%);
	width: 200%;
	height: 100%;
	background: radial-gradient(ellipse at center, rgba(239, 68, 68, 0.1) 0%, transparent 58%);
	pointer-events: none;
}

.how-intro-label {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 8px;
}

.how-intro h4 {
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 8px;
	color: var(--text);
}

.how-intro p.muted {
	margin-bottom: 16px;
	line-height: 1.6;
}

.how-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.how-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 12px;
	font-size: 0.85rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.5), rgba(15, 23, 42, 0.3));
	border: 1px solid rgba(239, 68, 68, 0.22);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.how-chip::before {
	content: '✓';
	color: var(--accent);
	font-weight: 700;
	margin-right: 6px;
}

.how-chip:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(239, 68, 68, 0.18);
	border-color: rgba(239, 68, 68, 0.42);
}

body.theme-light .how-chip {
	color: #374151;
	background: linear-gradient(180deg, #ffffff, #fef2f2);
	border-color: rgba(185, 28, 28, 0.18);
}

body.theme-light .how-chip:hover {
	box-shadow: 0 8px 18px rgba(185, 28, 28, 0.14);
	border-color: rgba(185, 28, 28, 0.38);
}

.how-steps {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 14px;
	content-visibility: auto;
	contain-intrinsic-size: auto 500px;
	contain: layout paint;
}

.how-step {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
	border-radius: 14px;
	padding: 14px 14px 12px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
	border: 1px solid rgba(248, 250, 252, 0.05);
	display: flex;
	gap: 12px;
	align-items: flex-start;
	transition: transform var(--motion-base) var(--ease-back), box-shadow var(--motion-base) var(--ease-smooth), border-color var(--motion-base) var(--ease-smooth);
	position: relative;
	overflow: hidden;
}

.how-step::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.1), transparent);
	transition: left .5s ease;
}

.how-step:hover::before {
	left: 100%;
}

.how-step:hover {
	transform: translateX(8px) scale(1.02);
	box-shadow: 0 15px 35px rgba(239, 68, 68, 0.3);
	border-color: rgba(239, 68, 68, 0.3);
}

.how-step-badge {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	border: 1px solid rgba(248, 113, 113, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.85rem;
	font-weight: 700;
	color: #020617;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
	flex-shrink: 0;
}

.how-step h4 {
	font-size: 0.98rem;
	margin-bottom: 4px;
}

.how-step p {
	font-size: 0.9rem;
}

.how-step a {
	color: var(--accent);
	text-decoration: underline;
}

.how-step a:hover {
	color: var(--accent-2);
}

/* How section: smoother scroll reveals */
.how.container[data-scroll-section] {
	transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.how [data-scroll-item] {
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.how .how-chip {
	transform: translateY(8px);
}

.how .how-chip.scroll-visible {
	transform: translateY(0);
}

.how .how-chip.scroll-visible:hover {
	transform: translateY(-2px);
}

.how .how-step-badge {
	transform: scale(0.6);
	opacity: 0;
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.how .how-step.scroll-visible .how-step-badge {
	transform: scale(1);
	opacity: 1;
}

.how .how-step.scroll-visible .how-step-badge {
	transition-delay: 0.06s;
}

/* FAQ tweaks */
.faq h3 {
	margin-bottom: 16px;
}

.faq.container {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 40px;
}

.faq-vertical {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 60px;
	content-visibility: auto;
	contain-intrinsic-size: auto 500px;
	contain: layout paint;
}

.faq details {
	position: relative;
	overflow: hidden;
	transition: transform var(--motion-base) var(--ease-back), box-shadow var(--motion-base) var(--ease-smooth), border-color var(--motion-base) var(--ease-smooth);
}

.faq details:hover {
	transform: translateX(6px) scale(1.01);
	box-shadow: 0 12px 30px rgba(239, 68, 68, 0.25);
	border-color: rgba(239, 68, 68, 0.3);
}

.faq details summary {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

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

.faq details summary::after {
	content: '+';
	font-weight: 700;
	color: var(--accent);
	transition: transform .2s ease, color .2s ease;
}

.faq details[open] summary::after {
	content: '−';
	transform: rotate(180deg);
	color: var(--accent-2);
}

.site-cart-total {
	margin-top: 12px;
	font-weight: 700;
}

.site-cart-promo {
	margin-top: 10px;
	display: none;
}

.site-cart-promo-row {
	display: flex;
	gap: 8px;
	align-items: center;
}

.site-cart-promo-input {
	flex: 1;
	min-width: 0;
	padding: 8px 10px;
	font-size: 0.9rem;
	border: 1px solid rgba(15, 23, 42, 0.5);
	border-radius: 6px;
	background: rgba(15, 23, 42, 0.3);
	color: inherit;
}

.site-cart-promo-input::placeholder {
	opacity: 0.6;
}

.site-cart-promo-input:focus {
	outline: none;
	border-color: var(--accent-2, #f43f5e);
}

.site-cart-promo-message {
	margin-top: 6px;
	font-size: 0.85rem;
}

.site-cart-promo-message.site-cart-promo-error {
	color: #f43f5e;
}

body.theme-light .site-cart-promo-input {
	border-color: rgba(15, 23, 42, 0.2);
	background: rgba(255, 255, 255, 0.6);
}

.site-cart-footer {
	margin-top: 12px;
	padding-top: 14px;
	padding-bottom: 8px;
	border-top: 1px solid rgba(15, 23, 42, 0.9);
	flex-shrink: 0;
}

.site-cart-actions {
	margin-top: 10px;
	display: flex;
	gap: 8px;
}

.site-cart-open .site-cart {
	transform: translateX(0);
}

.site-cart-open .site-cart-backdrop {
	opacity: 1;
	pointer-events: auto;
}

/* JS-driven reveal animation for sections/cards */
.js-reveal {
	opacity: 0;
	transform: translateY(18px);
}

.js-reveal.js-reveal-visible {
	opacity: 1;
	transform: none;
	transition: opacity .06s cubic-bezier(.2, .9, .3, 1), transform .06s cubic-bezier(.2, .9, .3, 1);
}

/* Scroll reveal animations */
[data-scroll-section] {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.06s var(--ease-spring), transform 0.06s var(--ease-spring);
}

[data-scroll-section].scroll-visible {
	opacity: 1;
	transform: translateY(0);
}

[data-scroll-item] {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.05s var(--ease-spring), transform 0.05s var(--ease-spring);
}

[data-scroll-item].scroll-visible {
	opacity: 1;
	transform: translateY(0);
}

[data-scroll-item][data-scroll-direction="up"] {
	transform: translateY(50px);
}

[data-scroll-item][data-scroll-direction="up"].scroll-visible {
	transform: translateY(0);
}

[data-scroll-item][data-scroll-direction="down"] {
	transform: translateY(-50px);
}

[data-scroll-item][data-scroll-direction="down"].scroll-visible {
	transform: translateY(0);
}

/* ─── Motion Card System ─── */
.motion-card {
	--lift: -12px;
	--depth-glow: 0 25px 55px rgba(239, 68, 68, 0.35), 0 0 40px rgba(239, 68, 68, 0.15);
	transition:
		transform var(--motion-base) var(--ease-back),
		box-shadow var(--motion-base) var(--ease-smooth),
		border-color var(--motion-base) var(--ease-smooth);
}

.motion-card:hover {
	transform: translateY(var(--lift)) scale(1.025);
	box-shadow: var(--depth-glow);
	border-color: rgba(239, 68, 68, 0.3);
}

body.theme-light .motion-card:hover {
	--depth-glow: 0 20px 45px rgba(15, 23, 42, 0.18), 0 0 30px rgba(185, 28, 28, 0.12);
	border-color: rgba(185, 28, 28, 0.25);
}

/* ─── Hero V2: parallax + sequence ─── */
.hero-sequence {
	position: relative;
	overflow: hidden;
}

.hero-parallax-layer {
	position: absolute;
	inset: -25%;
	z-index: 0;
	pointer-events: none;
	will-change: transform;
	background:
		radial-gradient(ellipse 60% 50% at 20% 30%, rgba(248, 113, 113, 0.18), transparent 55%),
		radial-gradient(ellipse 50% 60% at 80% 70%, rgba(239, 68, 68, 0.12), transparent 50%),
		radial-gradient(ellipse 40% 40% at 50% 50%, rgba(185, 28, 28, 0.08), transparent 60%);
	filter: blur(50px);
	transition: transform 0.04s linear;
}

.hero-aurora {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	--hx: 50%;
	--hy: 45%;
}
.hero-aurora-core {
	position: absolute;
	left: var(--hx);
	top: var(--hy);
	width: clamp(140px, 18vw, 300px);
	height: clamp(140px, 18vw, 300px);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(248, 113, 113, 0.22) 0%, rgba(248, 113, 113, 0.08) 40%, transparent 72%);
	filter: blur(10px);
	transition: left 0.2s linear, top 0.2s linear;
}
.hero-aurora-ring {
	position: absolute;
	left: var(--hx);
	top: var(--hy);
	width: clamp(220px, 32vw, 520px);
	height: clamp(220px, 32vw, 520px);
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(248, 113, 113, 0.18);
	background: radial-gradient(circle, transparent 44%, rgba(248, 113, 113, 0.08) 62%, transparent 73%);
	animation: heroPulseRing 5.5s ease-in-out infinite;
}
@keyframes heroPulseRing {
	0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.94); }
	50% { opacity: 0.9; transform: translate(-50%, -50%) scale(1.08); }
}

body.theme-light .hero-parallax-layer {
	background:
		radial-gradient(ellipse 60% 50% at 20% 30%, rgba(185, 28, 28, 0.1), transparent 55%),
		radial-gradient(ellipse 50% 60% at 80% 70%, rgba(185, 28, 28, 0.06), transparent 50%),
		radial-gradient(ellipse 40% 40% at 50% 50%, rgba(239, 68, 68, 0.05), transparent 60%);
}

.hero-sequence::before {
	content: '';
	position: absolute;
	inset: -30%;
	z-index: 0;
	background:
		conic-gradient(from 0deg at 30% 40%, transparent 0deg, rgba(239, 68, 68, 0.06) 60deg, transparent 120deg),
		conic-gradient(from 180deg at 70% 60%, transparent 0deg, rgba(248, 113, 113, 0.05) 80deg, transparent 160deg);
	filter: blur(60px);
	animation: heroAmbientSpin 18s linear infinite;
	pointer-events: none;
}

body.theme-light .hero-sequence::before {
	background:
		conic-gradient(from 0deg at 30% 40%, transparent 0deg, rgba(185, 28, 28, 0.04) 60deg, transparent 120deg),
		conic-gradient(from 180deg at 70% 60%, transparent 0deg, rgba(185, 28, 28, 0.03) 80deg, transparent 160deg);
}

@keyframes heroAmbientSpin {
	from { transform: rotate(0deg) scale(1.1); }
	to { transform: rotate(360deg) scale(1.1); }
}

.hero-sequence .container {
	position: relative;
	z-index: 1;
}

.hero-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	padding: 6px 14px;
	border-radius: 999px;
	border: 1px solid rgba(239, 68, 68, 0.3);
	background: rgba(239, 68, 68, 0.08);
	margin-bottom: 14px;
	opacity: 0;
	transform: translateY(16px) scale(0.92);
	transition: opacity var(--motion-slow) var(--ease-spring), transform var(--motion-slow) var(--ease-spring);
	transition-delay: 0.15s;
}

body.theme-light .hero-badge {
	border-color: rgba(185, 28, 28, 0.25);
	background: rgba(185, 28, 28, 0.06);
}

.hero-sequence.hero-entered .hero-badge {
	opacity: 1;
	transform: none;
}

.hero-sequence h2 {
	transition-delay: 0.25s !important;
}

.hero-sequence p {
	transition-delay: 0.4s !important;
}

.hero-sequence .hero-cta {
	transition-delay: 0.55s !important;
}

/* ─── CTA enhancements ─── */
.btn:focus-visible,
.select-btn:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 3px;
	box-shadow: 0 0 0 6px rgba(239, 68, 68, 0.15), 0 8px 20px rgba(0, 0, 0, 0.35);
}

body.theme-light .btn:focus-visible,
body.theme-light .select-btn:focus-visible {
	box-shadow: 0 0 0 6px rgba(185, 28, 28, 0.1), 0 8px 20px rgba(15, 23, 42, 0.12);
}

/* ─── Section accent progress bar ─── */
.section-accent {
	position: relative;
	display: inline-block;
	color: #f9fafb;
	letter-spacing: 0.06em;
}
body.theme-light .section-accent {
	color: #111827;
}

.section-accent::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 0;
	background: linear-gradient(90deg, var(--accent), var(--accent-2));
	transition: width var(--motion-xslow) var(--ease-expo);
	border-radius: 2px;
}

.contact .section-accent {
	margin-bottom: 14px;
}

.section-accent.headline-live::after {
	width: 100%;
}

/* ─── Depth layer for immersive cards ─── */
.depth-shine {
	position: relative;
	overflow: hidden;
}

.depth-shine::after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(248, 113, 113, 0.08) 0%, transparent 50%);
	opacity: 0;
	transition: opacity var(--motion-base) var(--ease-smooth);
	pointer-events: none;
	z-index: 0;
}

.depth-shine:hover::after {
	opacity: 1;
}

body.theme-light .depth-shine::after {
	background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(185, 28, 28, 0.06) 0%, transparent 50%);
}

/* ─── Success / Thank You page ─── */
body.success-page main {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: calc(100vh - var(--header-height) - 120px);
	padding: 3rem 1.5rem;
}

.success-main {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

body.success-page .success-card.ultimate-product {
	width: 100%;
	text-align: center;
}

body.success-page .success-card .ultimate-product-content {
	align-items: center;
	text-align: center;
}

.success-title {
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--text);
	margin-bottom: 0.5rem;
	white-space: nowrap;
}

.success-subtitle {
	color: var(--muted);
	font-size: 0.9375rem;
	margin-bottom: 1.75rem;
}

.success-downloads {
	margin-bottom: 1.75rem;
}

.success-download-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.success-dl-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 340px;
	padding: 12px 20px;
}

.success-instruction {
	font-size: 0.8125rem;
	color: var(--muted);
	margin-top: 1rem;
	line-height: 1.5;
}

.success-instruction code {
	background: rgba(239, 68, 68, 0.15);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 0.8em;
}

/* Account page auth */
.account-auth {
	max-width: 360px;
	margin: 0 auto 1.5rem;
}
.account-auth-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.account-auth-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
	margin-bottom: 0.25rem;
}
.account-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	background: transparent;
	border: 1px solid var(--glass);
	color: var(--muted);
	padding: 8px 16px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.9rem;
}
.account-tab:hover,
.account-tab.active {
	background: rgba(239, 68, 68, 0.15);
	color: var(--text);
	border-color: rgba(239, 68, 68, 0.3);
}
.account-field {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.account-field[hidden] {
	display: none !important;
}
.account-field label {
	font-size: 0.8125rem;
	color: var(--muted);
}
.account-field input {
	background: var(--panel);
	border: 1px solid var(--glass);
	border-radius: 8px;
	padding: 10px 14px;
	color: var(--text);
	font-size: 1rem;
}
.account-field input:focus {
	outline: none;
	border-color: var(--accent);
}
.account-password-wrap {
	position: relative;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background: var(--panel);
	border: 1px solid var(--glass);
	border-radius: 8px;
}
.account-password-wrap input {
	flex: 1;
	min-width: 0;
	padding: 10px 44px 10px 14px;
	border: none;
	background: transparent;
	border-radius: 8px;
}
.account-password-wrap input:focus {
	box-shadow: none;
}
.account-password-wrap:focus-within {
	border-color: var(--accent);
}
.account-password-toggle {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 44px;
	background: none;
	border: none;
	color: var(--muted);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 8px 8px 0;
}
.account-password-toggle .icon-password-visibility {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 20px;
	height: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
}
.account-password-toggle .icon-password-visibility.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.account-password-toggle:hover {
	color: var(--accent);
}
.account-error {
	color: #f87171;
	font-size: 0.875rem;
}
.account-error.account-success {
	color: #4ade80;
}
.account-verify-step {
	max-width: 360px;
	margin: 0 auto;
}
.account-check-email {
	text-align: center;
}
.account-check-email-icon {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
	opacity: 0.9;
}
.account-check-email-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
	color: var(--text);
}
.account-check-email-lead {
	color: var(--muted);
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
}
.account-check-email-lead strong {
	color: var(--text);
}
.account-verify-lead {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
.account-verify-lead strong {
	color: var(--text);
}
.account-verify-actions {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
}
.account-check-email .account-divider {
	margin: 1rem 0 0.5rem;
}
.account-verify-back {
	margin-top: 0.5rem;
}
.account-divider {
	text-align: center;
	color: var(--muted);
	font-size: 0.8125rem;
	margin: 0.25rem 0;
}

/* Profile menu (header) */
.profile-menu {
	position: relative;
	display: inline-flex;
	align-items: center;
}
.profile-trigger {
	background: transparent;
	border: 1px solid var(--glass);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--text);
	transition: background 0.2s, border-color 0.2s;
}
.profile-trigger:hover {
	background: rgba(239, 68, 68, 0.15);
	border-color: rgba(239, 68, 68, 0.4);
}
.profile-dropdown-backdrop {
	position: fixed;
	inset: 0;
	z-index: 119;
	background: transparent;
	pointer-events: auto;
}
.profile-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	right: auto;
	transform: translateX(-50%);
	min-width: 210px;
	background: var(--panel, #1a1a1a);
	border: 1px solid var(--glass, rgba(255,255,255,0.08));
	border-radius: 10px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.4);
	z-index: 1000;
	padding: 6px 0;
	display: flex;
	flex-direction: column;
}
.profile-dropdown[hidden] {
	display: none !important;
}
.profile-dropdown-item {
	display: block;
	padding: 10px 16px;
	color: var(--text);
	text-decoration: none;
	font-size: 0.875rem;
	background: transparent;
	border: none;
	text-align: left;
	cursor: pointer;
	width: 100%;
	transition: background 0.15s;
}
.profile-dropdown-item:hover {
	background: rgba(239, 68, 68, 0.12);
}
.profile-dropdown-divider {
	margin-top: 2px;
	border-top: 1px solid var(--glass, rgba(255,255,255,0.06));
	padding-top: 10px;
}
.profile-signout-btn {
	color: #f87171;
	border-top: 1px solid var(--glass, rgba(255,255,255,0.06));
	margin-top: 2px;
	padding-top: 10px;
}

/* Account hub overlay */
body.account-hub-open {
	overflow: hidden;
}
.account-hub {
	position: fixed;
	inset: 0;
	z-index: 1200;
}
.account-hub-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(6px);
}
.account-hub-panel {
	position: absolute;
	top: 90px;
	right: 24px;
	width: min(460px, calc(100vw - 28px));
	max-height: calc(100vh - 130px);
	overflow: auto;
	border-radius: 16px;
	background: linear-gradient(180deg, rgba(18, 18, 26, 0.96), rgba(12, 12, 18, 0.96));
	border: 1px solid rgba(248, 113, 113, 0.25);
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
	padding: 14px 14px 16px;
}
.account-hub-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.account-hub-title {
	margin: 0;
	font-size: 1.05rem;
}
.account-hub-close {
	border: 1px solid var(--glass);
	background: transparent;
	color: var(--muted);
	border-radius: 8px;
	width: 30px;
	height: 30px;
	cursor: pointer;
}
.account-hub-close:hover {
	color: var(--text);
	border-color: rgba(248, 113, 113, 0.35);
}
.account-hub-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 12px;
}
.account-hub-tab {
	border: 1px solid var(--glass);
	background: transparent;
	color: var(--muted);
	padding: 7px 12px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.82rem;
}
.account-hub-tab.active,
.account-hub-tab:hover {
	color: var(--text);
	border-color: rgba(248, 113, 113, 0.35);
	background: rgba(248, 113, 113, 0.12);
}
.account-hub-email {
	margin: 0 0 8px;
	font-weight: 700;
}
.account-hub-copy {
	margin: 0 0 14px;
	color: var(--muted);
	font-size: 0.9rem;
}
.account-hub-purchases {
	display: grid;
	gap: 10px;
}
.account-hub-purchase-item {
	border: 1px solid rgba(148, 163, 184, 0.22);
	background: rgba(15, 23, 42, 0.45);
	border-radius: 10px;
	padding: 10px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.account-hub-actions {
	margin-top: 12px;
}

/* Purchase expiry states */
.purchase-status {
	font-size: 0.75rem;
	padding: 2px 8px;
	border-radius: 6px;
	margin-left: 0.5rem;
	vertical-align: middle;
}
.purchase-status-active {
	background: rgba(34, 197, 94, 0.15);
	color: #4ade80;
}
.purchase-status-expired {
	background: rgba(239, 68, 68, 0.15);
	color: #f87171;
}
.purchase-expired .success-download-list {
	opacity: 0.5;
	pointer-events: none;
}
.btn-disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}
.success-dl-btn-expired {
	background: rgba(255,255,255,0.05);
	color: var(--muted);
}
.purchase-expired-note {
	margin: 10px 0 8px;
	color: var(--muted);
	font-size: 0.88rem;
	line-height: 1.55;
	text-align: left;
}
.purchase-expired-actions {
	margin-top: 6px;
}
.purchase-expired-actions .btn {
	min-height: 42px;
}

.account-dashboard {
	text-align: center;
}
.account-welcome {
	margin-bottom: 0.75rem;
	color: var(--muted);
}
.account-dashboard-tabs {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 0 0 12px;
}
.account-tab-btn {
	border: 1px solid var(--glass);
	background: transparent;
	color: var(--muted);
	padding: 8px 12px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.82rem;
}
.account-tab-btn.active,
.account-tab-btn:hover {
	color: var(--text);
	border-color: rgba(239, 68, 68, 0.35);
	background: rgba(239, 68, 68, 0.14);
}
.account-overview {
	text-align: left;
	background: rgba(15, 23, 42, 0.3);
	border: 1px solid rgba(148, 163, 184, 0.18);
	border-radius: 12px;
	padding: 14px;
}
.account-overview-actions {
	margin-top: 10px;
}
.account-purchase-block {
	margin-bottom: 1.5rem;
	text-align: left;
}
.account-purchase-block h4 {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 0.5rem;
}

.purchase-service-note {
	margin: 0;
	color: var(--muted);
	line-height: 1.6;
}

.purchase-service-note strong {
	color: var(--text);
}

.success-slide-box {
	background: rgba(248, 113, 113, 0.1);
	border: 1px solid rgba(248, 113, 113, 0.25);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-top: 1rem;
	width: 100%;
	box-sizing: border-box;
	animation: successSlideDown 0.5s var(--ease-spring) forwards;
	opacity: 0;
	transform: translateY(-12px);
}

@keyframes successSlideDown {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

body.theme-light .success-slide-box {
	background: rgba(185, 28, 28, 0.06);
	border-color: rgba(185, 28, 28, 0.2);
}

body.theme-light .profile-dropdown {
	background: var(--panel);
	border-color: rgba(185, 28, 28, 0.15);
	box-shadow: 0 8px 32px rgba(15, 23, 42, 0.14);
}

body.theme-light .profile-dropdown-divider,
body.theme-light .profile-signout-btn {
	border-color: rgba(185, 28, 28, 0.12);
}

body.theme-light .account-hub-backdrop {
	background: rgba(15, 23, 42, 0.5);
}

body.theme-light .account-hub-panel {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(254, 242, 242, 0.96));
	border-color: rgba(185, 28, 28, 0.2);
	box-shadow: 0 24px 64px rgba(15, 23, 42, 0.16);
}

body.theme-light .account-hub-close {
	border-color: rgba(185, 28, 28, 0.15);
	color: #4b5563;
}

body.theme-light .account-hub-close:hover {
	border-color: rgba(185, 28, 28, 0.3);
	color: #111827;
}

body.theme-light .account-tab,
body.theme-light .account-tab-btn,
body.theme-light .account-hub-tab {
	border-color: rgba(185, 28, 28, 0.15);
	color: #6b7280;
}

body.theme-light .account-tab:hover,
body.theme-light .account-tab.active,
body.theme-light .account-tab-btn.active,
body.theme-light .account-tab-btn:hover,
body.theme-light .account-hub-tab.active,
body.theme-light .account-hub-tab:hover {
	background: rgba(185, 28, 28, 0.1);
	border-color: rgba(185, 28, 28, 0.25);
	color: #111827;
}

body.theme-light .account-overview {
	background: rgba(255, 255, 255, 0.65);
	border-color: rgba(185, 28, 28, 0.15);
}

body.theme-light .account-hub-purchase-item {
	background: rgba(255, 255, 255, 0.72);
	border-color: rgba(185, 28, 28, 0.15);
}

.success-support-text {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: var(--text);
}

.success-support-text a {
	color: var(--accent);
	text-decoration: none;
}

.success-refresh-link,
a.success-refresh-link,
a.success-refresh-link:link,
a.success-refresh-link:visited {
	color: var(--accent) !important;
	text-decoration: underline;
	text-decoration-color: rgba(239, 68, 68, 0.5);
}

.success-refresh-link:hover,
a.success-refresh-link:hover,
a.success-refresh-link:focus {
	color: #fca5a5 !important;
	text-decoration-color: rgba(252, 165, 165, 0.7);
}

.success-support-text a:hover {
	text-decoration: underline;
}

.success-support-btns {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.success-support-btns .btn {
	padding: 10px 18px;
	font-size: 0.9rem;
}

.how,
.faq,
.contact {
	padding: 36px 0;
}

/* Premium page system */
.page-main {
	padding-top: 8px;
}
.page-hero {
	position: relative;
	padding: 44px 0 20px;
	max-width: 900px;
	overflow: hidden;
}

.page-hero-parallax {
	position: absolute;
	inset: -20%;
	z-index: 0;
	pointer-events: none;
	will-change: transform;
	background:
		radial-gradient(ellipse 55% 45% at 25% 35%, rgba(248, 113, 113, 0.12), transparent 50%),
		radial-gradient(ellipse 45% 55% at 75% 65%, rgba(239, 68, 68, 0.08), transparent 50%);
	filter: blur(40px);
	transition: transform 0.04s linear;
}

body.theme-light .page-hero-parallax {
	background:
		radial-gradient(ellipse 55% 45% at 25% 35%, rgba(185, 28, 28, 0.08), transparent 50%),
		radial-gradient(ellipse 45% 55% at 75% 65%, rgba(185, 28, 28, 0.05), transparent 50%);
}
.page-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #94a3b8;
	margin: 0 0 10px;
}

.page-kicker[data-glow-ready="1"] {
	letter-spacing: 0;
	gap: 0;
}
.page-kicker[data-glow-ready="1"] > *:first-child {
	margin-left: 8px;
}
.page-kicker-text {
	display: inline;
}
body.theme-light .page-kicker {
	color: #6b7280;
}
.page-kicker::before {
	content: "";
	display: inline-block;
	width: 22px;
	height: 1px;
	background: linear-gradient(90deg, var(--accent), transparent);
}
.page-title {
	margin: 0;
	font-size: clamp(1.8rem, 3.8vw, 3rem);
	line-height: 1.3;
	letter-spacing: -0.02em;
	max-width: 36em;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
	color: #f9fafb;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
body.theme-light .page-title {
	color: #111827;
	text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}
.page-lead {
	margin-top: 14px;
	max-width: 68ch;
	font-size: 1rem;
	line-height: 1.65;
	color: #cbd5e1;
}
body.theme-light .page-lead {
	color: #4b5563;
}

.hero-metrics {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}
.hero-metric {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 12px;
	border-radius: 999px;
	border: 1px solid rgba(248, 113, 113, 0.25);
	background: rgba(248, 113, 113, 0.08);
	font-size: 0.82rem;
	color: var(--muted);
}
.hero-metric strong {
	color: var(--text);
	font-weight: 700;
}

.cards {
	gap: 18px;
}
.card {
	border: 1px solid rgba(248, 113, 113, 0.2);
	background: linear-gradient(180deg, rgba(17, 17, 25, 0.86), rgba(9, 9, 14, 0.9));
	box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
	backdrop-filter: blur(4px);
}
.card h4 {
	letter-spacing: -0.01em;
	color: #f9fafb;
}
body.theme-light .card h4 {
	color: #111827;
}
.card .price strong {
	font-size: 1.06em;
}
.card ul li {
	color: #e2e8f0;
}
body.theme-light .card ul li {
	color: #374151;
}
.card:hover {
	border-color: rgba(248, 113, 113, 0.4);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
}

.contact-info,
#contact-form {
	background: rgba(15, 23, 42, 0.35);
	border: 1px solid rgba(248, 113, 113, 0.2);
	border-radius: 14px;
	padding: 18px;
}
#contact-form {
	margin-top: 20px !important;
}
.contact-link {
	border: 1px solid rgba(248, 113, 113, 0.14);
	background: rgba(248, 113, 113, 0.05);
}
.contact-link:hover {
	border-color: rgba(248, 113, 113, 0.38);
}

.faq {
	padding-bottom: 80px;
	margin-top: 90px;
}

.form-label {
	display: block;
	margin-top: 12px;
	margin-bottom: 6px;
	font-weight: 700;
	color: var(--text);
}

input,
textarea {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9));
	color: var(--text);
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body.theme-light input,
body.theme-light textarea {
	background: #ffffff !important;
	background-image: linear-gradient(180deg, #ffffff, #fef9f9) !important;
	border: 1px solid rgba(248, 113, 113, 0.35) !important;
	border-color: rgba(248, 113, 113, 0.35) !important;
	color: #111827 !important;
	box-shadow: inset 0 1px 1px rgba(248, 113, 113, 0.04), 0 0 0 1px rgba(248, 113, 113, 0.06) !important;
	-webkit-box-shadow: inset 0 1px 1px rgba(248, 113, 113, 0.04), 0 0 0 1px rgba(248, 113, 113, 0.06) !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	outline: none !important;
}

/* Override Chrome autofill dark styling in light mode */
body.theme-light input:-webkit-autofill,
body.theme-light input:-webkit-autofill:hover,
body.theme-light input:-webkit-autofill:focus,
body.theme-light input:-webkit-autofill:active,
body.theme-light textarea:-webkit-autofill,
body.theme-light textarea:-webkit-autofill:hover,
body.theme-light textarea:-webkit-autofill:focus,
body.theme-light textarea:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #ffffff inset, inset 0 1px 1px rgba(248, 113, 113, 0.04), 0 0 0 1px rgba(248, 113, 113, 0.06) !important;
	box-shadow: 0 0 0 30px #ffffff inset, inset 0 1px 1px rgba(248, 113, 113, 0.04), 0 0 0 1px rgba(248, 113, 113, 0.06) !important;
	border: 1px solid rgba(248, 113, 113, 0.35) !important;
	-webkit-text-fill-color: #111827 !important;
}

.form-actions {
	margin-top: 14px;
	display: flex;
	gap: 10px;
}

.form-msg {
	margin-top: 10px;
	color: #9ee6cf;
	font-weight: 600;
}

.form-msg.error {
	color: #f87171;
}

body.theme-light .form-msg {
	color: #059669;
}

body.theme-light .form-msg.error {
	color: #dc2626;
}

input:focus,
textarea:focus {
	outline: none;
	border-color: var(--accent);
	box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

body.theme-light input:focus,
body.theme-light textarea:focus {
	border-color: rgba(248, 113, 113, 0.6) !important;
	box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15), inset 0 1px 1px rgba(248, 113, 113, 0.04) !important;
	-webkit-box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15), inset 0 1px 1px rgba(248, 113, 113, 0.04) !important;
	outline: none !important;
}

input::placeholder,
textarea::placeholder {
	color: rgba(176, 179, 198, 0.5);
}

body.theme-light input::placeholder,
body.theme-light textarea::placeholder {
	color: rgba(107, 114, 128, 0.5);
}

/* Contact form inputs - extra specificity for light mode */
body.theme-light #contact-form input,
body.theme-light #contact-form textarea {
	background: #ffffff !important;
	background-image: none !important;
	border: 1px solid rgba(248, 113, 113, 0.4) !important;
	box-shadow: inset 0 1px 2px rgba(254, 202, 202, 0.5), 0 1px 2px rgba(248, 113, 113, 0.08) !important;
	-webkit-box-shadow: inset 0 1px 2px rgba(254, 202, 202, 0.5), 0 1px 2px rgba(248, 113, 113, 0.08) !important;
}

/* Contact info section */
.contact-info {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
	border-radius: 14px;
	padding: 20px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.65);
	border: 1px solid rgba(248, 250, 252, 0.05);
	margin-bottom: 24px;
}

.contact-info h4 {
	margin-bottom: 12px;
	font-size: 1.1rem;
	color: var(--text);
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.9));
	border-radius: 10px;
	border: 1px solid rgba(248, 250, 252, 0.08);
	color: var(--text);
	text-decoration: none;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
	border-color: rgba(248, 113, 113, 0.4);
	text-decoration: none;
}

body.theme-light .contact-link {
	background: linear-gradient(180deg, #ffffff, #f3f4f6);
	border: 1px solid rgba(185, 28, 28, 0.15);
	color: #111827;
}

body.theme-light .contact-link:hover {
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
	border-color: rgba(185, 28, 28, 0.3);
}

.contact-icon {
	font-size: 1.1rem;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.contact-icon svg {
	width: 1.05em;
	height: 1.05em;
	display: block;
}

.site-footer {
	margin-top: 40px;
	padding: 24px 0;
	text-align: center;
	color: var(--muted);
	border-top: 1px solid rgba(239, 68, 68, 0.1);
	background: linear-gradient(180deg, transparent, rgba(2, 1, 6, 0.3));
}

body.theme-light .site-footer {
	border-top: 1px solid rgba(185, 28, 28, 0.08);
	background: linear-gradient(180deg, transparent, rgba(254, 242, 242, 0.4));
}

/* Entrance animations triggered by JS adding .is-loaded to body */
body.is-loaded .card {
	transform: translateY(0);
	opacity: 1;
	transition-delay: calc(var(--i) * 12ms);
}

body.is-loaded .hero h2,
body.is-loaded .hero p,
body.is-loaded .hero-cta {
	opacity: 1;
	transform: none;
	transition: all .06s cubic-bezier(.2, .9, .3, 1);
}

.hero h2,
.hero p,
.hero-cta,
nav a {
	opacity: 0;
	transform: translateY(8px);
}

nav a {
	transition: transform .06s ease, opacity .06s ease;
}

body.is-loaded nav a {
	opacity: 1;
	transform: none;
}

/* Header hide state */
.site-header.hide {
	transform: translateY(-120%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

/* FAQ: panels using theme vars */
.faq details {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
	padding: 12px 16px;
	border-radius: 10px;
	margin-bottom: 10px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
	color: var(--text);
	border: 1px solid rgba(248, 250, 252, 0.04);
}

.faq details summary {
	cursor: pointer;
	font-weight: 700;
	color: var(--text);
}

.faq details p {
	color: var(--muted);
	margin-top: 8px;
}

@media (prefers-reduced-motion: reduce) {

	.site-header,
	.site-header.hide {
		transition: none;
		transform: none;
	}
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
	}

	/* Ensure animation-revealed elements are visible */
	.hero h2, .hero p, .hero-cta, nav a, .header-right a.nav-ultimate,
	.card, .js-reveal, .headline-reveal,
	[data-scroll-section], [data-scroll-item],
	.hero-badge, .how .how-step-badge {
		opacity: 1 !important;
		transform: none !important;
		filter: none !important;
	}

	/* Hide purely decorative motion layers */
	.hero-parallax-layer,
	.hero-sequence::before,
	.page-hero-parallax,
	.cursor-halo,
	.depth-shine::after {
		display: none !important;
	}

	/* Section accents show immediately */
	.section-accent::after {
		width: 100% !important;
	}
}

/* ─── Low-tier device overrides ─── */
body[data-motion-tier="low"] .hero-parallax-layer,
body[data-motion-tier="low"] .hero-sequence::before,
body[data-motion-tier="low"] .page-hero-parallax,
body[data-motion-tier="low"] .depth-shine::after {
	display: none;
}

body[data-motion-tier="low"] .card,
body[data-motion-tier="low"] .how-step,
body[data-motion-tier="low"] .faq details {
	will-change: auto;
	transform-style: flat;
}

body[data-motion-tier="low"] .cursor-halo {
	display: none;
}

/* Prevent first-paint flash before loader appears */
html.site-preload body > * {
	visibility: hidden;
}
html.site-preload .site-load-overlay,
html.site-preload .site-load-overlay * {
	visibility: visible;
}
html.site-preload .ultimate-loading-overlay,
html.site-preload .ultimate-loading-overlay * {
	visibility: visible;
}

/* Smooth mobile layout improvements */
@media (max-width: 600px) {
	/* Root mobile adjustments */
	:root {
		--header-height: 72px;
	}

	html {
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
	}

	body {
		padding-top: var(--header-height);
		-webkit-font-smoothing: antialiased;
		text-rendering: optimizeLegibility;
	}

	/* Container improvements */
	.container {
		padding: 20px 16px;
		max-width: 100%;
	}

	/* Header - compact with hamburger menu */
	.site-header {
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
	}

	.header-inner {
		flex-wrap: wrap;
		padding: 12px 16px;
		min-height: auto;
		position: relative;
	}

	.logo-image {
		width: 100%;
		height: 100%;
	}

	.logo-link {
		width: 103px;
		height: 32px;
	}

	.cart-toggle.cart-toggle-mobile {
		display: flex !important;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	.header-right {
		display: none;
		flex-direction: column;
		width: 100%;
		gap: 0;
		margin-left: 0;
	}

	.header-right.mobile-open {
		display: flex;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		padding: 12px 16px 24px;
		background: linear-gradient(180deg, rgba(15, 23, 42, 0.98) 0%, rgba(5, 5, 9, 0.98) 100%);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		border-top: 1px solid rgba(239, 68, 68, 0.15);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(239, 68, 68, 0.08);
		border-radius: 0 0 16px 16px;
		z-index: 10;
		animation: mobile-menu-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
	}

	@keyframes mobile-menu-in {
		from { opacity: 0; transform: translateY(-8px); }
		to { opacity: 1; transform: translateY(0); }
	}

	body.theme-light .header-right.mobile-open {
		background: linear-gradient(180deg, rgba(254, 242, 242, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
		border-top-color: rgba(185, 28, 28, 0.2);
		box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(185, 28, 28, 0.08);
	}

	.header-right.mobile-open .nav-left {
		gap: 4px;
	}

	.header-right .nav-left {
		flex-direction: column;
		width: 100%;
		gap: 0;
	}

	.header-right .nav-left a,
	.header-right .nav-center-link {
		display: flex;
		align-items: center;
		width: 100%;
		padding: 14px 16px;
		text-align: left;
		border-radius: 10px;
		margin: 0;
		position: relative;
		transition: background 0.2s ease, transform 0.2s ease;
	}

	.header-right .nav-left a::before,
	.header-right .nav-center-link::before {
		content: '';
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		width: 3px;
		height: 0;
		border-radius: 0 2px 2px 0;
		background: linear-gradient(180deg, var(--accent), var(--accent-2));
		transition: height 0.2s ease;
	}

	.header-right .nav-left a:hover,
	.header-right .nav-center-link:hover {
		background: rgba(239, 68, 68, 0.08);
	}

	body.theme-light .header-right .nav-left a:hover,
	body.theme-light .header-right .nav-center-link:hover {
		background: rgba(185, 28, 28, 0.06);
	}

	.header-right .nav-left a:hover::before,
	.header-right .nav-center-link:hover::before {
		height: 60%;
	}

	.header-right .nav-center-link {
		margin: 0;
	}

	.header-right .nav-center-link::before {
		height: 60%;
	}

	.header-right.mobile-open .header-actions {
		margin-top: 12px;
		padding-top: 12px;
		position: relative;
	}

	.header-right.mobile-open .header-actions::before {
		content: '';
		position: absolute;
		top: 0;
		left: 10%;
		right: 10%;
		height: 1px;
		background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
		pointer-events: none;
	}

	body.theme-light .header-right.mobile-open .header-actions::before {
		background: linear-gradient(90deg, transparent, rgba(185, 28, 28, 0.3), transparent);
	}

	.header-actions {
		width: 100%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		padding-top: 0;
	}

	.header-actions a.btn {
		flex: unset;
		width: 100%;
		min-width: unset;
		max-width: unset;
		text-align: center;
	}

	.header-actions .cart-toggle,
	.header-actions .theme-toggle {
		grid-column: span 1;
		border-radius: 12px;
	}

	.header-right.mobile-open .header-actions .cart-toggle,
	.header-right.mobile-open .header-actions .theme-toggle {
		background: rgba(15, 23, 42, 0.6);
		border: 1px solid rgba(239, 68, 68, 0.15);
	}

	body.theme-light .header-right.mobile-open .header-actions .cart-toggle,
	body.theme-light .header-right.mobile-open .header-actions .theme-toggle {
		background: rgba(255, 255, 255, 0.7);
		border-color: rgba(185, 28, 28, 0.18);
	}

	/* Navigation - better touch targets */
	nav a {
		font-size: 0.875rem;
		padding: 12px 16px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		touch-action: manipulation;
	}

	nav a:active,
	.header-right a.nav-ultimate:active {
		transform: scale(0.96);
	}

	/* Buttons - larger touch targets */
	.btn {
		padding: 14px 20px;
		font-size: 0.9375rem;
		min-height: 48px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		touch-action: manipulation;
	}

	.btn:active {
		transform: scale(0.97);
	}

	.cart-toggle,
	.theme-toggle {
		min-height: 44px;
		min-width: 44px;
		padding: 0 14px;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		touch-action: manipulation;
	}

	.cart-toggle:active,
	.theme-toggle:active {
		transform: scale(0.95);
	}

	/* Hero section */
	.hero {
		padding: calc(40px + var(--header-height)) 0 32px;
	}

	.hero h2 {
		font-size: 1.5rem;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.hero p {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.hero-cta {
		margin-top: 20px;
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.hero-cta .btn {
		width: 100%;
	}

	/* Cards - smoother animations */
	.cards,
	.zen-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.card {
		padding: 20px;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
	}

	.card:active {
		transform: scale(0.98);
	}

	.card h4 {
		font-size: 1.0625rem;
		line-height: 1.4;
	}

	.card p,
	.card ul {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	.select-btn {
		min-height: 48px;
		padding: 14px 16px;
		font-size: 0.9375rem;
		touch-action: manipulation;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.select-btn:active {
		transform: scale(0.97);
	}

	/* Contact section */
	.contact {
		padding: 32px 0;
	}

	.contact h3 {
		font-size: 1.375rem;
		margin-bottom: 20px;
	}

	.contact-info {
		padding: 20px;
		margin-bottom: 24px;
		border-radius: 16px;
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	.contact-info h4 {
		font-size: 1.125rem;
		margin-bottom: 14px;
	}

	.contact-methods {
		gap: 12px;
	}

	.contact-link {
		padding: 14px 16px;
		font-size: 0.9375rem;
		min-height: 52px;
		border-radius: 12px;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
		touch-action: manipulation;
	}

	.contact-link:active {
		transform: scale(0.98);
	}

	.contact-link span:not(.contact-icon) {
		word-break: break-word;
		line-height: 1.5;
	}

	.contact-icon {
		font-size: 1.25rem;
		flex-shrink: 0;
	}

	/* Forms - better mobile experience */
	input,
	textarea {
		padding: 14px 16px;
		font-size: 1rem;
		border-radius: 12px;
		min-height: 48px;
		-webkit-appearance: none;
		appearance: none;
		transition: all 0.25s ease;
		touch-action: manipulation;
	}

	body.theme-light input,
	body.theme-light textarea {
		border: 1px solid rgba(248, 113, 113, 0.35) !important;
		box-shadow: inset 0 1px 1px rgba(248, 113, 113, 0.04), 0 0 0 1px rgba(248, 113, 113, 0.06) !important;
	}

	input:focus,
	textarea:focus {
		outline: none;
		border-color: var(--accent);
		box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
	}

	body.theme-light input:focus,
	body.theme-light textarea:focus {
		border-color: rgba(248, 113, 113, 0.6) !important;
		box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15), inset 0 1px 1px rgba(248, 113, 113, 0.04) !important;
	}

	textarea {
		min-height: 120px;
		resize: vertical;
	}

	.form-label {
		font-size: 0.9375rem;
		margin-top: 16px;
		margin-bottom: 8px;
	}

	.form-actions {
		flex-direction: column;
		gap: 12px;
		margin-top: 20px;
	}

	.form-actions .btn {
		width: 100%;
	}

	/* How it works */
	.how {
		padding: 32px 0;
	}

	.how h3 {
		font-size: 1.375rem;
		margin-bottom: 20px;
	}

	.how-layout {
		gap: 18px;
	}

	.how-intro {
		padding: 20px;
		border-radius: 16px;
	}

	.how-step {
		padding: 16px;
		flex-direction: row;
		gap: 14px;
		border-radius: 14px;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
	}

	.how-step:active {
		transform: scale(0.98);
	}

	.how-step-badge {
		width: 32px;
		height: 32px;
		font-size: 0.875rem;
		flex-shrink: 0;
	}

	.how-step h4 {
		font-size: 1rem;
		margin-bottom: 6px;
	}

	.how-step p {
		font-size: 0.9375rem;
		line-height: 1.6;
	}

	/* FAQ */
	.faq {
		padding: 32px 0 60px;
	}

	.faq h3 {
		font-size: 1.375rem;
		margin-bottom: 20px;
	}

	.faq-vertical {
		gap: 12px;
	}

	.faq details {
		padding: 14px 16px;
		border-radius: 12px;
		transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.faq details summary {
		font-size: 0.9375rem;
		padding-right: 8px;
		touch-action: manipulation;
	}

	.faq details p {
		font-size: 0.9375rem;
		line-height: 1.6;
		margin-top: 10px;
	}

	/* Services section */
	.services {
		padding: 32px 0 40px;
	}

	.services h3 {
		font-size: 1.375rem;
		margin-bottom: 20px;
	}

	/* Site cart - full width on mobile */
	.site-cart {
		width: 100%;
		max-width: 100%;
		padding: 20px 16px;
		border-radius: 0;
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.site-cart-header {
		margin-bottom: 16px;
	}

	.site-cart-header h2 {
		font-size: 1.25rem;
	}

	.site-cart-items li {
		padding: 12px 14px;
		min-height: 60px;
	}

	.site-cart-item-remove {
		min-width: 44px;
		min-height: 44px;
		touch-action: manipulation;
	}

	.site-cart-actions {
		flex-direction: column;
		gap: 10px;
	}

	.site-cart-actions .btn {
		width: 100%;
	}

	/* Footer */
	.site-footer {
		padding: 24px 0;
		font-size: 0.875rem;
	}

	/* Price display */
	.price {
		font-size: 1.125rem;
		margin: 12px 0;
	}

	/* Success page mobile */
	body.success-page main {
		padding: 2rem 1rem;
		min-height: calc(100vh - var(--header-height) - 80px);
	}

	.success-card {
		padding: 1.75rem 1.25rem;
		border-radius: 16px;
	}

	.success-title {
		font-size: clamp(1.1rem, 5.5vw, 1.5rem);
	}

	.success-slide-box {
		padding: 1rem 1.25rem;
	}

	.success-support-btns {
		flex-direction: column;
	}

	.success-support-btns .btn {
		width: 100%;
	}

	.success-dl-btn {
		max-width: none;
	}

	/* Smooth scroll reveal adjustments */
	[data-scroll-item],
	[data-scroll-section] {
		transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	}

	/* Reduce motion for better performance on mobile */
	@media (prefers-reduced-motion: no-preference) {
		.card:hover {
			transform: translateY(-8px) scale(1.02);
		}

		.how-step:hover {
			transform: translateX(4px) scale(1.01);
		}
	}

	/* Mobile nav/account ergonomics */
	.header-actions {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 8px;
	}

	.header-actions a.btn {
		flex: 1 1 calc(50% - 10px);
		min-width: 126px;
		max-width: none;
	}

	.profile-trigger,
	.cart-toggle,
	.theme-toggle {
		min-width: 48px;
		min-height: 48px;
	}

	.profile-dropdown {
		left: 50%;
		right: auto;
		transform: translateX(-50%);
		min-width: min(88vw, 260px);
	}

	.profile-dropdown-item {
		padding: 14px 16px;
		font-size: 0.94rem;
		min-height: 48px;
	}

	.account-auth {
		max-width: 100%;
	}

	.account-tab {
		min-height: 48px;
		padding: 12px 16px;
	}

	.account-tab-btn {
		min-height: 48px;
		padding: 12px 16px;
	}

	.account-dashboard-tabs {
		display: grid;
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.success-support-text {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

@media (max-width: 768px) {
	.account-purchase-block {
		word-break: break-word;
	}

	.site-cart-item-name {
		max-width: clamp(120px, 44vw, 300px);
	}
}

@media (max-width: 480px) {
	textarea {
		min-height: 140px;
	}

	.account-password-toggle {
		min-height: 44px;
	}
}