/* ==========================================================================
   Web CircleZ Pro — Premium SaaS Design System
   Linear / Stripe / Vercel-inspired layer
   ========================================================================== */

:root {
	/* Surfaces */
	--wcz-bg: #fafbfc;
	--wcz-bg-elevated: #f1f5f9;
	--wcz-bg-card: #ffffff;
	--wcz-bg-card-hover: #f8fafc;
	--wcz-bg-glass: rgba(255, 255, 255, 0.72);
	--wcz-border: rgba(15, 23, 42, 0.08);
	--wcz-border-hover: rgba(0, 194, 229, 0.4);

	/* Text */
	--wcz-text-heading: #0b1220;
	--wcz-text: #1e293b;
	--wcz-text-muted: #475569;
	--wcz-text-dim: #64748b;

	/* Brand */
	--wcz-primary: #00b8d9;
	--wcz-primary-dark: #0093b0;
	--wcz-accent: #007a94;
	--wcz-accent-light: #5eead4;
	--wcz-link: #00b8d9;
	--wcz-link-hover: #007a94;
	--wcz-gradient: linear-gradient(135deg, #00c2e5 0%, #0099b8 55%, #007a94 100%);
	--wcz-gradient-text: linear-gradient(135deg, #00c2e5 0%, #007a94 100%);
	--wcz-gradient-mesh: radial-gradient(ellipse 80% 60% at 10% 0%, rgba(0, 194, 229, 0.14) 0%, transparent 55%),
		radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 153, 184, 0.1) 0%, transparent 50%),
		radial-gradient(ellipse 50% 40% at 50% 100%, rgba(94, 234, 212, 0.08) 0%, transparent 55%);

	/* Semantic */
	--wcz-success: #10b981;
	--wcz-warning: #f59e0b;
	--wcz-error: #ef4444;

	/* Typography — Inter */
	--wcz-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--wcz-font-display: 'Inter', var(--wcz-font);
	--wcz-text-xs: 0.75rem;
	--wcz-text-sm: 0.8125rem;
	--wcz-text-base: 0.9375rem;
	--wcz-text-md: 1rem;
	--wcz-text-lg: 1.125rem;
	--wcz-text-xl: 1.25rem;
	--wcz-h6: 0.875rem;
	--wcz-h5: 1rem;
	--wcz-h4: 1.125rem;
	--wcz-h3: 1.25rem;
	--wcz-h2: clamp(1.5rem, 2.5vw, 2rem);
	--wcz-h1: clamp(1.75rem, 3vw, 2.5rem);
	--wcz-display: clamp(2rem, 4vw, 3rem);
	--wcz-display-lg: clamp(2.25rem, 4.5vw, 3.5rem);
	--wcz-section-title-size: clamp(1.5rem, 2.8vw, 2.25rem);
	--wcz-hero-title-size: clamp(1.75rem, 3.5vw, 2.75rem);
	--wcz-banner-title: clamp(1.5rem, 3vw, 2.25rem);
	--wcz-leading-body: 1.65;
	--wcz-leading-tight: 1.2;
	--wcz-tracking-tight: -0.02em;
	--wcz-tracking-wide: 0.06em;

	/* Layout */
	--wcz-container: 1200px;
	--wcz-radius: 10px;
	--wcz-radius-lg: 16px;
	--wcz-radius-xl: 24px;
	--wcz-radius-full: 9999px;
	--wcz-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
	--wcz-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
	--wcz-shadow-md: 0 8px 32px rgba(15, 23, 42, 0.08);
	--wcz-shadow-glow: 0 8px 40px rgba(0, 184, 217, 0.2);
	--wcz-shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.1);
	--wcz-transition: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
	--wcz-transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	--wcz-ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

	/* Footer */
	--wcz-footer-bg: #0b1220;
	--wcz-footer-surface: #111827;
	--wcz-footer-border: rgba(255, 255, 255, 0.08);
	--wcz-footer-text: rgba(255, 255, 255, 0.88);
	--wcz-footer-text-dim: rgba(255, 255, 255, 0.55);
	--wcz-footer-heading: #ffffff;
}

/* --------------------------------------------------------------------------
   Ambient background
   -------------------------------------------------------------------------- */
.wcz-ambient-bg {
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	overflow: hidden;
}

.wcz-ambient-mesh {
	position: absolute;
	inset: 0;
	background: var(--wcz-gradient-mesh);
	opacity: 1;
}

