/**
 * UniteElements Theme - Homepage & Platform Layouts
 *
 * @package UniteElements_Theme
 * @author Jyotirmay Ray <https://jyotirmayray.in/>
 */

html {
	scrollbar-gutter: stable;
}

/* ==========================================================================
   1. Header Utilities & Controls
   ========================================================================== */
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--uniteelements-space-4);
}

.site-branding .site-title {
	font-family: var(--uniteelements-font-family);
	font-size: var(--uniteelements-font-size-h3);
	font-weight: var(--uniteelements-font-weight-bold);
	letter-spacing: var(--uniteelements-letter-spacing-tight);
	margin: 0;
}

.site-branding .site-title a {
	color: var(--uniteelements-text-primary);
	display: inline-flex;
	align-items: center;
	gap: var(--uniteelements-space-2);
}

.site-branding .site-title a svg {
	width: 26px;
	height: 26px;
	fill: var(--uniteelements-primary-500);
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation > ul > li > a {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	color: #475569;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.main-navigation > ul > li > a:hover {
	color: #2563EB;
	background: rgba(239, 246, 255, 0.9);
}

.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current_page_item > a,
.main-navigation > ul > li > a.is-active {
	color: #2563EB;
	background: #EFF6FF;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: var(--uniteelements-space-3);
}

.header-action-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: var(--uniteelements-radius-full);
	background-color: rgba(241, 245, 249, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	color: var(--uniteelements-text-secondary);
	cursor: pointer;
	transition: var(--uniteelements-transition);
}

.header-action-btn:hover {
	background-color: var(--uniteelements-primary-50);
	color: var(--uniteelements-primary-600);
	border-color: rgba(43, 93, 245, 0.3);
	transform: scale(1.05);
}

.header-action-btn svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

/* ── Notification Bell – prevent fill:currentColor from corrupting stroke-only paths ── */
.ue-notif-bell-btn .ue-bell-svg,
.ue-notif-bell-btn svg.ue-bell-svg {
	width: 19px !important;
	height: 19px !important;
	fill: none !important;
	stroke: currentColor !important;
	stroke-width: 2 !important;
	stroke-linecap: round !important;
	stroke-linejoin: round !important;
}

.header-account-btn {
	text-decoration: none;
	position: relative;
	overflow: hidden;
}

.header-account-btn.is-logged-in {
	border-color: rgba(37, 99, 235, 0.3);
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	color: #2563EB;
}

.header-account-btn:hover {
	border-color: rgba(37, 99, 235, 0.4);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.18);
	transform: scale(1.06);
}

.uniteelements-cart-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	background: linear-gradient(135deg, #2B5DF5 0%, #1D44DB 100%);
	color: #FFFFFF;
	font-size: 10px;
	font-weight: var(--uniteelements-font-weight-bold);
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: var(--uniteelements-radius-pill);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(43, 93, 245, 0.4);
	border: 1.5px solid #FFFFFF;
}

.header-mobile-toggle {
	display: none;
}

/* Advanced Mobile Navigation Item */
.uniteelements-mobile-menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border-radius: 14px;
	text-decoration: none;
	background: transparent;
	transition: var(--uniteelements-transition);
}

.uniteelements-mobile-menu-item:hover,
.uniteelements-mobile-menu-item:focus-visible {
	background: rgba(239, 246, 255, 0.85);
	transform: translateX(4px);
}

@media (max-width: 960px) {
	.main-navigation {
		display: none;
	}
	.header-mobile-toggle {
		display: inline-flex;
	}
	.site-header {
		height: auto;
		top: 6px !important;
		padding: 0 12px;
	}
	.site-header .header-inner {
		padding: 5px 12px;
		min-height: 52px;
	}
	.site-branding .site-title a {
		font-size: 1.1rem;
	}
	.header-actions {
		gap: 8px;
	}
}

@media (max-width: 480px) {
	.site-header {
		padding: 0 8px;
	}
	.site-header .header-inner {
		padding: 4px 10px;
		min-height: 48px;
	}
	.site-branding .site-title a {
		font-size: 0.95rem;
		gap: 6px;
	}
	.site-branding .site-title a svg {
		width: 20px;
		height: 20px;
	}
	.header-actions {
		gap: 6px;
	}
	.header-action-btn {
		width: 34px;
		height: 34px;
	}
	.header-action-btn svg {
		width: 15px;
		height: 15px;
	}
}

/* ==========================================================================
   Hero Telemetry Cards Matrix (Liquid Glass)
   ========================================================================== */
.uniteelements-hero-telemetry-matrix {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 48px;
	position: relative;
	z-index: 2;
}

.uniteelements-telemetry-box {
	background: rgba(15, 23, 42, 0.72);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: 16px;
	padding: 16px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	min-width: 0;
}

