/* ==========================================================================
   WizzySocial Landing – base styles
   Scoped under .wzs-landing to avoid theme conflicts.
   ========================================================================== */

.wzs-landing {
	--wzs-bg: #0b0b14;
	--wzs-bg-alt: #11111d;
	--wzs-surface: #181828;
	--wzs-text: #f5f5fa;
	--wzs-text-dim: #a5a5b8;
	--wzs-primary: #e1306c;
	--wzs-primary-2: #833ab4;
	--wzs-primary-3: #f77737;
	--wzs-border: rgba(255,255,255,0.08);
	--wzs-radius: 16px;
	--wzs-radius-sm: 10px;
	--wzs-shadow: 0 20px 60px rgba(0,0,0,0.35);

	color: var(--wzs-text);
	background: var(--wzs-bg);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.6;
	font-size: 16px;
}

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

.wzs-landing h1,
.wzs-landing h2,
.wzs-landing h3,
.wzs-landing h4 {
	margin: 0 0 .5em !important;
	padding: 0 !important;
	line-height: 1.2 !important;
	font-weight: 700 !important;
	color: #fff !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	text-transform: none !important;
	letter-spacing: normal;
}
.wzs-landing p { margin: 0 0 1em; }

/* Layout */
.wzs-container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}
.wzs-container--narrow { max-width: 820px; }

.wzs-section {
	padding: 96px 0;
}
.wzs-section:nth-child(even) { background: var(--wzs-bg-alt); }

.wzs-section__title {
	font-size: clamp(28px, 4vw, 42px) !important;
	color: #fff !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-align: center;
	margin: 0 0 16px !important;
	padding: 0 !important;
	text-transform: none !important;
	letter-spacing: -0.01em !important;
}
.wzs-section__lead {
	text-align: center;
	color: var(--wzs-text-dim) !important;
	font-size: 16px !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	line-height: 1.6 !important;
	max-width: 640px;
	margin: 0 auto 48px !important;
}

/* Buttons */
.wzs-btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
	font-size: 15px;
}
.wzs-btn:hover { transform: translateY(-1px); }
.wzs-btn--primary {
	background: linear-gradient(135deg, var(--wzs-primary-3), var(--wzs-primary), var(--wzs-primary-2));
	color: #fff;
	box-shadow: 0 10px 30px rgba(225,48,108,.35);
}
.wzs-btn--ghost {
	background: transparent;
	color: #fff !important;
	border-color: var(--wzs-border);
}
.wzs-btn--lg { padding: 18px 36px; font-size: 17px; }
.wzs-btn--block { display: block; text-align: center; }

/* Grids */
.wzs-grid { display: grid; gap: 24px; }
.wzs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.wzs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.wzs-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
	.wzs-grid--3,
	.wzs-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.wzs-grid--2,
	.wzs-grid--3,
	.wzs-grid--4 { grid-template-columns: 1fr; }
	.wzs-section { padding: 64px 0; }
}

/* Cards */
.wzs-card {
	background: var(--wzs-surface);
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	padding: 28px;
}
.wzs-card__icon { font-size: 32px; margin-bottom: 12px; }
.wzs-card__title { font-size: 18px; }
.wzs-card__text { color: var(--wzs-text-dim); margin: 0; }

/* ==========================================================================
   Hero
   ========================================================================== */
.wzs-hero {
	position: relative;
	padding: 120px 0 100px;
	overflow: hidden;
	background: radial-gradient(ellipse at top, #14142a 0%, var(--wzs-bg) 60%);
}

/* Animated background orbs + grid */
.wzs-hero__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.wzs-hero__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: .55;
	animation: wzsFloat 18s ease-in-out infinite;
}
.wzs-hero__orb--1 {
	width: 520px; height: 520px;
	background: radial-gradient(circle, #e1306c 0%, transparent 70%);
	top: -120px; left: -120px;
}
.wzs-hero__orb--2 {
	width: 460px; height: 460px;
	background: radial-gradient(circle, #833ab4 0%, transparent 70%);
	top: 40%; right: -140px;
	animation-delay: -6s;
}
.wzs-hero__orb--3 {
	width: 380px; height: 380px;
	background: radial-gradient(circle, #f77737 0%, transparent 70%);
	bottom: -120px; left: 30%;
	animation-delay: -12s;
}
.wzs-hero__grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}
@keyframes wzsFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50%      { transform: translate(30px, -20px) scale(1.08); }
}

/* Two-column layout */
.wzs-hero__container {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 64px;
	align-items: center;
}
@media (max-width: 980px) {
	.wzs-hero__container { grid-template-columns: 1fr; gap: 56px; text-align: center; }
	.wzs-hero { padding: 88px 0 72px; }
}

/* Eyebrow */
.wzs-eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 8px;
	padding: 8px 16px !important;
	border-radius: 999px !important;
	background: rgba(225,48,108,.10) !important;
	border: 1px solid rgba(225,48,108,.25) !important;
	color: #ff8cb4 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
	line-height: 1 !important;
	text-transform: none !important;
	letter-spacing: .02em !important;
	text-decoration: none !important;
	margin-bottom: 28px;
	backdrop-filter: blur(8px);
}
.wzs-eyebrow__dot {
	display: inline-block !important;
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	background: #ff6ba1 !important;
	box-shadow: 0 0 0 0 rgba(255,107,161,.6);
	animation: wzsPulse 2s infinite;
	flex-shrink: 0;
}
@keyframes wzsPulse {
	0%   { box-shadow: 0 0 0 0 rgba(255,107,161,.6); }
	70%  { box-shadow: 0 0 0 10px rgba(255,107,161,0); }
	100% { box-shadow: 0 0 0 0 rgba(255,107,161,0); }
}