.wcz-ambient-grid {
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
	background-size: 64px 64px;
	mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 70%);
}

.wcz-ambient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.45;
	animation: wcz-orb-drift 20s ease-in-out infinite alternate;
}

.wcz-ambient-orb-1 {
	width: 480px;
	height: 480px;
	top: -120px;
	right: -80px;
	background: rgba(0, 194, 229, 0.25);
}

.wcz-ambient-orb-2 {
	width: 360px;
	height: 360px;
	bottom: 10%;
	left: -100px;
	background: rgba(0, 153, 184, 0.18);
	animation-delay: -8s;
}

@keyframes wcz-orb-drift {
	0% { transform: translate(0, 0) scale(1); }
	100% { transform: translate(30px, -20px) scale(1.08); }
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
body {
	font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
	letter-spacing: -0.011em;
}

h1, h2, h3, h4, h5, h6,
.wcz-section-title,
.wcz-hero-live-title,
.wcz-page-hero-banner-title {
	font-family: var(--wcz-font-display);
	letter-spacing: var(--wcz-tracking-tight);
	font-weight: 600;
}

.wcz-section-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: var(--wcz-tracking-wide);
	text-transform: uppercase;
	color: var(--wcz-primary);
}

.wcz-gradient-text {
	background: var(--wcz-gradient-text);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   Container & sections
   -------------------------------------------------------------------------- */
.wcz-container {
	width: 100%;
	max-width: var(--wcz-container);
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 32px);
}

.wcz-section {
	padding: clamp(64px, 8vw, 100px) 0;
	position: relative;
}

.wcz-section-header {
	margin-bottom: clamp(32px, 5vw, 56px);
}

.wcz-section-desc {
	font-size: var(--wcz-text-md);
	color: var(--wcz-text-muted);
	line-height: 1.7;
}

.wcz-section-cta {
	text-align: center;
	margin-top: clamp(32px, 5vw, 48px);
}

.wcz-section-cta--left {
	text-align: left;
	margin-top: 28px;
}

/* --------------------------------------------------------------------------
   Buttons — premium SaaS
   -------------------------------------------------------------------------- */
.wcz-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--wcz-font);
	font-size: var(--wcz-text-sm);
	font-weight: 600;
	letter-spacing: -0.01em;
	line-height: 1;
	padding: 12px 22px;
	border-radius: var(--wcz-radius);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: transform var(--wcz-transition), box-shadow var(--wcz-transition),
		background var(--wcz-transition), border-color var(--wcz-transition), color var(--wcz-transition);
	position: relative;
	overflow: hidden;
}

.wcz-btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 50%);
	opacity: 0;
	transition: opacity var(--wcz-transition);
}

.wcz-btn:hover::before {
	opacity: 1;
}

.wcz-btn:focus-visible {
	outline: 2px solid var(--wcz-primary);
	outline-offset: 2px;
}

.wcz-btn-primary {
	background: var(--wcz-gradient);
	color: #fff;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 184, 217, 0.25);
}

.wcz-btn-primary:hover {
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 4px 20px rgba(0, 184, 217, 0.35);
}

.wcz-btn-outline {
	background: var(--wcz-bg-card);
	color: var(--wcz-text-heading);
	border-color: var(--wcz-border);
	box-shadow: var(--wcz-shadow-sm);
}

.wcz-btn-outline:hover {
	border-color: var(--wcz-border-hover);
	color: var(--wcz-primary);
	transform: translateY(-2px);
	box-shadow: var(--wcz-shadow);
}

.wcz-btn-lg {
	padding: 14px 28px;
	font-size: var(--wcz-text-base);
	border-radius: var(--wcz-radius-lg);
}

.wcz-btn-sm {
	padding: 8px 16px;
	font-size: var(--wcz-text-xs);
}

.wcz-btn-ghost-light {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(8px);
}

.wcz-btn-ghost-light:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #fff;
	color: #fff;
}

/* --------------------------------------------------------------------------
   Cards — glass & depth
   -------------------------------------------------------------------------- */
.wcz-service-card,
.wcz-core-card,
.wcz-quick-card,
.wcz-feature-showcase,
.wcz-spec-card,
.wcz-stat-item,
.wcz-testimonial-card,
.wcz-pricing-card,
.wcz-pin-step,
.wcz-review-live-card,
.wcz-portfolio-item {
	border-radius: var(--wcz-radius-lg);
	transition: transform var(--wcz-transition-slow), box-shadow var(--wcz-transition-slow),
		border-color var(--wcz-transition), background var(--wcz-transition);
}