.uniteelements-telemetry-box:hover {
	transform: translateY(-2px);
	border-color: rgba(59, 130, 246, 0.4);
	box-shadow: 0 16px 36px -5px rgba(37, 99, 235, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
	background: rgba(15, 23, 42, 0.85);
}

.uniteelements-telemetry-icon-wrap {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.uniteelements-t-icon--blue {
	background: rgba(37, 99, 235, 0.15);
	color: #60A5FA;
	border: 1px solid rgba(59, 130, 246, 0.3);
}

.uniteelements-t-icon--emerald {
	background: rgba(16, 185, 129, 0.15);
	color: #34D399;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

.uniteelements-t-icon--purple {
	background: rgba(124, 58, 237, 0.15);
	color: #A78BFA;
	border: 1px solid rgba(124, 58, 237, 0.3);
}

.uniteelements-t-icon--sky {
	background: rgba(14, 165, 233, 0.15);
	color: #38BDF8;
	border: 1px solid rgba(14, 165, 233, 0.3);
}

.uniteelements-telemetry-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.uniteelements-telemetry-text strong {
	font-size: 13.5px;
	font-weight: 800;
	color: #F8FAFC;
	line-height: 1.25;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: -0.01em;
}

.uniteelements-telemetry-text span {
	font-size: 11.5px;
	color: #94A3B8;
	font-weight: 500;
	line-height: 1.3;
	margin-top: 3px;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 1024px) {
	.uniteelements-hero-telemetry-matrix {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-top: 30px;
	}
}

@media (max-width: 640px) {
	.uniteelements-hero-telemetry-matrix {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 24px;
	}
	.uniteelements-telemetry-box {
		padding: 12px 14px;
	}
	.uniteelements-telemetry-text strong,
	.uniteelements-telemetry-text span {
		white-space: normal;
	}
}

/* ==========================================================================
   2. Search Modal
   ========================================================================== */
.uniteelements-search-modal .uniteelements-modal {
	max-width: 620px;
	border-radius: 24px;
	box-shadow: 0 30px 80px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 1) inset;
}

.uniteelements-search-modal .uniteelements-modal__header {
	padding: 20px 24px 16px;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.uniteelements-search-modal .uniteelements-modal__title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #0F172A;
	letter-spacing: -0.01em;
}

.uniteelements-search-modal .uniteelements-modal__close {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	color: #64748B;
	transition: all 0.15s ease;
}

.uniteelements-search-modal .uniteelements-modal__close:hover {
	background: #F1F5F9;
	color: #0F172A;
}

.uniteelements-search-modal .uniteelements-modal__body {
	padding: 24px;
}

.uniteelements-search-form {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
}

.uniteelements-search-input {
	height: 54px;
	width: 100%;
	padding-left: 50px;
	padding-right: 16px;
	font-size: 1rem;
	font-weight: 500;
	background: #FFFFFF;
	border: 1.5px solid #CBD5E1;
	border-radius: 16px;
	color: #0F172A;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
	transition: all 0.2s ease;
}

.uniteelements-search-input::placeholder {
	color: #94A3B8;
	font-weight: 400;
}

.uniteelements-search-input:focus {
	border-color: #2B5DF5;
	box-shadow: 0 0 0 4px rgba(43, 93, 245, 0.15);
	outline: none;
}

.uniteelements-search-icon {
	position: absolute;
	left: 18px;
	color: #64748B;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uniteelements-search-quicklinks {
	margin-top: 16px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.uniteelements-search-quicklinks span {
	font-size: 13px;
	font-weight: 700;
	color: #64748B;
}

.uniteelements-search-quicklinks a.uniteelements-badge {
	background: #F1F5F9;
	color: #334155;
	font-size: 12px;
	font-weight: 600;
	border: 1px solid #E2E8F0;
	border-radius: 999px;
	padding: 5px 14px;
	text-decoration: none;
	transition: all 0.15s ease;
}

.uniteelements-search-quicklinks a.uniteelements-badge:hover {
	background: #EFF6FF;
	color: #2B5DF5;
	border-color: #BFDBFE;
	transform: translateY(-1px);
}

/* ==========================================================================
   3. Hero & Product Ecosystem Visual (Branded Futuristic Light Architecture)
   ========================================================================== */

/* 1. Seamless Hero Stage with Floating Header Integration */
.uniteelements-hero-section {
	margin-top: -72px;
	padding-top: calc(72px + clamp(36px, 4.5vw, 64px));
	padding-bottom: clamp(60px, 7vw, 100px);
	position: relative;
	background: 
		radial-gradient(ellipse 1200px 480px at 50% -40px, rgba(43, 93, 245, 0.12) 0%, rgba(56, 189, 248, 0.08) 40%, transparent 75%),
		radial-gradient(circle 700px at 85% 25%, rgba(99, 102, 241, 0.10) 0%, transparent 60%),
		radial-gradient(circle 650px at 15% 55%, rgba(56, 189, 248, 0.10) 0%, transparent 60%),
		radial-gradient(circle 800px at 50% 100%, rgba(219, 234, 254, 0.45) 0%, transparent 65%),
		linear-gradient(180deg, #F8FAFC 0%, #EFF4FF 30%, #F1F5FD 75%, #F1F5FD 100%);
	overflow: hidden;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.uniteelements-hero-section .uniteelements-container {
	max-width: var(--uniteelements-container-wide, 1280px);
	width: 100%;
	box-sizing: border-box;
}

@media (min-width: 768px) {
	.uniteelements-hero-section {
		padding-top: calc(72px + clamp(42px, 5vw, 68px));
		padding-bottom: clamp(65px, 7.5vw, 110px);
	}
}

@media (min-width: 1024px) {
	.uniteelements-hero-section {
		padding-top: calc(72px + clamp(48px, 5.5vw, 76px));
		padding-bottom: clamp(70px, 8vw, 115px);
	}
}

@media (max-width: 640px) {
	.uniteelements-hero-section {
		margin-top: -62px;
		padding-top: calc(62px + 24px);
		padding-bottom: clamp(48px, 6vw, 70px);
	}
}

/* Zenith Light Beam Radiating Behind Floating Header */
.uniteelements-hero-zenith-beam {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1280px;
	height: 380px;
	background: radial-gradient(ellipse 75% 100% at 50% 0%, rgba(43, 93, 245, 0.16) 0%, rgba(56, 189, 248, 0.10) 45%, transparent 80%);
	pointer-events: none;
	z-index: 1;
}

/* Precision Micro-Dot Matrix (Clean Architectural Texture) */
.uniteelements-hero-bg-grid,
.uniteelements-hero-tech-grid {
	position: absolute;
	inset: 0;
	background-image: 
		linear-gradient(to right, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(37, 99, 235, 0.04) 1px, transparent 1px),
		radial-gradient(rgba(37, 99, 235, 0.08) 1.2px, transparent 1.2px);
	background-size: 36px 36px, 36px 36px, 18px 18px;
	mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000000 35%, transparent 88%);
	-webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000000 35%, transparent 88%);
	pointer-events: none;
	z-index: 1;
}

/* Atmospheric Ambient Aurora Glow & Soft Light Orbs */
.uniteelements-hero-aurora,
.uniteelements-hero-aurora-glow {
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse 900px 320px at 50% 0%, rgba(56, 189, 248, 0.14) 0%, transparent 70%),
		radial-gradient(circle at 78% 28%, rgba(99, 102, 241, 0.12) 0%, transparent 60%),
		radial-gradient(circle at 20% 50%, rgba(43, 93, 245, 0.10) 0%, transparent 55%),
		radial-gradient(circle at 80% 75%, rgba(56, 189, 248, 0.08) 0%, transparent 60%);
	filter: blur(75px);
	pointer-events: none;
	z-index: 1;
}

.uniteelements-hero-ambient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	z-index: 1;
	opacity: 0.55;
}

.uniteelements-orb-left {
	width: 480px;
	height: 480px;
	top: -80px;
	left: -80px;
	background: radial-gradient(circle, rgba(43, 93, 245, 0.16) 0%, transparent 70%);
}

.uniteelements-orb-right {
	width: 520px;
	height: 520px;
	top: 40px;
	right: -100px;
	background: radial-gradient(circle, rgba(56, 189, 248, 0.18) 0%, transparent 70%);
}

.uniteelements-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(28px, 4vw, 44px);
	align-items: center;
	position: relative;
	z-index: 2;
}

@media (min-width: 1024px) {
	.uniteelements-hero-grid {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		gap: clamp(36px, 4vw, 56px);
	}
}

.uniteelements-hero-content {
	display: flex;
	flex-direction: column;
	gap: clamp(14px, 2vw, 20px);
	position: relative;
	z-index: 2;
	min-width: 0;
	max-width: 620px;
}

/* High-Tech Terminal Capsule Badge */
.uniteelements-hero-badge-wrap {
	display: flex;
	align-items: center;
	margin-bottom: 2px;
}

.uniteelements-hero-badge,
.uniteelements-tech-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(43, 93, 245, 0.25);
	border-radius: 9999px;
	padding: 6px 14px;
	box-shadow: 0 4px 16px rgba(43, 93, 245, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	transition: all 0.2s ease;
	max-width: 100%;
}

.uniteelements-hero-badge:hover,
.uniteelements-tech-pill:hover {
	border-color: rgba(43, 93, 245, 0.5);
	box-shadow: 0 6px 20px rgba(43, 93, 245, 0.16);
}

.uniteelements-hero-ping,
.uniteelements-live-ping {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #10B981;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
	animation: uniteelementsPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	flex-shrink: 0;
}

.uniteelements-hero-badge-txt,
.uniteelements-tech-pill__label {
	font-size: 11px;
	font-weight: 800;
	color: #1D44DB;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.uniteelements-hero-badge-divider,
.uniteelements-tech-pill__divider {
	color: #94A3B8;
	font-size: 11px;
	font-weight: 700;
}

.uniteelements-hero-badge-mono,
.uniteelements-tech-pill__mono {
	font-family: var(--uniteelements-font-mono, 'JetBrains Mono', monospace);
	font-size: 11px;
	font-weight: 700;
	color: #0284C7;
	letter-spacing: 0.04em;
}

/* Hero Main Title & Gradient Headline */
.uniteelements-hero-title,
.uniteelements-hero-headline {
	font-size: clamp(2.3rem, 4.5vw, 3.7rem);
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: -0.04em;
	color: #0F172A;
	margin: 0;
	word-break: normal !important;
	overflow-wrap: normal !important;
	word-wrap: normal !important;
	hyphens: none !important;
	white-space: normal !important;
}

.uniteelements-hero-gradient-text {
	background: linear-gradient(135deg, #1E40AF 0%, #2B5DF5 45%, #0284C7 85%, #06B6D4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	word-break: normal !important;
	overflow-wrap: normal !important;
	word-wrap: normal !important;
	hyphens: none !important;
}

.uniteelements-hero-subhead,
.uniteelements-hero-subheadline {
	font-size: clamp(15.5px, 1.2vw, 17.5px);
	color: #475569;
	line-height: 1.65;
	max-width: 560px;
	margin: 0;
	font-weight: 450;
	word-break: normal !important;
	overflow-wrap: normal !important;
}

/* Action Group & Buttons */
.uniteelements-hero-cta-group {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 4px;
}

.uniteelements-hero-cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

.uniteelements-btn-hero-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border-radius: 12px;
	background: linear-gradient(135deg, #2B5DF5 0%, #1D44DB 100%);
	color: #FFFFFF !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 20px -2px rgba(43, 93, 245, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	cursor: pointer;
	white-space: nowrap;
}

.uniteelements-btn-hero-primary * {
	color: #FFFFFF !important;
}

.uniteelements-btn-hero-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px -2px rgba(43, 93, 245, 0.6);
	background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
	color: #FFFFFF !important;
}

/* Secondary Hero Button */
.uniteelements-btn-hero-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 22px;
	border-radius: 12px;
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	color: #1E293B;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
}