/* Title */
.wzs-hero__title {
	font-size: clamp(38px, 5.6vw, 68px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
	margin-bottom: 24px;
}
.wzs-hero__title-accent {
	position: relative;
	display: inline-block;
	background: linear-gradient(135deg, #f77737 0%, #e1306c 50%, #833ab4 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wzs-hero__title-accent::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 8px;
	background: linear-gradient(90deg, transparent, rgba(225,48,108,.5), transparent);
	filter: blur(6px);
}

/* Subtitle */
.wzs-hero__subtitle {
	font-size: 19px;
	line-height: 1.6;
	color: var(--wzs-text-dim);
	max-width: 560px;
	margin: 0 0 36px;
}
@media (max-width: 980px) { .wzs-hero__subtitle { margin-left: auto; margin-right: auto; } }

/* CTA row */
.wzs-hero__cta {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 16px;
}
@media (max-width: 980px) { .wzs-hero__cta { justify-content: center; } }

.wzs-btn__arrow {
	display: inline-block;
	margin-left: 8px;
	transition: transform .2s ease;
}
.wzs-btn:hover .wzs-btn__arrow { transform: translateX(4px); }

.wzs-hero__sub {
	color: var(--wzs-text-dim);
	font-size: 13px;
	margin: 0 0 36px;
	display: flex;
	align-items: center;
	gap: 6px;
}
@media (max-width: 980px) { .wzs-hero__sub { justify-content: center; } }

/* Trust block */
.wzs-hero__trust {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-top: 28px;
	border-top: 1px solid var(--wzs-border);
}
.wzs-hero__rating {
	display: flex;
	align-items: center;
	gap: 14px;
}
@media (max-width: 980px) { .wzs-hero__rating { justify-content: center; } }
.wzs-hero__stars {
	color: #ffb347;
	font-size: 20px;
	letter-spacing: 2px;
	text-shadow: 0 0 20px rgba(255,179,71,.5);
}
.wzs-hero__rating-text strong {
	color: #fff;
	font-size: 16px;
	margin-right: 6px;
}
.wzs-hero__rating-text span {
	color: var(--wzs-text-dim);
	font-size: 14px;
}
.wzs-hero__badges {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
@media (max-width: 980px) { .wzs-hero__badges { justify-content: center; } }
.wzs-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(255,255,255,0.04);
	border: 1px solid var(--wzs-border);
	border-radius: 999px;
	font-size: 13px;
	color: var(--wzs-text-dim);
	backdrop-filter: blur(8px);
}
.wzs-hero__badge-icon {
	color: #7ee787;
	font-weight: 700;
}

/* Visual / mockup */
.wzs-hero__visual {
	position: relative;
}
.wzs-hero__mock {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow:
		0 30px 80px rgba(0,0,0,.5),
		0 0 0 1px rgba(255,255,255,.06),
		0 0 60px rgba(225,48,108,.15);
	transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
	transition: transform .4s ease;
}
.wzs-hero__mock:hover {
	transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.wzs-hero__mock svg {
	display: block;
	width: 100%;
	height: auto;
}
@media (max-width: 980px) {
	.wzs-hero__mock { transform: none; max-width: 560px; margin: 0 auto; }
}

/* Floating cards */
.wzs-hero__float {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	background: rgba(24,24,40,.92);
	border: 1px solid var(--wzs-border);
	border-radius: 14px;
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 50px rgba(0,0,0,.4);
	animation: wzsFloatCard 4s ease-in-out infinite;
}
.wzs-hero__float--1 {
	top: 12%;
	left: -32px;
	animation-delay: 0s;
}
.wzs-hero__float--2 {
	bottom: 14%;
	right: -24px;
	animation-delay: -2s;
}
@keyframes wzsFloatCard {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}
.wzs-hero__float-icon {
	width: 40px; height: 40px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: linear-gradient(135deg, rgba(247,119,55,.2), rgba(131,58,180,.2));
	font-size: 20px;
}
.wzs-hero__float-body { display: flex; flex-direction: column; line-height: 1.25; }
.wzs-hero__float-body strong { color: #fff; font-size: 15px; }
.wzs-hero__float-body span { color: var(--wzs-text-dim); font-size: 12px; }

@media (max-width: 560px) {
	.wzs-hero__float--1 { left: -8px; top: 6%; }
	.wzs-hero__float--2 { right: -8px; bottom: 6%; }
	.wzs-hero__float { padding: 10px 14px; }
	.wzs-hero__float-icon { width: 34px; height: 34px; font-size: 16px; }
}

/* ==========================================================================
   Stats
   ========================================================================== */
.wzs-stats {
	position: relative;
	overflow: hidden;
}
.wzs-stats__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 30%, rgba(225,48,108,.12), transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(131,58,180,.12), transparent 50%);
	pointer-events: none;
}
.wzs-stats .wzs-container { position: relative; z-index: 1; }

.wzs-stats__header {
	text-align: center;
	margin-bottom: 56px;
}
.wzs-stats__header .wzs-eyebrow { margin-bottom: 20px; }

.wzs-stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 960px) { .wzs-stats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .wzs-stats__grid { grid-template-columns: 1fr; } }

.wzs-stat {
	position: relative;
	padding: 36px 28px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	text-align: center;
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wzs-stat::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--wzs-primary), transparent);
	opacity: 0;
	transition: opacity .25s ease;
}
.wzs-stat:hover {
	transform: translateY(-4px);
	border-color: rgba(225,48,108,.35);
	box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 40px rgba(225,48,108,.08);
}
.wzs-stat:hover::before { opacity: 1; }