.wcz-service-card,
.wcz-quick-card,
.wcz-feature-showcase,
.wcz-testimonial-card {
	background: var(--wcz-bg-card);
	border: 1px solid var(--wcz-border);
	box-shadow: var(--wcz-shadow-sm);
}

.wcz-service-card:hover,
.wcz-quick-card:hover,
.wcz-feature-showcase:hover,
.wcz-core-card:hover,
.wcz-spec-card:hover,
.wcz-bento-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--wcz-shadow-md);
	border-color: var(--wcz-border-hover);
}

.wcz-service-card.featured,
.wcz-quick-card.featured,
.wcz-core-card.featured {
	border-color: rgba(0, 184, 217, 0.35);
	background: linear-gradient(160deg, #fff 0%, #f0fbfe 100%);
	box-shadow: var(--wcz-shadow), 0 0 0 1px rgba(0, 184, 217, 0.08);
}

.wcz-service-icon,
.wcz-feature-showcase-icon,
.wcz-quick-icon,
.wcz-core-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: var(--wcz-radius);
	background: rgba(0, 184, 217, 0.08);
	border: 1px solid rgba(0, 184, 217, 0.15);
	color: var(--wcz-primary);
	font-size: 1.25rem;
}

/* --------------------------------------------------------------------------
   Header & nav
   -------------------------------------------------------------------------- */
.wcz-header {
	-webkit-backdrop-filter: blur(16px) saturate(1.2);
	border-bottom: 1px solid transparent;
	transition: background var(--wcz-transition-slow), border-color var(--wcz-transition-slow),
		box-shadow var(--wcz-transition-slow);
}

.wcz-header.scrolled,
body.wcz-header-scrolled .wcz-header {
	background: rgba(255, 255, 255, 0.92);
	border-bottom-color: var(--wcz-border);
	box-shadow: var(--wcz-shadow-sm);
}

.wcz-nav-list > li > a {
	font-weight: 500;
	font-size: var(--wcz-text-sm);
	letter-spacing: -0.01em;
	transition: color var(--wcz-transition);
}

.wcz-logo-wordmark {
	font-weight: 700;
	letter-spacing: -0.03em;
}

.wcz-scroll-progress {
	height: 2px;
	background: var(--wcz-gradient);
	box-shadow: 0 0 12px rgba(0, 184, 217, 0.5);
}

/* --------------------------------------------------------------------------
   Hero — homepage
   -------------------------------------------------------------------------- */
.wcz-hero-live-overlay {
	background:
		linear-gradient(180deg, rgba(11, 18, 32, 0.35) 0%, rgba(11, 18, 32, 0.55) 50%, rgba(11, 18, 32, 0.75) 100%),
		radial-gradient(ellipse 70% 50% at 50% 30%, rgba(0, 184, 217, 0.12) 0%, transparent 65%);
}

.wcz-hero-live-title {
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.25;
}

.wcz-hero-live-item {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--wcz-radius-lg);
	backdrop-filter: blur(12px);
	padding: 20px 16px 24px;
	transition: background var(--wcz-transition), border-color var(--wcz-transition), transform var(--wcz-transition);
}

.wcz-hero-live-item:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(0, 184, 217, 0.4);
	transform: translateY(-2px);
}

.wcz-hero-cta-strip {
	background: var(--wcz-gradient);
}

/* Trust bar */
.wcz-trust-bar {
	background: var(--wcz-bg-card);
	border-color: var(--wcz-border);
	gap: clamp(12px, 3vw, 24px);
	padding: clamp(16px, 3vw, 24px) clamp(16px, 4vw, 32px);
}

.wcz-trust-item {
	padding: 10px 18px;
	background: var(--wcz-bg-elevated);
	border: 1px solid var(--wcz-border);
	border-radius: var(--wcz-radius-full);
	font-size: var(--wcz-text-sm);
	font-weight: 500;
}

/* Service tags */
.wcz-service-tags {
	padding: clamp(24px, 4vw, 36px) 0;
	background: var(--wcz-bg-card);
	border-top: 1px solid var(--wcz-border);
	border-bottom: 1px solid var(--wcz-border);
}

.wcz-service-tag {
	padding: 8px 16px;
	font-size: var(--wcz-text-sm);
	font-weight: 500;
	border-radius: var(--wcz-radius-full);
	background: var(--wcz-bg-elevated);
	border: 1px solid var(--wcz-border);
	transition: all var(--wcz-transition);
}