.uniteelements-btn-hero-secondary:hover {
	background: #F8FAFC;
	border-color: #CBD5E1;
	color: #2B5DF5;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
}

.btn-flash-tag {
	font-size: 14px;
}

/* Developer CLI Snippet Pill */
.uniteelements-cli-snippet-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #0F172A;
	color: #E2E8F0;
	padding: 10px 16px;
	border-radius: 12px;
	border: 1.5px solid rgba(56, 189, 248, 0.25);
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
	cursor: pointer;
	transition: all 0.2s ease;
	user-select: none;
}

.uniteelements-cli-snippet-pill:hover {
	border-color: rgba(56, 189, 248, 0.6);
	box-shadow: 0 6px 20px rgba(56, 189, 248, 0.2);
	transform: translateY(-2px);
}

.uniteelements-cli-prefix {
	color: #38BDF8;
	font-family: var(--uniteelements-font-mono, monospace);
	font-weight: 700;
	font-size: 13px;
}

.uniteelements-cli-code {
	font-family: var(--uniteelements-font-mono, monospace);
	font-size: 12.5px;
	color: #F8FAFC;
	font-weight: 600;
	background: transparent;
	padding: 0;
}

.uniteelements-cli-copy-btn {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #94A3B8;
	border-radius: 6px;
	padding: 3px 6px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s ease;
	font-size: 11px;
}

.uniteelements-cli-snippet-pill:hover .uniteelements-cli-copy-btn {
	background: #2563EB;
	color: #FFFFFF;
	border-color: #3B82F6;
}

.cli-copy-feedback {
	color: #10B981 !important;
	font-weight: 700;
	font-size: 11.5px;
	font-family: var(--uniteelements-font-mono, monospace);
}

/* Command Palette Quick Search Hint */
.uniteelements-hero-cmd-hint {
	display: flex;
	align-items: center;
}

.uniteelements-cmd-search-trigger {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(226, 232, 240, 0.9);
	padding: 7px 14px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 12.5px;
	color: #64748B;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	text-align: left;
	max-width: 100%;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.uniteelements-cmd-search-trigger:hover {
	color: #0F172A;
	border-color: rgba(43, 93, 245, 0.45);
	background: #FFFFFF;
	box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
	transform: translateY(-1px);
}

.cmd-kbd {
	background: #F1F5F9;
	border: 1px solid #CBD5E1;
	border-radius: 6px;
	padding: 2.5px 7px;
	font-family: var(--uniteelements-font-mono, monospace);
	font-size: 11px;
	font-weight: 700;
	color: #1D44DB;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.cmd-text {
	font-weight: 500;
	letter-spacing: -0.01em;
}

.cmd-arrow {
	transition: transform 0.2s ease;
	color: #2B5DF5;
	font-weight: 700;
}

.uniteelements-cmd-search-trigger:hover .cmd-arrow {
	transform: translateX(4px);
}

/* ==========================================================================
   Interactive Multi-Product Hero Carousel Deck
   ========================================================================== */
.uniteelements-hero-carousel-column {
	position: relative;
	width: 100%;
	min-width: 0;
	display: flex;
	justify-content: flex-end;
}

.uniteelements-product-deck {
	background: #0B1120;
	border: 1.5px solid rgba(56, 189, 248, 0.25);
	border-radius: 20px;
	box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.75), 
	            0 0 0 1px rgba(255, 255, 255, 0.1) inset,
	            0 0 50px -10px rgba(37, 99, 235, 0.35);
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 530px;
	margin-left: auto;
	transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 1023px) {
	.uniteelements-product-deck {
		margin-left: 0;
		max-width: 100%;
	}
}

.uniteelements-product-deck:hover {
	border-color: rgba(56, 189, 248, 0.45);
	box-shadow: 0 30px 70px -12px rgba(11, 17, 32, 0.65), 
	            0 0 0 1px rgba(255, 255, 255, 0.12) inset,
	            0 0 50px -5px rgba(37, 99, 235, 0.35);
}

/* Deck Top Bar */
.uniteelements-deck-topbar {
	background: rgba(15, 23, 42, 0.92);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 12px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	gap: 12px;
}

.uniteelements-deck-dots {
	display: flex;
	align-items: center;
	gap: 6px;
}

.uniteelements-deck-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
}