.wzs-stat__icon {
	display: inline-grid;
	place-items: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(247,119,55,.15), rgba(131,58,180,.15));
	border: 1px solid rgba(225,48,108,.25);
	font-size: 26px;
}

.wzs-stat__value {
	font-size: clamp(40px, 5vw, 56px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #fff 0%, #f77737 60%, #e1306c 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 10px;
}
.wzs-stat__suffix {
	background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.wzs-stat__label {
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 4px;
}
.wzs-stat__note {
	color: var(--wzs-text-dim);
	font-size: 13px;
}

/* Testimonials */
.wzs-testimonial {
	background: var(--wzs-surface);
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	padding: 32px;
	margin: 0;
}
.wzs-testimonial__stars { color: #ffb347; font-size: 18px; margin-bottom: 12px; }
.wzs-testimonial__text { font-size: 17px; margin: 0 0 20px; font-style: italic; }
.wzs-testimonial__author strong { display: block; }
.wzs-testimonial__author span { color: var(--wzs-text-dim); font-size: 14px; }

/* Pricing */
.wzs-toggle {
	display: inline-flex;
	background: var(--wzs-surface);
	border: 1px solid var(--wzs-border);
	border-radius: 999px;
	padding: 4px;
	margin: 0 auto 48px;
	gap: 4px;
}
.wzs-pricing .wzs-container { text-align: center; }
.wzs-toggle__btn {
	border: none;
	background: transparent;
	color: var(--wzs-text-dim);
	padding: 10px 22px;
	border-radius: 999px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
}
.wzs-toggle__btn.is-active {
	background: linear-gradient(135deg, var(--wzs-primary-3), var(--wzs-primary), var(--wzs-primary-2));
	color: #fff;
}

.wzs-pricing__grid { text-align: left; margin-top: 0; }
.wzs-plan {
	position: relative;
	background: var(--wzs-surface);
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	padding: 36px 28px;
	display: flex;
	flex-direction: column;
}
.wzs-plan.is-featured {
	border-color: transparent;
	background:
		linear-gradient(var(--wzs-surface), var(--wzs-surface)) padding-box,
		linear-gradient(135deg, var(--wzs-primary-3), var(--wzs-primary), var(--wzs-primary-2)) border-box;
	border: 2px solid transparent;
	transform: translateY(-8px);
	box-shadow: var(--wzs-shadow);
}
.wzs-plan__badge {
	position: absolute;
	top: -12px; left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, var(--wzs-primary-3), var(--wzs-primary), var(--wzs-primary-2));
	color: #fff;
	padding: 6px 16px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.wzs-plan__name { font-size: 14px; letter-spacing: .12em; color: var(--wzs-text-dim); }
.wzs-plan__actions { color: var(--wzs-text-dim); font-size: 14px; }
.wzs-plan__price { position: relative; margin: 16px 0 20px; min-height: 90px; }
.wzs-plan__price-block { display: none !important; }
.wzs-plan__price-block.is-active { display: block !important; }
.wzs-plan__amount { font-size: 48px; font-weight: 800; }
.wzs-plan__per { color: var(--wzs-text-dim); margin-left: 4px; }
.wzs-plan__save { color: #7ee787; font-size: 13px; margin-top: 4px; min-height: 1em; }
.wzs-plan__features {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 0 24px !important;
	flex: 1;
}
.wzs-plan__features li {
	list-style: none !important;
	padding: 8px 0 8px 24px !important;
	margin: 0 !important;
	border-bottom: 1px solid var(--wzs-border);
	position: relative;
	color: var(--wzs-text-dim);
	font-size: 14px;
}
.wzs-plan__features li::marker { content: "" !important; color: transparent !important; font-size: 0 !important; }
.wzs-plan__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--wzs-primary);
	font-weight: 700;
}

/* FAQ */
.wzs-faq__list { display: flex; flex-direction: column; gap: 12px; }
.wzs-faq__item {
	background: var(--wzs-surface);
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius-sm);
	padding: 18px 22px;
}
.wzs-faq__q {
	cursor: pointer;
	font-weight: 600;
	list-style: none;
	position: relative;
	padding-right: 28px;
}
.wzs-faq__q::-webkit-details-marker { display: none; }
.wzs-faq__q::after {
	content: "+";
	position: absolute;
	right: 0;
	color: var(--wzs-primary);
	font-size: 22px;
	line-height: 1;
}
.wzs-faq__item[open] .wzs-faq__q::after { content: "−"; }
.wzs-faq__a { margin-top: 10px; color: var(--wzs-text-dim); }

/* CTA */
.wzs-cta { text-align: center; }
.wzs-cta__title { font-size: clamp(28px, 4vw, 40px); }
.wzs-cta__subtitle { color: var(--wzs-text-dim); margin-bottom: 32px; }
.wzs-cta__buttons { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Features – Timeline
   ========================================================================== */
.wzs-features {
	position: relative;
	overflow: hidden;
}
.wzs-features::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 85% 15%, rgba(131,58,180,.10), transparent 55%),
		radial-gradient(circle at 15% 85%, rgba(247,119,55,.08), transparent 55%);
	pointer-events: none;
}
.wzs-features .wzs-container { position: relative; z-index: 1; }