.wcz-service-tag:hover {
	background: rgba(0, 184, 217, 0.08);
	border-color: var(--wcz-border-hover);
	color: var(--wcz-primary);
}

/* Tech grid */
.wcz-tech-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	max-width: 920px;
	margin: 0 auto;
}

.wcz-tech-chip {
	padding: 10px 18px;
	font-size: var(--wcz-text-sm);
	font-weight: 500;
	background: var(--wcz-bg-card);
	border: 1px solid var(--wcz-border);
	border-radius: var(--wcz-radius);
	box-shadow: var(--wcz-shadow-sm);
	transition: all var(--wcz-transition);
}

.wcz-tech-chip:hover {
	border-color: var(--wcz-border-hover);
	color: var(--wcz-primary);
	transform: translateY(-1px);
}

/* Stats */
.wcz-stats {
	background: var(--wcz-bg-elevated);
}

.wcz-stat-item strong {
	font-weight: 700;
	letter-spacing: -0.03em;
}

/* Process steps */
.wcz-pin-step {
	background: var(--wcz-bg-card);
	border: 1px solid var(--wcz-border);
	box-shadow: var(--wcz-shadow-sm);
}

.wcz-pin-step.active {
	border-color: rgba(0, 184, 217, 0.4);
	box-shadow: var(--wcz-shadow-glow);
	border-left: 3px solid var(--wcz-primary);
}

/* --------------------------------------------------------------------------
   Images
   -------------------------------------------------------------------------- */
img,
.wcz-hero-live-photo,
.wcz-page-hero-banner-photo,
.wcz-works-photo,
.wcz-portfolio-thumb img,
.wcz-bento-photo {
	object-fit: cover;
	max-width: 100%;
}

.wcz-portfolio-thumb,
.wcz-works-thumb {
	border-radius: var(--wcz-radius-lg);
	overflow: hidden;
}

.wcz-portfolio-thumb img,
.wcz-works-photo {
	transition: transform var(--wcz-transition-slow);
}

.wcz-portfolio-item:hover .wcz-portfolio-thumb img,
.wcz-works-item:hover .wcz-works-photo {
	transform: scale(1.03);
}

/* --------------------------------------------------------------------------
   Forms (global + CF7 overlap)
   -------------------------------------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
input[type="number"],
textarea,
select,
.wcz-header-search-input {
	font-family: var(--wcz-font);
	font-size: var(--wcz-text-base);
	border-radius: var(--wcz-radius);
	border: 1px solid var(--wcz-border);
	background: var(--wcz-bg-card);
	color: var(--wcz-text);
	padding: 12px 16px;
	transition: border-color var(--wcz-transition), box-shadow var(--wcz-transition);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.wcz-header-search-input:focus-visible {
	outline: none;
	border-color: var(--wcz-primary);
	box-shadow: 0 0 0 3px rgba(0, 184, 217, 0.15);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.wcz-footer-cta-card {
	border-radius: var(--wcz-radius-xl);
	border: 1px solid var(--wcz-footer-border);
	box-shadow: var(--wcz-shadow-xl);
}

.wcz-footer-cta-badge {
	border-radius: var(--wcz-radius-full);
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --------------------------------------------------------------------------
   Premium animations
   -------------------------------------------------------------------------- */
[data-animate],
[data-animate="fade-up"] {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.7s var(--wcz-ease-out-expo), transform 0.7s var(--wcz-ease-out-expo);
}

[data-animate].visible,
[data-animate="fade-up"].visible {
	opacity: 1;
	transform: translateY(0);
}
[data-scroll-scale] {
	opacity: 0;
	transform: scale(0.96) translateY(12px);
	transition: opacity 0.8s var(--wcz-ease-out-expo), transform 0.8s var(--wcz-ease-out-expo);
}

[data-scroll-scale].in-view {
	opacity: 1;
	transform: scale(1) translateY(0);
}

[data-stagger] > * {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--wcz-ease-out-expo), transform 0.6s var(--wcz-ease-out-expo);
}

[data-stagger].stagger-visible > * {
	opacity: 1;
	transform: translateY(0);
}