.uniteelements-deck-dots .dot-r { background: #EF4444; }
.uniteelements-deck-dots .dot-y { background: #F59E0B; }
.uniteelements-deck-dots .dot-g { background: #10B981; }

.uniteelements-deck-status-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-family: var(--uniteelements-font-mono, monospace);
	font-size: 11px;
	font-weight: 700;
	color: #38BDF8;
	background: rgba(56, 189, 248, 0.1);
	border: 1px solid rgba(56, 189, 248, 0.25);
	padding: 3px 10px;
	border-radius: 999px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.deck-pulse-orb {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #10B981;
	box-shadow: 0 0 8px #10B981;
	animation: deckPulse 2s infinite;
}

@keyframes deckPulse {
	0% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(0.85); }
	100% { opacity: 1; transform: scale(1); }
}

.uniteelements-deck-controls-mini {
	display: flex;
	align-items: center;
	gap: 10px;
}

.uniteelements-deck-counter {
	font-family: var(--uniteelements-font-mono, monospace);
	font-size: 11px;
	font-weight: 700;
	color: #94A3B8;
	letter-spacing: 0.05em;
}

.uniteelements-deck-counter #heroCurrentIndex {
	color: #38BDF8;
	font-weight: 800;
}

.uniteelements-deck-nav-btns {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(30, 41, 59, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 2px;
}

.deck-nav-btn {
	background: transparent;
	border: none;
	color: #94A3B8;
	cursor: pointer;
	padding: 4px 6px;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.15s ease;
}

.deck-nav-btn:hover {
	color: #FFFFFF;
	background: rgba(255, 255, 255, 0.12);
}

/* Viewport & Track */
.uniteelements-deck-viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.uniteelements-deck-track {
	display: flex;
	transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
	width: 100%;
}

.uniteelements-deck-slide {
	min-width: 100%;
	width: 100%;
	flex-shrink: 0;
	box-sizing: border-box;
}

.uniteelements-deck-card {
	padding: 22px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Top Meta Badges */
.uniteelements-deck-card-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.uniteelements-deck-badges {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.uniteelements-mini-pill {
	font-size: 10.5px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 999px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.uniteelements-mini-pill--blue {
	background: rgba(37, 99, 235, 0.2);
	color: #60A5FA;
	border: 1px solid rgba(37, 99, 235, 0.4);
}

.uniteelements-mini-pill--mono {
	background: rgba(56, 189, 248, 0.12);
	color: #38BDF8;
	border: 1px solid rgba(56, 189, 248, 0.3);
	font-family: var(--uniteelements-font-mono, monospace);
}

.uniteelements-mini-pill--emerald {
	background: rgba(16, 185, 129, 0.15);
	color: #34D399;
	border: 1px solid rgba(16, 185, 129, 0.35);
}

.uniteelements-deck-rating {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11.5px;
}

.rating-stars {
	color: #F59E0B;
	letter-spacing: 1px;
}

.rating-val {
	color: #CBD5E1;
	font-weight: 700;
	font-family: var(--uniteelements-font-mono, monospace);
}

/* Main Product Visual & Details */
.uniteelements-deck-card-main {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.uniteelements-deck-card-visual {
	width: 56px;
	height: 56px;
	border-radius: 14px;
	background: rgba(30, 41, 59, 0.8);
	border: 1px solid rgba(56, 189, 248, 0.3);
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.deck-prod-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.deck-prod-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
}

.uniteelements-deck-card-info {
	flex: 1;
	min-width: 0;
}

.uniteelements-deck-card-title {
	font-size: 1.25rem;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 6px 0;
	line-height: 1.25;
	letter-spacing: -0.01em;
}

.uniteelements-deck-card-title a {
	color: #FFFFFF;
	text-decoration: none;
	transition: color 0.15s ease;
}

.uniteelements-deck-card-title a:hover {
	color: #38BDF8;
}

.uniteelements-deck-card-desc {
	font-size: 12.5px;
	color: #94A3B8;
	margin: 0;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Stack Matrix */
.uniteelements-deck-stack-matrix {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.deck-stack-chip {
	font-family: var(--uniteelements-font-mono, monospace);
	font-size: 11px;
	font-weight: 600;
	color: #CBD5E1;
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.08);
	padding: 3px 9px;
	border-radius: 6px;
}

/* Security Strip */
.uniteelements-deck-security-strip {
	background: rgba(16, 185, 129, 0.08);
	border: 1px solid rgba(16, 185, 129, 0.22);
	border-radius: 10px;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	font-size: 11.5px;
	font-weight: 700;
	color: #34D399;
}

.sec-strip-left {
	display: flex;
	align-items: center;
	gap: 6px;
}

.sec-strip-escrow {
	font-size: 10.5px;
	color: #6EE7B7;
	background: rgba(16, 185, 129, 0.15);
	padding: 2px 6px;
	border-radius: 4px;
	font-family: var(--uniteelements-font-mono, monospace);
}

/* Price & Action Row */
.uniteelements-deck-footer-action {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.uniteelements-deck-price-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	min-width: 0;
}

.uniteelements-deck-price-label {
	font-size: 10px;
	font-weight: 700;
	color: #64748B;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-family: var(--uniteelements-font-mono, monospace);
}

.uniteelements-deck-price-val {
	display: inline-flex;
	align-items: baseline;
	gap: 8px;
	flex-wrap: wrap;
	line-height: 1;
}

/* Strikethrough Regular/Original Price */
.uniteelements-deck-price-val del,
.uniteelements-deck-price-val del .woocommerce-Price-amount,
.uniteelements-deck-price-val del bdi {
	font-size: 14px !important;
	font-weight: 500 !important;
	color: #64748B !important;
	text-decoration: line-through !important;
	text-decoration-color: #EF4444 !important;
	text-decoration-thickness: 1.5px !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	opacity: 0.8 !important;
	margin-right: 2px;
}

.uniteelements-deck-price-val del .woocommerce-Price-currencySymbol {
	font-size: 12px !important;
	color: inherit !important;
	font-weight: 500 !important;
	opacity: 0.8 !important;
}

/* Main Sale or Current Price */
.uniteelements-deck-price-val ins,
.uniteelements-deck-price-val > .woocommerce-Price-amount,
.uniteelements-deck-price-val > .woocommerce-Price-amount bdi,
.uniteelements-deck-price-val ins .woocommerce-Price-amount,
.uniteelements-deck-price-val ins bdi {
	font-size: clamp(1.4rem, 2.4vw, 1.7rem) !important;
	font-weight: 900 !important;
	color: #38BDF8 !important;
	text-decoration: none !important;
	line-height: 1 !important;
	letter-spacing: -0.025em !important;
	font-feature-settings: 'tnum' on, 'lnum' on;
}

.uniteelements-deck-price-val ins .woocommerce-Price-currencySymbol,
.uniteelements-deck-price-val > .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
	font-size: 0.82em !important;
	font-weight: 700 !important;
	margin-right: 1px !important;
	color: inherit !important;
	opacity: 0.95;
}

/* Discount Pill Badge */
.uniteelements-deck-discount-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10.5px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 6px;
	background: rgba(16, 185, 129, 0.15);
	color: #34D399;
	border: 1px solid rgba(16, 185, 129, 0.35);
	letter-spacing: 0.02em;
	line-height: 1.2;
	vertical-align: middle;
	align-self: center;
}

.uniteelements-btn-deck-deploy {
	background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
	color: #FFFFFF !important;
	font-size: 13px;
	font-weight: 800;
	padding: 11px 22px;
	border-radius: 999px;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 4px 18px rgba(37, 99, 235, 0.4);
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	white-space: nowrap;
	flex-shrink: 0;
}

.uniteelements-btn-deck-deploy:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.55);
	background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
	color: #FFFFFF !important;
}

/* Deck Bottom Bar */
.uniteelements-deck-bottom-bar {
	background: rgba(15, 23, 42, 0.6);
	padding: 10px 18px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.uniteelements-deck-dots-nav {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.uniteelements-deck-dot-pill {
	display: block !important;
	width: 20px !important;
	height: 6px !important;
	min-width: 20px !important;
	max-width: 36px !important;
	min-height: 6px !important;
	max-height: 6px !important;
	border-radius: 999px !important;
	background: rgba(255, 255, 255, 0.22) !important;
	border: none !important;
	cursor: pointer !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	flex-shrink: 0 !important;
	-webkit-appearance: none !important;
	appearance: none !important;
	transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, box-shadow 0.3s ease !important;
}

.uniteelements-deck-dot-pill.is-active {
	width: 36px !important;
	min-width: 36px !important;
	background: #38BDF8 !important;
	box-shadow: 0 0 10px rgba(56, 189, 248, 0.7) !important;
}

.quick-peek-hint {
	font-size: 11px;
	color: #64748B;
	font-weight: 500;
}

@media (max-width: 768px) {
	.uniteelements-hero-cta-row {
		flex-direction: column;
		align-items: stretch;
	}
	.uniteelements-btn-hero-primary,
	.uniteelements-btn-hero-secondary {
		width: 100%;
		box-sizing: border-box;
		justify-content: center;
	}
	.uniteelements-deck-card {
		padding: 16px;
	}
	.uniteelements-deck-card-title {
		font-size: 1.1rem;
	}
	.uniteelements-deck-quick-peek {
		display: none;
	}
}

@media (max-width: 640px) {
	.uniteelements-hero-section {
		padding: var(--uniteelements-space-8) 0 var(--uniteelements-space-10);
		overflow: hidden;
		max-width: 100vw;
	}
	.uniteelements-hero-badge {
		max-width: 100%;
		flex-wrap: wrap;
		gap: 6px;
		padding: 5px 10px;
	}
	.uniteelements-hero-badge-txt {
		font-size: 10px;
	}
	.uniteelements-hero-badge-mono {
		font-size: 10px;
	}
	.uniteelements-deck-topbar {
		padding: 10px 14px;
		flex-wrap: wrap;
		gap: 8px;
	}
	.uniteelements-deck-status-badge {
		font-size: 10px;
		padding: 2px 8px;
	}
	.uniteelements-deck-card-topbar {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
	.uniteelements-deck-badges {
		flex-wrap: wrap;
		gap: 4px;
	}
	.uniteelements-deck-stack-matrix {
		flex-wrap: wrap;
		gap: 4px;
	}
	.deck-stack-chip {
		font-size: 10px;
		padding: 2px 7px;
	}
	.uniteelements-deck-security-strip {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
		padding: 8px 10px;
	}
	.uniteelements-deck-footer-action {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
	}
	.uniteelements-deck-price-val {
		justify-content: flex-start;
	}
	.uniteelements-btn-deck-deploy {
		width: 100%;
		box-sizing: border-box;
		text-align: center;
		justify-content: center;
	}
}


/* ==========================================================================
   Spotlight Drop & Offers Section
   ========================================================================== */
.uniteelements-offer-section,
.uniteelements-spotlight-drop-section {
	margin: 24px 0 48px;
}

@media (min-width: 960px) {
	.uniteelements-spotlight-2col-layout {
		grid-template-columns: 1.18fr 0.82fr !important;
		gap: 40px !important;
	}
}

@media (max-width: 640px) {
	.uniteelements-spotlight-drop-section {
		margin: 16px 0 28px;
	}
}

.uniteelements-deal-content {
	display: flex;
	flex-direction: column;
	gap: var(--uniteelements-space-4);
}

.uniteelements-deal-price-row {
	display: flex;
	align-items: baseline;
	gap: var(--uniteelements-space-3);
	margin-top: var(--uniteelements-space-2);
}

/* ==========================================================================
   5. Ecosystem Category Navigation
   ========================================================================== */
.uniteelements-ecosystem-section {
	margin: var(--uniteelements-space-16) 0;
}

.uniteelements-section-header {
	display: flex;
	flex-direction: column;
	gap: var(--uniteelements-space-2);
	margin-bottom: var(--uniteelements-space-8);
}

.uniteelements-category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: var(--uniteelements-space-4);
}

.uniteelements-category-card {
	background-color: var(--uniteelements-bg-surface);
	border: 1px solid var(--uniteelements-border-default);
	border-radius: var(--uniteelements-radius-lg);
	padding: var(--uniteelements-space-5);
	display: flex;
	flex-direction: column;
	gap: var(--uniteelements-space-3);
	text-decoration: none;
	transition: var(--uniteelements-transition);
}

.uniteelements-category-card:hover {
	border-color: var(--uniteelements-primary-300);
	transform: translateY(-2px);
	box-shadow: var(--uniteelements-shadow-md);
}

.uniteelements-category-card__icon {
	width: 36px;
	height: 36px;
	border-radius: var(--uniteelements-radius-md);
	background-color: var(--uniteelements-primary-50);
	color: var(--uniteelements-primary-500);
	display: flex;
	align-items: center;
	justify-content: center;
}

.uniteelements-category-card__icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.uniteelements-category-card__title {
	font-size: var(--uniteelements-font-size-h4);
	font-weight: var(--uniteelements-font-weight-semibold);
	color: var(--uniteelements-text-primary);
	margin: 0;
}

.uniteelements-category-card__desc {
	font-size: var(--uniteelements-font-size-caption);
	color: var(--uniteelements-text-secondary);
	margin: 0;
}

/* ==========================================================================
   6. Software Product Card Layout (Unified in components/products.css)
   ========================================================================== */

/* ==========================================================================
   7. Featured Editorial Collection (1 Large + 3 Compact)
   ========================================================================== */
.uniteelements-featured-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--uniteelements-space-6);
}

@media (min-width: 1024px) {
	.uniteelements-featured-grid {
		grid-template-columns: 1.2fr 1fr;
	}
}

.uniteelements-featured-secondary-stack {
	display: flex;
	flex-direction: column;
	gap: var(--uniteelements-space-4);
}

/* ==========================================================================
   8. Bundles Section
   ========================================================================== */
.uniteelements-bundles-section {
	margin: var(--uniteelements-space-16) 0;
}

.uniteelements-bundle-panel {
	background-color: var(--uniteelements-glass-strong-bg);
	backdrop-filter: var(--uniteelements-glass-strong-blur);
	-webkit-backdrop-filter: var(--uniteelements-glass-strong-blur);
	border: 1px solid var(--uniteelements-glass-strong-border);
	border-radius: var(--uniteelements-radius-2xl);
	padding: var(--uniteelements-space-10);
	box-shadow: var(--uniteelements-glass-highlight), var(--uniteelements-shadow-glass);
}

.uniteelements-bundle-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--uniteelements-space-8);
	align-items: center;
}

@media (min-width: 960px) {
	.uniteelements-bundle-grid {
		grid-template-columns: 1fr 1fr;
	}
}

/* ==========================================================================
   9. Custom Development Services Studio
   ========================================================================== */
.uniteelements-services-section {
	margin: var(--uniteelements-space-16) 0;
}

.uniteelements-service-card {
	padding: var(--uniteelements-space-6);
	display: flex;
	flex-direction: column;
	gap: var(--uniteelements-space-3);
}

/* ==========================================================================
   10. Final CTA Glass Banner
   ========================================================================== */
.uniteelements-final-cta-section {
	margin: var(--uniteelements-space-16) 0;
}

.uniteelements-cta-banner {
	text-align: center;
	padding: var(--uniteelements-space-12) var(--uniteelements-space-6);
	background: radial-gradient(circle at 50% -20%, rgba(43, 93, 245, 0.12), transparent 70%), var(--uniteelements-glass-strong-bg);
	backdrop-filter: var(--uniteelements-glass-strong-blur);
	-webkit-backdrop-filter: var(--uniteelements-glass-strong-blur);
	border: 1px solid var(--uniteelements-primary-200);
	border-radius: var(--uniteelements-radius-2xl);
	box-shadow: var(--uniteelements-shadow-glass);
	max-width: 960px;
	margin: 0 auto;
}

/* ==========================================================================
   11. Advanced Footer Styling (High-Creative Desktop & Strict 2-Column Mobile Grid)
   ========================================================================== */
.uniteelements-advanced-footer {
	padding: clamp(52px, 6vw, 80px) 0 32px;
	background: radial-gradient(100% 80% at 50% 0%, #FFFFFF 0%, #F8FAFC 55%, #F1F5F9 100%);
	border-top: 1px solid var(--uniteelements-border-subtle, #E2E8F0);
	position: relative;
	overflow: hidden;
}

/* Subtle top glow highlight line */
.uniteelements-advanced-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent 0%, rgba(37, 99, 235, 0.2) 20%, rgba(59, 130, 246, 0.75) 50%, rgba(37, 99, 235, 0.2) 80%, transparent 100%);
	pointer-events: none;
}

/* Background ambient micro-glow */
.uniteelements-advanced-footer::after {
	content: '';
	position: absolute;
	top: -120px;
	left: 50%;
	transform: translateX(-50%);
	width: 720px;
	height: 240px;
	background: radial-gradient(ellipse, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
	pointer-events: none;
	z-index: 0;
}

.uniteelements-advanced-footer .uniteelements-container {
	position: relative;
	z-index: 1;
}

/* Footer Main Grid: 5 columns on desktop, 4 on tablet, strict 2 on mobile */
.uniteelements-footer-grid {
	display: grid;
	grid-template-columns: 1.55fr 1fr 1fr 1fr 1fr;
	gap: 40px 28px;
	padding-bottom: clamp(36px, 4.5vw, 52px);
	border-bottom: 1px solid var(--uniteelements-border-subtle, #E2E8F0);
	margin-bottom: var(--uniteelements-space-6, 20px);
}

.uniteelements-footer-brand-col {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.uniteelements-footer-brand-wrap {
	margin-bottom: 2px;
}

.uniteelements-footer-bio {
	color: var(--uniteelements-text-secondary, #64748B);
	max-width: 320px;
	margin: 0;
	font-size: 13.5px;
	line-height: 1.6;
	letter-spacing: -0.01em;
}

/* Enterprise Cloud & Infrastructure Badge */
.uniteelements-footer-infra-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	padding: 5px 11px;
	font-size: 11.5px;
	font-weight: 600;
	color: #475569;
	width: fit-content;
	line-height: 1.4;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	transition: all 0.2s ease;
}

.uniteelements-footer-infra-badge:hover {
	border-color: #CBD5E1;
	background: #F1F5F9;
}

.uniteelements-footer-infra-badge .uniteelements-infra-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #3B82F6;
	flex-shrink: 0;
	box-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

/* Live System Status Pill */
.uniteelements-live-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 12px;
	border-radius: 999px;
	background: rgba(220, 252, 231, 0.8);
	border: 1px solid rgba(187, 247, 208, 0.95);
	font-size: 11px;
	font-weight: 700;
	color: #15803D;
	width: fit-content;
	backdrop-filter: blur(4px);
}

.uniteelements-status-pulse-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #16A34A;
	box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
	animation: uniteelementsPulse 2s infinite;
}

@keyframes uniteelementsPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
	}
	70% {
		box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
	}
}