.wzs-features__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 72px;
}
.wzs-features__header .wzs-eyebrow { margin-bottom: 20px; }

/* Timeline list */
.wzs-timeline {
	list-style: none;
	padding: 0;
	margin: 0;
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.wzs-timeline__item {
	position: relative;
	display: grid;
	grid-template-columns: 72px 1fr;
	gap: 28px;
	padding-bottom: 36px;
}
.wzs-timeline__item:last-child { padding-bottom: 0; }

/* Marker column (dot + connecting line) */
.wzs-timeline__marker {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.wzs-timeline__dot {
	position: relative;
	width: 64px;
	height: 64px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(247,119,55,.18), rgba(131,58,180,.18));
	border: 1px solid rgba(225,48,108,.35);
	box-shadow: 0 10px 30px rgba(225,48,108,.15);
	z-index: 2;
	flex-shrink: 0;
	transition: transform .25s ease, box-shadow .25s ease;
}
.wzs-timeline__item:hover .wzs-timeline__dot {
	transform: scale(1.08);
	box-shadow: 0 14px 40px rgba(225,48,108,.3);
}
.wzs-timeline__dot::before {
	content: "";
	position: absolute;
	inset: -4px;
	border-radius: 20px;
	border: 1px solid rgba(225,48,108,.2);
	opacity: 0;
	transition: opacity .25s ease;
}
.wzs-timeline__item:hover .wzs-timeline__dot::before { opacity: 1; }
.wzs-timeline__icon {
	font-size: 28px;
	line-height: 1;
}

.wzs-timeline__line {
	position: absolute;
	top: 64px;
	bottom: -36px;
	left: 50%;
	width: 2px;
	transform: translateX(-50%);
	background: linear-gradient(
		180deg,
		rgba(225,48,108,.5) 0%,
		rgba(131,58,180,.35) 50%,
		rgba(131,58,180,.1) 100%
	);
}

/* Card */
.wzs-timeline__card {
	position: relative;
	padding: 28px 32px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wzs-timeline__card::before {
	content: "";
	position: absolute;
	top: 28px;
	left: -9px;
	width: 16px;
	height: 16px;
	background: inherit;
	border-left: 1px solid var(--wzs-border);
	border-bottom: 1px solid var(--wzs-border);
	transform: rotate(45deg);
	transition: border-color .25s ease;
}
.wzs-timeline__item:hover .wzs-timeline__card {
	transform: translateX(4px);
	border-color: rgba(225,48,108,.35);
	box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 40px rgba(225,48,108,.08);
}
.wzs-timeline__item:hover .wzs-timeline__card::before {
	border-left-color: rgba(225,48,108,.35);
	border-bottom-color: rgba(225,48,108,.35);
}

.wzs-timeline__step {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	color: #ff8cb4;
	background: rgba(225,48,108,.1);
	padding: 4px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
	border: 1px solid rgba(225,48,108,.2);
}

.wzs-timeline__title {
	font-size: 22px;
	color: #fff;
	margin-bottom: 10px;
}

.wzs-timeline__text {
	color: var(--wzs-text-dim);
	line-height: 1.65;
	margin-bottom: 16px;
}

.wzs-timeline__meta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #7ee787;
	font-weight: 500;
}
.wzs-timeline__meta-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #7ee787;
	box-shadow: 0 0 10px rgba(126,231,135,.6);
}