[data-stagger].stagger-visible > *:nth-child(1) { transition-delay: 0.04s; }
[data-stagger].stagger-visible > *:nth-child(2) { transition-delay: 0.08s; }
[data-stagger].stagger-visible > *:nth-child(3) { transition-delay: 0.12s; }
[data-stagger].stagger-visible > *:nth-child(4) { transition-delay: 0.16s; }
[data-stagger].stagger-visible > *:nth-child(5) { transition-delay: 0.2s; }
[data-stagger].stagger-visible > *:nth-child(6) { transition-delay: 0.24s; }
[data-stagger].stagger-visible > *:nth-child(7) { transition-delay: 0.28s; }
[data-stagger].stagger-visible > *:nth-child(8) { transition-delay: 0.32s; }

.wcz-img-reveal {
	opacity: 0;
	transform: scale(1.02);
	transition: opacity 0.9s var(--wcz-ease-out-expo), transform 0.9s var(--wcz-ease-out-expo);
}

.wcz-img-reveal.is-revealed {
	opacity: 1;
	transform: scale(1);
}

body.wcz-loaded .wcz-header {
	opacity: 1;
	transition: opacity 0.5s var(--wcz-ease-out-expo);
}

body.wcz-loaded .wcz-main {
	opacity: 1;
	transition: opacity 0.6s var(--wcz-ease-out-expo) 0.05s;
}

.wcz-hero-cta-strip {
	transform: translateY(16px);
	opacity: 0;
	transition: opacity 0.8s var(--wcz-ease-out-expo), transform 0.8s var(--wcz-ease-out-expo);
}

.wcz-hero-cta-strip.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.wcz-cursor-glow {
	background: radial-gradient(circle, rgba(0, 184, 217, 0.12) 0%, transparent 70%);
	mix-blend-mode: multiply;
}

/* Page hero banners */
.wcz-page-hero-banner {
	overflow: hidden;
}

/* Works carousel */
.wcz-works-arrow {
	border-radius: var(--wcz-radius);
}

.wcz-works-track {
	transition: transform 0.45s var(--wcz-ease-out-expo);
}

/* Testimonials */
.wcz-testimonials-track {
	transition: transform 0.45s var(--wcz-ease-out-expo);
}

.wcz-testimonial-card {
	border-radius: var(--wcz-radius-lg);
}

.wcz-slider-btn {
	border-radius: var(--wcz-radius);
	transition: all var(--wcz-transition);
}

.wcz-slider-btn:hover {
	background: var(--wcz-primary);
	color: #fff;
	border-color: var(--wcz-primary);
}

/* CTA banner */
.wcz-cta-creative {
	border-radius: var(--wcz-radius-xl);
	border: 1px solid var(--wcz-border);
	background: linear-gradient(135deg, #fff 0%, #f0fbfe 100%);
	box-shadow: var(--wcz-shadow-md);
}

/* --------------------------------------------------------------------------
   Responsive — no overflow, fluid scale
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	:root {
		--wcz-container: 100%;
	}

	.wcz-hero-live-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.wcz-features-row,
	.wcz-spec-grid,
	.wcz-quick-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 768px) {
	.wcz-section {
		padding: clamp(48px, 10vw, 72px) 0;
	}

	.wcz-hero-live-grid {
		grid-template-columns: 1fr;
	}

	.wcz-features-row,
	.wcz-spec-grid,
	.wcz-quick-grid,
	.wcz-stats-grid {
		grid-template-columns: 1fr;
	}

	.wcz-trust-bar {
		flex-direction: column;
		align-items: stretch;
	}

	.wcz-trust-item {
		justify-content: center;
	}

	.wcz-hero-cta-inner {
		flex-direction: column;
		text-align: center;
	}

	.wcz-hero-cta-actions {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.wcz-btn-lg {
		width: 100%;
		max-width: 320px;
	}

	.wcz-ambient-orb-1,
	.wcz-ambient-orb-2 {
		opacity: 0.25;
	}
}

@media (max-width: 480px) {
	body {
		font-size: var(--wcz-text-sm);
	}

	.wcz-service-tag,
	.wcz-tech-chip {
		font-size: var(--wcz-text-xs);
		padding: 6px 12px;
	}
}

/* --------------------------------------------------------------------------
   Accessibility & reduced motion
   -------------------------------------------------------------------------- */
:focus-visible {
	outline: 2px solid var(--wcz-primary);
	outline-offset: 2px;
}

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

	[data-animate],
	[data-stagger] > *,
	[data-scroll-scale],
	.wcz-img-reveal,
	.wcz-hero-cta-strip {
		opacity: 1 !important;
		transform: none !important;
	}

	.wcz-ambient-orb {
		animation: none;
	}
}