/* Support Desk Direct Action Pill */
.uniteelements-footer-support-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #EFF6FF;
	border: 1px solid rgba(37, 99, 235, 0.25);
	color: #2563EB;
	font-size: 12px;
	font-weight: 700;
	padding: 7px 14px;
	border-radius: 10px;
	text-decoration: none;
	width: fit-content;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 1px 3px rgba(37, 99, 235, 0.08);
}

.uniteelements-footer-support-btn:hover {
	background: #2563EB;
	color: #FFFFFF !important;
	border-color: #2563EB;
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
	text-decoration: none;
}

.uniteelements-footer-support-btn .uniteelements-btn-arrow {
	transition: transform 0.2s ease;
	font-size: 13px;
}

.uniteelements-footer-support-btn:hover .uniteelements-btn-arrow {
	transform: translateX(3px);
}

/* Social Profile Icons */
.uniteelements-footer-socials {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 2px;
}

.uniteelements-social-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 10px;
	background: #FFFFFF;
	color: #475569;
	border: 1px solid #E2E8F0;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.uniteelements-social-icon-btn:hover {
	background: #2563EB;
	color: #FFFFFF !important;
	border-color: #2563EB;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Navigation Columns Styling */
.uniteelements-footer-col {
	min-width: 0;
}

.uniteelements-footer-heading {
	font-size: 12px;
	font-weight: 800;
	color: var(--uniteelements-text-primary, #0F172A);
	margin: 0 0 16px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	gap: 8px;
}

.uniteelements-footer-heading::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2563EB;
	flex-shrink: 0;
	box-shadow: 0 0 6px rgba(37, 99, 235, 0.6);
}