/* Mobile */
@media (max-width: 640px) {
	.wzs-timeline__item {
		grid-template-columns: 52px 1fr;
		gap: 18px;
		padding-bottom: 28px;
	}
	.wzs-timeline__dot {
		width: 52px;
		height: 52px;
		border-radius: 14px;
	}
	.wzs-timeline__icon { font-size: 22px; }
	.wzs-timeline__line {
		top: 52px;
		bottom: -28px;
	}
	.wzs-timeline__card {
		padding: 22px 22px;
	}
	.wzs-timeline__card::before {
		top: 22px;
		left: -7px;
		width: 12px;
		height: 12px;
	}
	.wzs-timeline__title { font-size: 18px; }
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.wzs-benefits {
	position: relative;
	overflow: hidden;
}
.wzs-benefits__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 15% 20%, rgba(247,119,55,.10), transparent 55%),
		radial-gradient(circle at 85% 80%, rgba(225,48,108,.10), transparent 55%);
	pointer-events: none;
}
.wzs-benefits .wzs-container { position: relative; z-index: 1; }

.wzs-benefits__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}
.wzs-benefits__header .wzs-eyebrow { margin-bottom: 20px; }

.wzs-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}
@media (max-width: 760px) { .wzs-benefits__grid { grid-template-columns: 1fr; } }

.wzs-benefit {
	position: relative;
	padding: 36px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wzs-benefit::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #f77737, #e1306c, #833ab4);
	opacity: 0;
	transition: opacity .25s ease;
}
.wzs-benefit::after {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 180px;
	height: 180px;
	background: radial-gradient(circle, rgba(225,48,108,.15), transparent 70%);
	opacity: 0;
	transition: opacity .35s ease;
	pointer-events: none;
}
.wzs-benefit:hover {
	transform: translateY(-4px);
	border-color: rgba(225,48,108,.35);
	box-shadow: 0 25px 60px rgba(0,0,0,.35), 0 0 50px rgba(225,48,108,.08);
}
.wzs-benefit:hover::before,
.wzs-benefit:hover::after { opacity: 1; }

.wzs-benefit__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.wzs-benefit__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(247,119,55,.18), rgba(131,58,180,.18));
	border: 1px solid rgba(225,48,108,.25);
	font-size: 26px;
	flex-shrink: 0;
}

.wzs-benefit__stat {
	text-align: right;
}
.wzs-benefit__stat-value {
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.wzs-benefit__stat-label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--wzs-text-dim);
	margin-top: 4px;
	font-weight: 600;
}

.wzs-benefit__title {
	font-size: 22px;
	color: #fff;
	margin-bottom: 10px;
}

.wzs-benefit__text {
	color: var(--wzs-text-dim);
	line-height: 1.65;
	margin-bottom: 20px;
}

.wzs-benefit__vs {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: rgba(126,231,135,.08);
	border: 1px solid rgba(126,231,135,.2);
	border-radius: 999px;
	font-size: 12px;
	color: #7ee787;
	font-weight: 500;
}
.wzs-benefit__vs-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #7ee787;
	box-shadow: 0 0 10px rgba(126,231,135,.6);
}

@media (max-width: 480px) {
	.wzs-benefit { padding: 28px 24px; }
	.wzs-benefit__stat-value { font-size: 32px; }
	.wzs-benefit__icon { width: 48px; height: 48px; font-size: 22px; }
}

/* ==========================================================================
   Testimonials – Slider
   ========================================================================== */
.wzs-testimonials {
	position: relative;
	overflow: hidden;
}
.wzs-testimonials::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 20% 50%, rgba(225,48,108,.10), transparent 55%),
		radial-gradient(circle at 80% 50%, rgba(131,58,180,.10), transparent 55%);
	pointer-events: none;
}
.wzs-testimonials .wzs-container { position: relative; z-index: 1; }

.wzs-testimonials__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}
.wzs-testimonials__header .wzs-eyebrow { margin-bottom: 20px; }

/* Slider */
.wzs-slider {
	position: relative;
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 60px;
}
@media (max-width: 760px) { .wzs-slider { padding: 0; } }

.wzs-slider__viewport {
	overflow: hidden;
	border-radius: var(--wzs-radius);
}

.wzs-slider__track {
	display: flex;
	transition: transform .5s cubic-bezier(.22, .61, .36, 1);
	will-change: transform;
}

.wzs-slider__slide {
	flex: 0 0 100%;
	min-width: 0;
	margin: 0;
	padding: 8px;
}
@media (min-width: 900px) {
	.wzs-slider__slide { flex: 0 0 50%; }
}

.wzs-slider__card {
	position: relative;
	height: 100%;
	padding: 40px 36px 32px;
	background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	overflow: hidden;
}
.wzs-slider__card::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #f77737, #e1306c, #833ab4);
}

.wzs-slider__quote-mark {
	position: absolute;
	top: 8px;
	right: 24px;
	font-size: 120px;
	font-family: Georgia, serif;
	line-height: 1;
	color: rgba(225,48,108,.12);
	pointer-events: none;
}

.wzs-slider__stars {
	color: #ffb347;
	font-size: 18px;
	letter-spacing: 3px;
	margin-bottom: 18px;
	text-shadow: 0 0 20px rgba(255,179,71,.4);
}

.wzs-slider__text {
	font-size: 17px;
	line-height: 1.65;
	color: #fff;
	margin: 0 0 28px;
	font-style: italic;
	min-height: 130px;
}

.wzs-slider__author {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-top: 20px;
	border-top: 1px solid var(--wzs-border);
}

.wzs-slider__avatar {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	flex-shrink: 0;
}

.wzs-slider__author-info { display: flex; flex-direction: column; line-height: 1.35; }
.wzs-slider__author-info strong { color: #fff; font-size: 15px; }
.wzs-slider__author-info span { color: var(--wzs-text-dim); font-size: 13px; }

/* Nav arrows */
.wzs-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	background: rgba(24,24,40,.85);
	border: 1px solid var(--wzs-border);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	z-index: 2;
	backdrop-filter: blur(10px);
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.wzs-slider__nav:hover {
	background: rgba(225,48,108,.2);
	border-color: rgba(225,48,108,.5);
	transform: translateY(-50%) scale(1.08);
}
.wzs-slider__nav svg { width: 22px; height: 22px; }
.wzs-slider__nav--prev { left: 0; }
.wzs-slider__nav--next { right: 0; }

@media (max-width: 760px) {
	.wzs-slider__nav {
		width: 40px;
		height: 40px;
		top: auto;
		bottom: -68px;
		transform: none;
	}
	.wzs-slider__nav:hover { transform: scale(1.08); }
	.wzs-slider__nav--prev { left: calc(50% - 56px); }
	.wzs-slider__nav--next { right: calc(50% - 56px); left: auto; }
}

/* Dots */
.wzs-slider__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 36px;
}
.wzs-slider__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.15);
	cursor: pointer;
	padding: 0;
	transition: background .2s ease, transform .2s ease, width .3s ease;
}
.wzs-slider__dot:hover { background: rgba(255,255,255,.3); }
.wzs-slider__dot.is-active {
	width: 32px;
	border-radius: 999px;
	background: linear-gradient(90deg, #f77737, #e1306c, #833ab4);
}

@media (max-width: 760px) {
	.wzs-slider__dots { margin-top: 76px; }
	.wzs-slider__card { padding: 32px 24px 28px; }
	.wzs-slider__text { font-size: 16px; min-height: 0; }
	.wzs-slider__quote-mark { font-size: 90px; }
}

/* ==========================================================================
   Why
   ========================================================================== */
.wzs-why {
	position: relative;
	overflow: hidden;
}
.wzs-why__bg {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 75% 25%, rgba(247,119,55,.10), transparent 55%),
		radial-gradient(circle at 25% 75%, rgba(131,58,180,.10), transparent 55%);
	pointer-events: none;
}
.wzs-why .wzs-container { position: relative; z-index: 1; }

.wzs-why__header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 64px;
}
.wzs-why__header .wzs-eyebrow { margin-bottom: 20px; }

.wzs-why__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media (max-width: 900px) { .wzs-why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .wzs-why__grid { grid-template-columns: 1fr; } }

.wzs-why__card {
	position: relative;
	display: flex;
	gap: 18px;
	padding: 28px 28px 28px 24px;
	background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
	border: 1px solid var(--wzs-border);
	border-radius: var(--wzs-radius);
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.wzs-why__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 3px;
	background: linear-gradient(180deg, #f77737, #e1306c, #833ab4);
	opacity: 0;
	transition: opacity .25s ease;
}
.wzs-why__card:hover {
	transform: translateY(-4px);
	border-color: rgba(225,48,108,.35);
	box-shadow: 0 20px 50px rgba(0,0,0,.3), 0 0 40px rgba(225,48,108,.08);
}
.wzs-why__card:hover::before { opacity: 1; }

.wzs-why__icon-wrap { flex-shrink: 0; }
.wzs-why__icon {
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(247,119,55,.18), rgba(131,58,180,.18));
	border: 1px solid rgba(225,48,108,.25);
	font-size: 24px;
	transition: transform .25s ease;
}
.wzs-why__card:hover .wzs-why__icon { transform: scale(1.08) rotate(-4deg); }

.wzs-why__body { flex: 1; min-width: 0; }
.wzs-why__title {
	font-size: 17px;
	color: #fff;
	margin-bottom: 8px;
	line-height: 1.3;
}
.wzs-why__text {
	color: var(--wzs-text-dim);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.wzs-why__number {
	position: absolute;
	top: 14px;
	right: 18px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .08em;
	color: rgba(255,255,255,.15);
	font-family: ui-monospace, "SF Mono", Menlo, monospace;
	transition: color .25s ease;
}
.wzs-why__card:hover .wzs-why__number { color: rgba(225,48,108,.5); }

/* ==========================================================================
   Live activity widget
   ========================================================================== */
.wzs-live {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 9999;
	max-width: 360px;
	pointer-events: none;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.wzs-live__card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 14px 36px 14px 16px;
	background: rgba(24,24,40,.96);
	border: 1px solid rgba(255,255,255,.1);
	border-radius: 14px;
	box-shadow:
		0 20px 50px rgba(0,0,0,.5),
		0 0 0 1px rgba(225,48,108,.15),
		0 0 40px rgba(225,48,108,.12);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	pointer-events: auto;
	opacity: 0;
	transform: translateY(20px) scale(.96);
	transition: opacity .4s ease, transform .4s cubic-bezier(.22, .61, .36, 1);
}
.wzs-live.is-visible .wzs-live__card {
	opacity: 1;
	transform: translateY(0) scale(1);
}
.wzs-live.is-swapping .wzs-live__card {
	opacity: 0;
	transform: translateY(8px) scale(.98);
}

.wzs-live__icon {
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(247,119,55,.2), rgba(225,48,108,.2), rgba(131,58,180,.2));
	border: 1px solid rgba(225,48,108,.3);
	font-size: 20px;
	flex-shrink: 0;
}