.uniteelements-footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}

.uniteelements-footer-links a {
	color: var(--uniteelements-text-secondary, #64748B);
	font-size: 13.5px;
	line-height: 1.5;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.18s ease, transform 0.18s ease;
	display: inline-block;
}

.uniteelements-footer-links a:hover {
	color: var(--uniteelements-primary-600, #2563EB);
	transform: translateX(3px);
	text-decoration: none;
}

/* ==========================================================================
   Full-Width Security, Trust & Compliance Verification Dock
   ========================================================================== */
.uniteelements-footer-trust-dock {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.95) 100%);
	border: 1px solid rgba(226, 232, 240, 0.85);
	border-radius: 14px;
	padding: 12px 18px;
	margin-bottom: 24px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(8px);
}

.uniteelements-trust-dock-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.uniteelements-trust-dock-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	color: #334155;
	letter-spacing: 0.02em;
}

.uniteelements-trust-shield-icon {
	color: #2563EB;
	flex-shrink: 0;
}

.uniteelements-trust-badges-flow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.uniteelements-trust-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 11.5px;
	font-weight: 600;
	color: #475569;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	padding: 0 10px;
	height: 28px;
	border-radius: 8px;
	line-height: 1;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
	box-sizing: border-box;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.uniteelements-badge-bolt {
	font-size: 11px;
}

.uniteelements-trust-badge-link {
	text-decoration: none !important;
	color: #475569;
	cursor: pointer;
}

.uniteelements-trust-badge-link:hover {
	background: #EFF6FF;
	border-color: rgba(37, 99, 235, 0.35);
	color: #2563EB;
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(37, 99, 235, 0.12);
}

.uniteelements-pill-tag-green {
	color: #16A34A;
	font-weight: 800;
	font-size: 10px;
}

.uniteelements-pill-tag-grade {
	background: #16A34A;
	color: #FFFFFF;
	font-size: 9.5px;
	font-weight: 800;
	padding: 1px 4px;
	border-radius: 3px;
	line-height: 1.2;
}

.uniteelements-trust-dmca-pill {
	display: inline-flex;
	align-items: center;
	height: 28px;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.uniteelements-trust-dmca-pill:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.uniteelements-trust-dmca-pill img {
	height: 28px;
	width: auto;
	display: block;
	border-radius: 6px;
}

/* Footer Bottom Bar */
.uniteelements-footer-bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 12.5px;
	color: var(--uniteelements-text-muted, #64748B);
}

@media (min-width: 900px) {
	.uniteelements-footer-bottom {
		flex-direction: row;
		text-align: left;
	}
}

.uniteelements-footer-bottom-left {
	font-weight: 500;
}

.uniteelements-footer-bottom-right {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.uniteelements-footer-engineered-by {
	font-size: 12px;
}

.uniteelements-author-link {
	color: var(--uniteelements-primary-600, #2563EB);
	font-weight: 700;
	text-decoration: none;
}

.uniteelements-author-link:hover {
	text-decoration: underline;
}

.uniteelements-back-to-top {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 8px;
	background: #EFF6FF;
	color: #2563EB;
	font-weight: 700;
	font-size: 12px;
	text-decoration: none;
	border: 1px solid rgba(37, 99, 235, 0.18);
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.2s ease;
	line-height: 1.4;
}

.uniteelements-back-to-top .uniteelements-back-arrow {
	font-size: 13px;
	line-height: 1;
	transition: transform 0.2s ease;
}

.uniteelements-back-to-top:hover {
	background: #2563EB;
	color: #FFFFFF !important;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}

.uniteelements-back-to-top:hover .uniteelements-back-arrow {
	transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Breakpoints: Tablet (768px-1023px) & Mobile (<768px)
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1023px) {
	.uniteelements-footer-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 32px 20px;
	}
	.uniteelements-footer-brand-col {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
		padding-bottom: 24px;
		border-bottom: 1px solid var(--uniteelements-border-subtle, #E2E8F0);
		margin-bottom: 8px;
	}
}

@media (max-width: 767px) {
	.uniteelements-advanced-footer {
		padding: 40px 0 96px; /* 96px clearance for floating WhatsApp Help Desk button */
	}

	/* STRICT 2-COLUMN MOBILE GRID */
	.uniteelements-footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px 14px;
		padding-bottom: 32px;
		margin-bottom: 20px;
	}

	.uniteelements-footer-brand-col {
		grid-column: 1 / -1;
		padding-bottom: 24px;
		border-bottom: 1px solid var(--uniteelements-border-subtle, #E2E8F0);
		margin-bottom: 4px;
	}

	.uniteelements-footer-heading {
		font-size: 11px;
		letter-spacing: 0.05em;
		margin-bottom: 12px;
	}

	.uniteelements-footer-links {
		gap: 8px;
	}

	.uniteelements-footer-links a {
		font-size: 13px;
		line-height: 1.4;
		word-break: break-word;
		padding: 2px 0;
	}

	.uniteelements-footer-trust-dock {
		padding: 12px 14px;
		margin-bottom: 20px;
	}

	.uniteelements-trust-dock-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.uniteelements-trust-badges-flow {
		gap: 8px;
	}

	.uniteelements-trust-badge-pill {
		font-size: 11px;
		padding: 0 8px;
		height: 26px;
	}

	.uniteelements-trust-dmca-pill,
	.uniteelements-trust-dmca-pill img {
		height: 26px;
	}

	.uniteelements-footer-bottom {
		gap: 14px;
		text-align: center;
	}

	.uniteelements-footer-bottom-left {
		font-size: 11.5px;
		line-height: 1.5;
	}

	.uniteelements-footer-bottom-right {
		flex-direction: column;
		gap: 8px;
	}
}

/* ==========================================================================
   Latest Product Drops Section (Clean Left-Alignment & Mobile Optimized)
   ========================================================================== */
.uniteelements-products-section {
	padding: clamp(40px, 6vw, 80px) 0;
	position: relative;
}

.uniteelements-drops-header-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: clamp(24px, 4vw, 36px);
}

.uniteelements-drops-header-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 8px;
	max-width: 100%;
}

.uniteelements-drops-badge {
	display: inline-flex !important;
	align-items: center;
	align-self: flex-start !important;
	width: fit-content !important;
	max-width: max-content !important;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 9999px;
	background: rgba(43, 93, 245, 0.08);
	border: 1px solid rgba(43, 93, 245, 0.2);
	color: #2B5DF5;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 1.2;
	box-sizing: border-box;
	margin: 0;
}

.uniteelements-drops-badge__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2B5DF5;
	flex-shrink: 0;
}

.uniteelements-drops-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(24px, 4.5vw, 36px);
	font-weight: 800;
	color: #0F172A;
	letter-spacing: -0.03em;
	margin: 0;
	padding: 0;
	line-height: 1.15;
	text-align: left;
	overflow-wrap: break-word;
	word-break: break-word;
}