.wzs-live__body {
	flex: 1;
	min-width: 0;
	color: #fff;
}
.wzs-live__text {
	font-size: 13.5px;
	line-height: 1.45;
	color: #f5f5fa;
	margin-bottom: 6px;
}
.wzs-live__text b {
	color: #fff;
	font-weight: 700;
	background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.wzs-live__meta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: #a5a5b8;
}
.wzs-live__sep { opacity: .5; }
.wzs-live__pulse {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #7ee787;
	box-shadow: 0 0 0 0 rgba(126,231,135,.7);
	animation: wzsLivePulse 2s infinite;
	margin-right: 2px;
}
@keyframes wzsLivePulse {
	0%   { box-shadow: 0 0 0 0 rgba(126,231,135,.7); }
	70%  { box-shadow: 0 0 0 8px rgba(126,231,135,0); }
	100% { box-shadow: 0 0 0 0 rgba(126,231,135,0); }
}

.wzs-live__close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 22px;
	height: 22px;
	display: grid;
	place-items: center;
	background: transparent;
	border: none;
	border-radius: 6px;
	color: #a5a5b8;
	cursor: pointer;
	transition: color .2s ease, background .2s ease;
}
.wzs-live__close:hover {
	color: #fff;
	background: rgba(255,255,255,.08);
}
.wzs-live__close svg { width: 14px; height: 14px; }

.wzs-live.is-hidden { display: none; }

@media (max-width: 560px) {
	.wzs-live {
		left: 12px;
		right: 12px;
		bottom: 12px;
		max-width: none;
	}
	.wzs-live__card { padding: 12px 32px 12px 14px; }
	.wzs-live__icon { width: 36px; height: 36px; font-size: 18px; }
	.wzs-live__text { font-size: 13px; }
}


/* =====================================================
   ONBOARDING — interactive walkthrough showcase
   ===================================================== */

/* --- Section base & background --- */
.wzs-onboarding {
	position: relative;
	overflow: hidden;
	background: #0d0d1a;
	padding: 100px 0 110px;
}

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

.wzs-onboarding__orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(120px);
	opacity: 0.35;
}

.wzs-onboarding__orb--1 {
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, #833ab4, transparent 70%);
	top: -200px;
	left: -150px;
	animation: wzsFloat 20s ease-in-out infinite;
}

.wzs-onboarding__orb--2 {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, #e1306c, transparent 70%);
	bottom: -180px;
	right: -120px;
	animation: wzsFloat 24s ease-in-out infinite reverse;
}

.wzs-onboarding__header {
	text-align: center;
	margin-bottom: 48px;
	position: relative;
	z-index: 1;
}

/* --- Step pills / navigation --- */
.wzs-onboarding__nav {
	display: flex;
	justify-content: center;
	gap: 6px;
	flex-wrap: wrap;
	margin-bottom: 20px;
	position: relative;
	z-index: 2;
}

.wzs-onboarding__pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 18px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 999px;
	background: rgba(255,255,255,0.03);
	color: var(--wzs-dim);
	font-size: 13px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.wzs-onboarding__pill:hover {
	background: rgba(255,255,255,0.07);
	color: var(--wzs-text);
	border-color: rgba(255,255,255,0.14);
}

.wzs-onboarding__pill.is-active {
	background: linear-gradient(135deg, rgba(247,119,55,0.15), rgba(225,48,108,0.15), rgba(131,58,180,0.15));
	border-color: rgba(225,48,108,0.4);
	color: #fff;
	box-shadow: 0 0 24px rgba(225,48,108,0.15);
}

.wzs-onboarding__pill-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	font-size: 11px;
	font-weight: 700;
	color: var(--wzs-dim);
	transition: all 0.3s ease;
}

.wzs-onboarding__pill.is-active .wzs-onboarding__pill-num {
	background: linear-gradient(135deg, #f77737, #e1306c, #833ab4);
	color: #fff;
}

.wzs-onboarding__pill-label {
	display: inline;
}

/* --- Progress bar --- */
.wzs-onboarding__progress {
	width: 100%;
	height: 3px;
	background: rgba(255,255,255,0.06);
	border-radius: 3px;
	margin-bottom: 40px;
	overflow: hidden;
}

.wzs-onboarding__progress-bar {
	height: 100%;
	border-radius: 3px;
	background: linear-gradient(90deg, #f77737, #e1306c, #833ab4);
	transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 0 12px rgba(225,48,108,0.5);
}

/* --- Stage (contains viewer) --- */
.wzs-onboarding__stage {
	position: relative;
	z-index: 1;
}

/* --- Viewer: side-by-side device + info --- */
.wzs-onboarding__viewer {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 48px;
	align-items: center;
}

/* --- Device mockup --- */
.wzs-onboarding__device {
	position: relative;
}

/* Gradient glow behind frame */
.wzs-onboarding__glow {
	position: absolute;
	inset: -32px;
	background: radial-gradient(ellipse at center,
		rgba(225,48,108,0.12) 0%,
		rgba(131,58,180,0.08) 40%,
		transparent 70%);
	border-radius: 30px;
	filter: blur(40px);
	z-index: 0;
	transition: opacity 0.4s;
}

/* Browser window frame */
.wzs-onboarding__frame {
	position: relative;
	z-index: 1;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,0.1);
	background: #13131f;
	box-shadow:
		0 32px 80px rgba(0,0,0,0.55),
		0 0 0 1px rgba(255,255,255,0.04) inset;
}

/* Chrome bar (window top) */
.wzs-onboarding__chrome {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 12px 16px;
	background: #1a1a2a;
	border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wzs-onboarding__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
}
.wzs-onboarding__dot--r { background: #ff5f57; }
.wzs-onboarding__dot--y { background: #febc2e; }
.wzs-onboarding__dot--g { background: #28c840; }

.wzs-onboarding__chrome-bar {
	margin-left: auto;
	margin-right: auto;
	padding: 4px 24px;
	border-radius: 6px;
	background: rgba(255,255,255,0.06);
	font-size: 11px;
	color: rgba(255,255,255,0.35);
	font-weight: 500;
	letter-spacing: 0.01em;
}

/* Screen area */
.wzs-onboarding__screen {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #0f0f1c;
}

/* Screenshots */
.wzs-onboarding__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	/* Subtle vignette on light screenshots against dark page */
	mask-image: radial-gradient(ellipse 96% 94% at 50% 48%, #000 75%, transparent 100%);
	-webkit-mask-image: radial-gradient(ellipse 96% 94% at 50% 48%, #000 75%, transparent 100%);
}

.wzs-onboarding__img.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

/* --- Info card (right side) --- */
.wzs-onboarding__info {
	position: relative;
	min-height: 280px;
}

.wzs-onboarding__card {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.4s ease, transform 0.4s ease;
	pointer-events: none;
}

.wzs-onboarding__card.is-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
	position: relative;
}

.wzs-onboarding__card-num {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--wzs-dim);
	font-weight: 600;
	margin-bottom: 14px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.wzs-onboarding__card-num span {
	font-size: 20px;
}

.wzs-onboarding__card-title {
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 800;
	color: var(--wzs-text);
	line-height: 1.2;
	margin: 0 0 14px;
	background: linear-gradient(135deg, #fff 30%, #d0c0e8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.wzs-onboarding__card-text {
	font-size: 15px;
	line-height: 1.7;
	color: var(--wzs-dim);
	margin: 0 0 28px;
	max-width: 420px;
}

/* Prev/Next arrows */
.wzs-onboarding__card-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wzs-onboarding__arrow {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 10px 20px;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.12);
	background: rgba(255,255,255,0.04);
	color: var(--wzs-dim);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease;
}

.wzs-onboarding__arrow:hover {
	color: #fff;
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.2);
}

.wzs-onboarding__arrow--next {
	background: linear-gradient(135deg, rgba(247,119,55,0.15), rgba(225,48,108,0.2));
	border-color: rgba(225,48,108,0.3);
	color: #f5c0d0;
}

.wzs-onboarding__arrow--next:hover {
	background: linear-gradient(135deg, rgba(247,119,55,0.25), rgba(225,48,108,0.35));
	box-shadow: 0 4px 20px rgba(225,48,108,0.2);
	color: #fff;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
	.wzs-onboarding__viewer {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.wzs-onboarding__info {
		min-height: auto;
	}

	.wzs-onboarding__card {
		position: relative;
		display: none;
	}

	.wzs-onboarding__card.is-active {
		display: flex;
	}
}

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

	.wzs-onboarding__pill-label { display: none; }

	.wzs-onboarding__pill {
		padding: 8px 12px;
	}

	.wzs-onboarding__pill-num {
		width: 28px;
		height: 28px;
		font-size: 13px;
	}

	.wzs-onboarding__screen {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 480px) {
	.wzs-onboarding__nav { gap: 4px; }
	.wzs-onboarding__pill { padding: 6px 8px; }
	.wzs-onboarding__pill-num { width: 26px; height: 26px; font-size: 12px; }

	.wzs-onboarding__card-title { font-size: 20px; }
	.wzs-onboarding__card-text { font-size: 14px; }

	.wzs-onboarding__arrow { padding: 8px 14px; font-size: 12px; }
}