.uniteelements-btn-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: 9999px;
	background: #FFFFFF;
	border: 1.5px solid #CBD5E1;
	color: #0F172A;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: all 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.uniteelements-btn-view-all:hover {
	border-color: #2B5DF5;
	color: #2B5DF5;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(43, 93, 245, 0.12);
}

@media (max-width: 640px) {
	.uniteelements-drops-header-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		margin-bottom: 24px;
	}

	.uniteelements-drops-header-block {
		width: 100%;
		align-items: flex-start;
		text-align: left;
		gap: 6px;
	}

	.uniteelements-drops-badge {
		align-self: flex-start !important;
		font-size: 10.5px;
		padding: 3.5px 10px;
	}

	.uniteelements-drops-title {
		font-size: clamp(22px, 6.5vw, 28px);
		line-height: 1.2;
		text-align: left;
	}

	.uniteelements-btn-view-all {
		align-self: flex-start;
		padding: 8px 16px;
		font-size: 12.5px;
	}
}

/* ==========================================================================
   AEO Direct Answers & Technical FAQ Section
   ========================================================================== */
.uniteelements-faq-section {
	padding: clamp(48px, 6vw, 96px) 0;
	position: relative;
	background: linear-gradient(180deg, rgba(248, 250, 252, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
}

.uniteelements-faq-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto clamp(32px, 4vw, 48px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.uniteelements-faq-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 12px;
	border-radius: 9999px;
	background: rgba(43, 93, 245, 0.08);
	border: 1px solid rgba(43, 93, 245, 0.2);
	color: #2B5DF5;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.uniteelements-faq-badge__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2B5DF5;
	flex-shrink: 0;
}

.uniteelements-faq-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: clamp(24px, 4vw, 36px);
	font-weight: 800;
	color: #0F172A;
	letter-spacing: -0.03em;
	margin: 0;
	line-height: 1.15;
}

.uniteelements-faq-subtitle {
	font-size: 14.5px;
	color: #64748B;
	margin: 0;
	line-height: 1.5;
}

.uniteelements-faq-accordion {
	max-width: 840px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.uniteelements-faq-item {
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	border-radius: 14px;
	overflow: hidden;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.uniteelements-faq-item[open] {
	border-color: rgba(43, 93, 245, 0.35);
	box-shadow: 0 8px 24px rgba(43, 93, 245, 0.08);
}

.uniteelements-faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 15.5px;
	font-weight: 700;
	color: #0F172A;
	cursor: pointer;
	user-select: none;
	list-style: none !important;
}

.uniteelements-faq-question::-webkit-details-marker,
.uniteelements-faq-question::marker {
	display: none !important;
	content: "" !important;
	font-size: 0 !important;
	width: 0 !important;
	height: 0 !important;
}

.uniteelements-faq-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 8px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	color: #64748B;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.uniteelements-faq-item[open] .uniteelements-faq-icon {
	background: #2B5DF5;
	border-color: #2B5DF5;
	color: #FFFFFF;
	transform: rotate(45deg);
}

.uniteelements-faq-answer {
	padding: 0 22px 20px 22px;
	font-size: 14px;
	line-height: 1.6;
	color: #475569;
	border-top: 1px solid transparent;
}

.uniteelements-faq-item[open] .uniteelements-faq-answer {
	border-top-color: rgba(43, 93, 245, 0.08);
	padding-top: 14px;
}

.uniteelements-faq-answer p {
	margin: 0;
}

@media (max-width: 640px) {
	.uniteelements-faq-header {
		text-align: left;
		align-items: flex-start;
	}

	.uniteelements-faq-title {
		font-size: clamp(22px, 6.5vw, 28px);
	}

	.uniteelements-faq-question {
		padding: 14px 16px;
		font-size: 14.5px;
	}

	.uniteelements-faq-answer {
		padding: 0 16px 16px 16px;
		font-size: 13.5px;
	}
}



/* ==========================================================================
   ADVANCED CREATIVE ACCOUNT MEGA MENU HUB (Obsidian Cyber Glass)
   ========================================================================== */
.header-account-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.header-account-wrap .header-account-btn {
	cursor: pointer;
	position: relative;
	z-index: 1002;
}

.ue-account-megamenu {
	position: absolute;
	top: calc(100% + 14px);
	right: -8px;
	width: 580px;
	max-width: calc(100vw - 24px);
	background: rgba(10, 15, 29, 0.96);
	backdrop-filter: blur(32px) saturate(210%);
	-webkit-backdrop-filter: blur(32px) saturate(210%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	box-shadow: 0 28px 70px -10px rgba(0, 0, 0, 0.65),
	            0 12px 30px -5px rgba(37, 99, 235, 0.22),
	            0 0 0 1px rgba(255, 255, 255, 0.05),
	            inset 0 1px 0 rgba(255, 255, 255, 0.18);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px) scale(0.97);
	transform-origin: top right;
	transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1),
	            transform 0.22s cubic-bezier(0.16, 1, 0.3, 1),
	            visibility 0.22s;
	z-index: 1050;
	box-sizing: border-box;
	overflow: hidden;
	text-align: left;
}

/* Invisible Hover Bridge - prevents mouseout flicker */
.ue-account-megamenu::before {
	content: '';
	position: absolute;
	top: -18px;
	left: 0;
	right: 0;
	height: 18px;
	background: transparent;
	pointer-events: auto;
}

/* Open on hover, focus, or tap */
.header-account-wrap:hover .ue-account-megamenu,
.header-account-wrap:focus-within .ue-account-megamenu,
.ue-account-megamenu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0) scale(1);
}

.ue-acc-mega-inner {
	display: flex;
	flex-direction: column;
}

/* 1. Header & Identity */
.ue-acc-hero {
	padding: 16px 18px 14px;
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.2) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ue-acc-user-row {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.ue-acc-avatar-wrap {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	flex-shrink: 0;
	border: 2px solid rgba(255, 255, 255, 0.15);
	background: #1E293B;
}

.ue-acc-avatar {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.ue-acc-online-dot {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #10B981;
	border: 2px solid #0A0F1D;
	box-shadow: 0 0 6px rgba(16, 185, 129, 0.7);
}

.ue-acc-user-meta {
	flex: 1;
	min-width: 0;
}

.ue-acc-user-name-line {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ue-acc-user-name {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 14.5px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: -0.01em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 220px;
}

.ue-acc-role-pill {
	display: inline-flex;
	align-items: center;
	padding: 2px 7px;
	border-radius: 999px;
	background: rgba(56, 189, 248, 0.12);
	border: 1px solid rgba(56, 189, 248, 0.3);
	color: #38BDF8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.ue-acc-user-email {
	font-size: 11.5px;
	color: #94A3B8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 280px;
	margin-top: 1px;
}

.ue-acc-manage-link {
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #94A3B8;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
	flex-shrink: 0;
	text-decoration: none;
}

.ue-acc-manage-link:hover {
	background: rgba(56, 189, 248, 0.15);
	border-color: rgba(56, 189, 248, 0.4);
	color: #38BDF8;
	transform: rotate(45deg);
}

/* Telemetry Metrics Row */
.ue-acc-telemetry-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.ue-telemetry-pill {
	display: flex;
	align-items: center;
	gap: 7px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 6px 10px;
	text-decoration: none;
	transition: all 0.2s ease;
	overflow: hidden;
}

.ue-telemetry-pill:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(56, 189, 248, 0.3);
	transform: translateY(-1px);
}

.ue-tele-icon {
	font-size: 13px;
	line-height: 1;
	flex-shrink: 0;
}

.ue-tele-text {
	font-size: 11px;
	color: #CBD5E1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.2;
}

.ue-tele-text strong {
	color: #FFFFFF;
	font-weight: 700;
}

/* 2. Grid Layout */
.ue-acc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	padding: 14px 16px;
}

.ue-acc-grid-col {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ue-acc-col-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 4px 8px 8px;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #64748B;
}

.ue-acc-col-tag {
	font-size: 9.5px;
	font-weight: 800;
	padding: 1px 6px;
	border-radius: 4px;
	background: rgba(56, 189, 248, 0.1);
	color: #38BDF8;
	letter-spacing: 0.04em;
}

.ue-tag-network {
	background: rgba(168, 85, 247, 0.1) !important;
	color: #C084FC !important;
}

/* Navigation Item */
.ue-acc-menu-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	border-radius: 12px;
	text-decoration: none;
	background: transparent;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid transparent;
}

.ue-acc-menu-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.08);
	transform: translateX(3px);
}

.ue-acc-item-icon {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

.ue-icon-blue    { background: rgba(56, 189, 248, 0.12); color: #38BDF8; border: 1px solid rgba(56, 189, 248, 0.22); }
.ue-icon-indigo  { background: rgba(129, 140, 248, 0.12); color: #818CF8; border: 1px solid rgba(129, 140, 248, 0.22); }
.ue-icon-emerald { background: rgba(16, 185, 129, 0.12); color: #34D399; border: 1px solid rgba(16, 185, 129, 0.22); }
.ue-icon-amber   { background: rgba(245, 158, 11, 0.12); color: #FBBF24; border: 1px solid rgba(245, 158, 11, 0.22); }
.ue-icon-cyan    { background: rgba(6, 182, 212, 0.12); color: #22D3EE; border: 1px solid rgba(6, 182, 212, 0.22); }
.ue-icon-purple  { background: rgba(168, 85, 247, 0.12); color: #C084FC; border: 1px solid rgba(168, 85, 247, 0.22); }
.ue-icon-rose    { background: rgba(244, 63, 94, 0.12); color: #FB7185; border: 1px solid rgba(244, 63, 94, 0.22); }
.ue-icon-violet  { background: rgba(139, 92, 246, 0.12); color: #A78BFA; border: 1px solid rgba(139, 92, 246, 0.22); }

.ue-acc-menu-item:hover .ue-acc-item-icon {
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.ue-acc-item-body {
	flex: 1;
	min-width: 0;
}

.ue-acc-item-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	color: #F1F5F9;
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1.25;
}

.ue-badge-counter {
	display: inline-block;
	padding: 1px 6px;
	border-radius: 999px;
	background: rgba(56, 189, 248, 0.18);
	color: #38BDF8;
	font-size: 9.5px;
	font-weight: 700;
	line-height: 1.2;
}

.ue-badge-danger {
	background: rgba(239, 68, 68, 0.2) !important;
	color: #F87171 !important;
}

.ue-badge-hot {
	display: inline-block;
	padding: 1px 5px;
	border-radius: 4px;
	background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
	color: #FFFFFF;
	font-size: 8.5px;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.ue-acc-item-desc {
	font-size: 11px;
	color: #94A3B8;
	line-height: 1.25;
	margin-top: 1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ue-acc-item-arrow {
	color: #475569;
	transition: all 0.2s ease;
	flex-shrink: 0;
	margin-left: auto;
}

.ue-acc-menu-item:hover .ue-acc-item-arrow {
	color: #38BDF8;
	transform: translateX(3px);
}

/* 3. Quick Utility Footer */
.ue-acc-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	background: rgba(0, 0, 0, 0.35);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	gap: 12px;
}

.ue-acc-copy-ref-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: 11.5px;
	font-weight: 600;
	color: #CBD5E1;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.ue-acc-copy-ref-btn:hover {
	background: rgba(56, 189, 248, 0.15);
	border-color: rgba(56, 189, 248, 0.35);
	color: #38BDF8;
}

.ue-acc-logout-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	font-size: 11.5px;
	font-weight: 600;
	color: #F87171;
	background: rgba(239, 68, 68, 0.08);
	border: 1px solid rgba(239, 68, 68, 0.2);
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ue-acc-logout-link:hover {
	background: rgba(239, 68, 68, 0.18);
	border-color: rgba(239, 68, 68, 0.4);
	color: #FCA5A5;
}

/* Guest State Styling */
.ue-acc-guest-hero {
	padding: 20px 20px 16px;
	background: linear-gradient(180deg, rgba(30, 41, 59, 0.45) 0%, rgba(15, 23, 42, 0.25) 100%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.ue-acc-guest-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(56, 189, 248, 0.15) 100%);
	border: 1px solid rgba(56, 189, 248, 0.3);
	color: #38BDF8;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
}

.ue-acc-guest-title {
	font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: -0.01em;
	margin-bottom: 4px;
}

.ue-acc-guest-desc {
	font-size: 12px;
	color: #94A3B8;
	line-height: 1.45;
	max-width: 420px;
	margin: 0 auto 14px;
}

.ue-acc-guest-cta-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
}

.ue-acc-cta-primary {
	flex: 1;
	max-width: 200px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 9px 16px;
	border-radius: 10px;
	background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
	border: 1px solid rgba(59, 130, 246, 0.5);
	color: #FFFFFF;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 12.5px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
	transition: all 0.2s ease;
}

.ue-acc-cta-primary:hover {
	background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
	transform: translateY(-1px);
	box-shadow: 0 6px 18px rgba(37, 99, 235, 0.45);
	color: #FFFFFF;
}

.ue-acc-cta-secondary {
	flex: 1;
	max-width: 200px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 9px 16px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #F1F5F9;
	font-family: 'Space Grotesk', sans-serif;
	font-size: 12.5px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ue-acc-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	color: #FFFFFF;
	transform: translateY(-1px);
}

.ue-acc-guest-grid {
	padding: 14px 16px 16px;
}

.ue-acc-guest-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 6px;
}

.ue-guest-link-chip {
	padding: 7px 8px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.07);
	color: #CBD5E1;
	font-size: 11px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.2s ease;
}

.ue-guest-link-chip:hover {
	background: rgba(56, 189, 248, 0.1);
	border-color: rgba(56, 189, 248, 0.25);
	color: #38BDF8;
	transform: translateY(-1px);
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
	.ue-account-megamenu {
		width: calc(100vw - 20px);
		right: -10px;
	}

	.ue-acc-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.ue-acc-telemetry-row {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.ue-acc-guest-links {
		grid-template-columns: repeat(2, 1fr);
	}
}
