
/* =========================================
GLOBAL & LAYOUT STYLES
========================================= */
.hero-ultimate {
	position: relative;
	padding: 60px 0;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background-color: #f8fafc;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	overflow: hidden;
}

/* --- Fix Header Dropdown Overlap --- */
.header-style-4 {
    position: relative; 
    z-index: 9999 !important; 
}

/* Subtle Premium Background Glow */
.hero-ultimate::before {
	content: '';
	position: absolute;
	top: -20%; left: -10%;
	width: 60%; height: 80%;
	background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}
.hero-ultimate::after {
	content: '';
	position: absolute;
	bottom: -20%; right: -10%;
	width: 60%; height: 80%;
	background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
	border-radius: 50%;
	z-index: 0;
	pointer-events: none;
}

.container { position: relative; z-index: 2; }

/* =========================================
   LEFT SIDE: CLEAN TYPOGRAPHY (No clunky boxes)
   ========================================= */
.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 14px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #475569;
	margin-bottom: 24px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.hero-badge .icon { color: #0ea5e9; }

.hero-title {
	font-size: 2.8rem;
	font-weight: 800;
	line-height: 1.05;
	color: #0f172a;
	letter-spacing: -0.03em;
	margin-bottom: 24px;
}
.hero-title span {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-desc {
	font-size: 1.15rem;
	color: #475569;
	line-height: 1.6;
	margin-bottom: 25px;
	max-width: 90%;
}

/* Clean Feature List */
.feature-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 25px;
}
.feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
}
.feature-icon-wrap {
	width: 36px; height: 36px;
	background: #f0f9ff;
	border: 1px solid #e0f2fe;
	color: #0ea5e9;
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
}
.feature-text h6 { margin: 0 0 2px 0; font-size: 1rem; font-weight: 700; color: #0f172a; }
.feature-text p { margin: 0; font-size: 0.85rem; color: #64748b; }

/* CTA Area */
.cta-group {
	display: flex;
	align-items: center;
	gap: 24px;
	border-top: 1px solid #e2e8f0;
	padding-top: 30px;
}
.btn-primary-custom {
	background: #2563eb;
	color: #fff;
	padding: 16px 36px;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.05rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
	transition: all 0.3s ease;
}
.btn-primary-custom:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5);
	color: #fff;
}
.price-block span { display: block; }
.price-label { font-size: 0.75rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.price-value { font-size: 1.5rem; font-weight: 800; color: #0f172a; line-height: 1; }
.price-value small { font-size: 0.85rem; font-weight: 500; color: #64748b; }

/* =========================================
   RIGHT SIDE: SMOOTH ANIMATION
   ========================================= */
.anim-container-wrap {
	padding: 20px;
	background: rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 32px;
	box-shadow: 0 30px 60px -15px rgba(0,0,0,0.05);
}

.rdp-mockup {
	position: relative;
	width: 100%;
	aspect-ratio: 16/10;
	background: #e2e8f0;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1) inset;
	overflow: hidden;
}

.scene {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
}

/* Scene 1: Connect Dialog */
.scene-1 { background: #f8fafc; animation: scene1 15s cubic-bezier(0.4, 0, 0.2, 1) infinite; z-index: 3; }
.connect-box {
	background: #fff; border-radius: 12px; padding: 24px; width: 280px;
	box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.05);
	text-align: center;
}
.connect-icon {
	width: 48px; height: 48px; background: #f0f9ff; color: #0ea5e9; border-radius: 12px;
	display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.connect-btn {
	background: #2563eb; color: #fff; padding: 10px; border-radius: 6px; font-weight: 600; font-size: 0.9rem; margin-top: 20px;
	animation: btnPress 15s infinite;
}

/* Scene 2: Boot Screen */
.scene-2 { background: #0f172a; animation: scene2 15s cubic-bezier(0.4, 0, 0.2, 1) infinite; z-index: 2; }
.boot-logo { width: 50px; height: 50px; fill: #0ea5e9; animation: pulse 2s infinite ease-in-out; }
.loader {
	margin-top: 30px; display: flex; gap: 8px;
}
.loader span { width: 6px; height: 6px; background: #fff; border-radius: 50%; animation: bounce 1.4s infinite ease-in-out both; }
.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

/* Scene 3: Desktop */
.scene-3 {
	background: url('https://images.unsplash.com/photo-1557683316-973673baf926?q=80&w=1000&auto=format&fit=crop') center/cover;
	animation: scene3 15s cubic-bezier(0.4, 0, 0.2, 1) infinite; z-index: 1;
	justify-content: flex-end;
}
.server-manager {
	background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
	width: 320px; border-radius: 8px; margin: auto;
	box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); overflow: hidden;
	animation: windowSlideIn 15s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}
.sm-head { background: #f1f5f9; padding: 8px 12px; font-size: 0.75rem; font-weight: 600; color: #475569; border-bottom: 1px solid #e2e8f0; display: flex; gap: 6px;}
.sm-dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.sm-body { padding: 16px; font-family: 'Consolas', monospace; font-size: 0.7rem; color: #334155; line-height: 1.6; }
.taskbar {
	width: 100%; height: 40px; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(10px);
	display: flex; align-items: center; padding: 0 16px; border-top: 1px solid rgba(255,255,255,0.1);
	animation: taskbarUp 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.tb-icon { width: 20px; height: 20px; fill: #0ea5e9; margin-right: 16px; }
.tb-app { width: 24px; height: 24px; background: rgba(255,255,255,0.15); border-radius: 4px; }

/* The Cursor */
.mouse {
	position: absolute; width: 22px; height: 22px; z-index: 10;
	top: 80%; left: 80%; pointer-events: none;
	animation: mouseMove 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* =========================================
   SMOOTH 15-SECOND ANIMATION TIMELINE
   ========================================= */
/* Scene Opacities */
@keyframes scene1 {
	0%, 20% { opacity: 1; transform: scale(1); }
	24%, 100% { opacity: 0; transform: scale(0.98); } /* Smooth fade and slight shrink */
}
@keyframes scene2 {
	0%, 20% { opacity: 0; }
	24%, 44% { opacity: 1; }
	48%, 100% { opacity: 0; }
}
@keyframes scene3 {
	0%, 44% { opacity: 0; }
	48%, 95% { opacity: 1; }
	100% { opacity: 0; }
}

/* Cursor Movement with natural easing */
@keyframes mouseMove {
	0%, 5% { top: 85%; left: 85%; opacity: 0; }
	8% { opacity: 1; }
	16% { top: 62%; left: 50%; transform: scale(1); } /* Hover button */
	18% { top: 62%; left: 50%; transform: scale(0.85); } /* Click */
	20% { top: 62%; left: 50%; transform: scale(1); } /* Release */
	24% { top: 90%; left: 40%; opacity: 0; } /* Move away */
	100% { top: 85%; left: 85%; opacity: 0; }
}

/* Button Press Visual */
@keyframes btnPress {
	0%, 17% { transform: scale(1); background: #2563eb; }
	18% { transform: scale(0.95); background: #1d4ed8; }
	20%, 100% { transform: scale(1); background: #2563eb; }
}

/* Desktop Elements Sliding In Smoothly */
@keyframes taskbarUp {
	0%, 46% { transform: translateY(100%); }
	50%, 100% { transform: translateY(0); }
}
@keyframes windowSlideIn {
	0%, 48% { transform: scale(0.9) translateY(20px); opacity: 0; }
	52%, 95% { transform: scale(1) translateY(0); opacity: 1; }
	100% { transform: scale(0.9) translateY(20px); opacity: 0; }
}

/* Loops */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* =========================================
ELITE BENTO GRID STYLES
========================================= */
.elite-bento-section {
	background-color: #f8fafc;
	position: relative;
	padding: 60px 0;
	overflow: hidden;
}

/* Subtle Tech-Grid Background */
.elite-bento-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(#e2e8f0 1px, transparent 1px), linear-gradient(90deg, #e2e8f0 1px, transparent 1px);
	background-size: 50px 50px;
	mask-image: radial-gradient(circle at center, black, transparent 80%);
	opacity: 0.4;
	pointer-events: none;
}

/* Badge Styling */
.badge-elite {
	display: inline-flex;
	align-items: center;
	background: rgba(37, 99, 235, 0.08);
	color: #2563eb;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* Typography Improvements */
.display-4 span {
	background: linear-gradient(135deg, #2563eb, #0ea5e9);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.border-start-custom {
	border-left: 2px solid #e2e8f0;
}

.badge-elite span {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* BENTO CARD DESIGN */
.spec-bento-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 24px;
	padding: 25px;
	height: 100%;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
	display: flex;
	flex-direction: column;
	gap: 25px;
}

/* Hover Effect: Border Glow and Lift */
.spec-bento-card:hover {
	transform: translateY(-8px);
	background: #fff;
	border-color: #2563eb;
	box-shadow: 0 25px 50px -15px rgba(37, 99, 235, 0.15);
}

/* Icon Containers with Gradients */
.spec-icon-box {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s ease;
}

.blue-gradient { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.cyan-gradient { background: rgba(6, 182, 212, 0.1); color: #0891b2; }
.purple-gradient { background: rgba(147, 51, 234, 0.1); color: #9333ea; }
.indigo-gradient { background: rgba(79, 70, 229, 0.1); color: #4f46e5; }
.green-gradient { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.orange-gradient { background: rgba(249, 115, 22, 0.1); color: #ea580c; }

.spec-bento-card:hover .spec-icon-box {
	transform: scale(1.1) rotate(-5deg);
}

/* Labels and Values */
.spec-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 800;
	color: #94a3b8;
	letter-spacing: 1.5px;
	margin-bottom: 8px;
}

.spec-value {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}

.spec-desc {
	font-size: 0.95rem;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* Highlighting the 'Location' card as it was in your mockup */
.active-bento {
	border: 1px solid rgba(37, 99, 235, 0.3);
	background: linear-gradient(to bottom right, #fff, rgba(37, 99, 235, 0.03));
}

/* Subtle section background glow */
.bento-bg-glow {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
	pointer-events: none;
}

.configurator-section {
	padding: 80px 20px;
	background-color: #ffffff;
	font-family: 'Inter', sans-serif;
}

.config-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 40px;
}

@media (max-width: 992px) {
	.config-container { grid-template-columns: 1fr; }
}

/* Left Side: Controls */
.config-controls {
	background: #f8fafc;
	border-radius: 20px;
	padding: 40px;
	border: 1px solid #e2e8f0;
}

.config-group {
	margin-bottom: 35px;
}

.config-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 15px;
}

.config-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 8px;
}

.config-title iconify-icon { color: #2563eb; }

.config-value {
	font-size: 1.2rem;
	font-weight: 800;
	color: #2563eb;
}

/* Premium Range Sliders */
.premium-slider {
	-webkit-appearance: none;
	width: 100%;
	height: 8px;
	background: #e2e8f0;
	border-radius: 10px;
	outline: none;
	transition: background 0.1s;
	cursor: pointer;
}

.premium-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #ffffff;
	border: 3px solid #2563eb;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
	cursor: grab;
	transition: transform 0.2s;
}

.premium-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.premium-slider::-webkit-slider-thumb:active { cursor: grabbing; }

/* --- ENHANCED: Premium OS App Cards --- */
.os-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
	gap: 14px;
}
.os-card {
	background: #ffffff; border: 2px solid #f1f5f9; border-radius: 16px;
	padding: 20px 10px; text-align: center; cursor: pointer;
	transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
	display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.os-card:hover { 
	border-color: #cbd5e1; transform: translateY(-3px); 
	box-shadow: 0 8px 16px rgba(0,0,0,0.04); 
}
.os-card.active {
	background: #f8fafc; border-color: #2563eb;
	box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.25);
}
.os-icon { font-size: 2rem; color: #94a3b8; transition: color 0.3s ease; }
.os-card.active .os-icon { color: #2563eb; }
.os-name { font-size: 0.85rem; font-weight: 700; color: #0f172a; line-height: 1.2; }
.os-price { 
	font-size: 0.7rem; font-weight: 800; color: #64748b; background: #f1f5f9; 
	padding: 4px 10px; border-radius: 8px; letter-spacing: 0.3px;
}
.os-card.active .os-price { background: #dbeafe; color: #2563eb; }

/* --- ENHANCED: Network Toggles --- */
.config-toggles {
	display: flex; background: #f8fafc; border-radius: 14px; padding: 6px; border: 1px solid #f1f5f9;
}
.c-toggle {
	flex: 1; padding: 14px; border: none; background: transparent;
	border-radius: 10px; font-weight: 700; font-size: 0.95rem; color: #64748b;
	cursor: pointer; transition: all 0.3s ease; text-align: center;
}
.c-toggle.active { background: #ffffff; color: #0f172a; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }

/* --- ENHANCED: Receipt Summary --- */
.config-summary {
	background: #ffffff; border-radius: 24px; position: sticky; top: 40px; height: fit-content;
	border: 1px solid #f1f5f9; box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
	overflow: hidden; display: flex; flex-direction: column;
}
.config-summary::before {
	content: ''; position: absolute; top: 0; left: 0; right: 0;
	height: 6px; background: linear-gradient(90deg, #3b82f6, #2563eb);
}
.summary-body { padding: 45px 40px 30px 40px; }
.summary-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 30px; color: #0f172a; }

.summary-row { 
	display: flex; justify-content: space-between; align-items: center; 
	padding: 16px 0; border-bottom: 1px solid #f8fafc; 
}
.summary-row:last-child { border-bottom: none; }

.summary-label { display: flex; align-items: center; gap: 14px; color: #64748b; font-weight: 600; font-size: 1rem; }
.summary-label iconify-icon { font-size: 1.5rem; color: #3b82f6; opacity: 0.8; } /* Adds a pop of blue to the icons */

.summary-row span.val { color: #0f172a; font-weight: 800; text-align: right; font-size: 1.05rem; }

.summary-footer { background: #f8fafc; padding: 35px 40px; border-top: 2px dashed #e2e8f0; }
.summary-total { 
	display: flex; flex-direction: column; align-items: flex-start; gap: 8px; 
	margin-bottom: 25px; 
}
.summary-total .label { font-size: 1.15rem; color: #64748b; font-weight: 700; margin-bottom: 0;}
.summary-total .price { font-size: 3.5rem; font-weight: 800; line-height: 1; color: #2563eb; letter-spacing: -1.5px;}

.btn-deploy-custom {
	display: block; width: 100%; text-align: center; 
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); color: #fff;
	padding: 20px; border-radius: 16px; font-weight: 800; font-size: 1.2rem;
	text-decoration: none; border: none; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
	box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}
.btn-deploy-custom:hover { 
	transform: translateY(-4px); 
	box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.5); 
}
/* --- NEW: Individual Cost & Slider Marks --- */
.cost-display {
	font-size: 0.8rem;
	color: #64748b;
	font-weight: 700;
	margin-top: 2px;
	text-align: right;
}
.cost-display span {
	color: #0f172a;
}
.slider-marks {
	position: relative; height: 15px; margin-top: 12px; margin-bottom: 20px;
}

.slider-marks span {
	position: absolute; top: 0; transform: translateX(-50%);
	font-size: 0.75rem; color: #94a3b8; font-weight: 700;
}

.slider-marks span:first-child { left: 0 !important; transform: none; }
.slider-marks span:last-child { left: 100% !important; transform: translateX(-100%); }

/* Ensure the configurator section can hold the background glow */
.configurator-section {
	position: relative;
	overflow: hidden;
	z-index: 1;
	background-color: #f8fafc; /* Slightly off-white to make the glow pop */
}
.mesh-glow-1 { position: absolute; top: -10%; left: -5%; width: 500px; height: 500px; background: rgba(56, 189, 248, 0.12); filter: blur(90px); border-radius: 50%; z-index: -1; pointer-events: none;}
.mesh-glow-2 { position: absolute; bottom: -10%; right: -5%; width: 600px; height: 600px; background: rgba(99, 102, 241, 0.08); filter: blur(100px); border-radius: 50%; z-index: -1; pointer-events: none;}
.cost-clean {
	font-size: 0.75rem;
	color: #94a3b8;
	font-weight: 600;
	margin-top: 4px;
	text-align: right;
	letter-spacing: 0.5px;
}


/* =========================================
   ELITE WORKFLOW SWITCHER - CONSOLIDATED
   ========================================= */
.sh-env-switcher-pro {
	background-color: #ffffff;
	padding: 60px 0; /* Optimized for 100% zoom visibility */
	overflow: hidden;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* LEFT SIDE: SELECTION MENU */
.env-selector-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.env-item {
	display: flex;
	align-items: center;
	padding: 14px 24px;
	border-radius: 14px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	background: transparent;
}

.env-item:hover {
	background: #f8fafc;
	transform: translateX(8px);
}

.env-item.active {
	background: #ffffff;
	border-color: #e2e8f0;
	box-shadow: 0 10px 25px -10px rgba(37, 99, 235, 0.1);
}

.env-icon {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	margin-right: 18px;
	transition: 0.3s ease;
}

.env-item.active .env-icon {
	transform: scale(1.1);
}

/* Color Tints */
.indigo { background: #eef2ff; color: #4f46e5; }
.blue { background: #eff6ff; color: #2563eb; }
.cyan { background: #ecfeff; color: #0891b2; }
.purple { background: #faf5ff; color: #9333ea; }

.env-text h6 { margin: 0; font-weight: 800; color: #0f172a; font-size: 0.95rem; }
.env-text p { margin: 0; font-size: 0.8rem; color: #64748b; }

/* Active Indicator Line */
.active-indicator {
	position: absolute;
	left: 0;
	top: 20%;
	height: 60%;
	width: 3px;
	background: #2563eb;
	border-radius: 0 4px 4px 0;
	opacity: 0;
	transition: 0.3s;
}
.env-item.active .active-indicator { opacity: 1; }

/* RIGHT SIDE: MICA DASHBOARD */
.dashboard-canvas {
	position: relative;
	padding: 20px;
}

.mica-window {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(30px) saturate(150%);
	border-radius: 16px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 40px 80px -20px rgba(0,0,0,0.08);
	overflow: hidden;
	position: relative;
}

.win-header {
	background: rgba(248, 250, 252, 0.5);
	padding: 12px 20px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #e2e8f0;
}

.win-dots { display: flex; gap: 6px; margin-right: 20px; }
.win-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }

.win-address {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 6px;
	padding: 3px 12px;
	font-size: 10px;
	color: #94a3b8;
	font-family: monospace;
	flex-grow: 1;
}

.win-content {
	height: 320px;
	padding: 25px;
	display: flex;
	flex-direction: column;
}

.content-status {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 6px 14px;
	border-radius: 50px;
	font-size: 11px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
}

.pulse-dot {
	width: 7px; height: 7px; background: #22c55e; border-radius: 50%;
	animation: pDot 2s infinite;
}
@keyframes pDot { 
	0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); } 
	70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); } 
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); } 
}

/* DYNAMIC VISUAL CENTER */
.dynamic-display-area {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
}

.visual-main-icon {
	font-size: 70px;
	color: #2563eb;
	opacity: 0.15;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.data-bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 60px;
}

.data-bars .bar {
	width: 12px;
	background: #2563eb;
	border-radius: 4px;
	opacity: 0.15;
	transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease;
}

/* METRICS FOOTER */
.bottom-metrics {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: auto;
	padding: 20px;
	background: rgba(248, 250, 252, 0.5);
	backdrop-filter: blur(20px);
	border-top: 1px solid #e2e8f0;
	margin-left: -25px; /* Alignment fix for window padding */
	margin-right: -25px;
	margin-bottom: -25px;
}

.metric-pill {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 16px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.02);
	transition: all 0.3s ease;
}

.metric-pill:hover {
	transform: translateY(-2px);
	border-color: #2563eb;
	box-shadow: 0 5px 15px rgba(37, 99, 235, 0.05);
}

.m-icon {
	width: 32px;
	height: 32px;
	background: #f0f9ff;
	color: #2563eb;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
}

.m-data {
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-family: 'Inter', 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
}

/* The Labels (LATENCY, UPTIME, INFRA) */
.m-data span {
	font-size: 9px; /* Very small but clear */
	font-weight: 700;
	color: #94a3b8; /* Muted blue-grey */
	letter-spacing: 0.1em; /* Essential for "Elite" look */
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 4px; /* Space between label and value */
}

/* The Values (12ms, 99.9%, Tier IV) */
.m-data strong {
	font-size: 1.1rem; /* Slightly larger */
	font-weight: 700; /* Bold but not "heavy" */
	color: #1e293b; /* Deep slate, better than pure black */
	line-height: 1;
	letter-spacing: -0.02em; /* Tighten the numbers for a modern look */
	display: flex;
	align-items: center;
}

/* Refined Pulse for Infra */
.infra-pulse {
	width: 6px;
	height: 6px;
	background: #22c55e; /* Green looks more "active/online" than red */
	border-radius: 50%;
	margin-right: 8px;
	box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
	animation: infraPulse 2s infinite;
}

@keyframes infraPulse {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}	

.text-blue {
	background: linear-gradient(135deg, #0ea5e9, #2563eb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
/* =========================================
   ADVANCED ROI CALCULATOR STYLES
   ========================================= */
.sh-roi-advanced { background: #fff; overflow: hidden; }

/* Windows 11 Range Slider */
.win11-slider {
	-webkit-appearance: none;
	width: 100%; height: 4px;
	background: #e2e8f0;
	border-radius: 10px; outline: none;
}
.win11-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px; height: 20px;
	background: #2563eb;
	border: 4px solid #fff;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
	transition: 0.2s ease-in-out;
}
.win11-slider::-webkit-slider-thumb:hover { transform: scale(1.2); background: #1e40af; }

/* Mica Visual Window */
.mica-card-advanced {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(30px) saturate(160%);
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 24px;
	box-shadow: 0 50px 100px -20px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.01);
	overflow: hidden;
}

.win-chrome {
	background: rgba(248, 250, 252, 0.5);
	padding: 15px 25px;
	display: flex; align-items: center;
	border-bottom: 1px solid #e2e8f0;
}
.win-chrome .dots { display: flex; gap: 6px; margin-right: 20px; }
.win-chrome .dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.win-title { font-size: 10px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

.roi-content-body { padding: 40px; }

/* Dynamic Bars */
.bar-bg { width: 100%; height: 10px; background: #f1f5f9; border-radius: 50px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 50px; transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.danger-grad { background: linear-gradient(90deg, #f87171, #ef4444); }
.primary-grad { background: linear-gradient(90deg, #60a5fa, #2563eb); }

/* Verdict Card */
.savings-verdict-card {
	display: flex; align-items: center; gap: 20px;
	padding: 25px; background: #f0fdf4;
	border-radius: 18px; border: 1px solid rgba(34, 197, 94, 0.1);
}
.v-icon-wrap {
	width: 54px; height: 54px; background: #fff; color: #22c55e;
	border-radius: 14px; display: flex; align-items: center; justify-content: center;
	font-size: 24px; box-shadow: 0 4px 12px rgba(34, 197, 94, 0.1);
}

.roi-summary-mini { display: flex; gap: 40px; }

/* Typography & Layout */
.sh-roi-advanced { background: #ffffff; font-family: 'Inter', sans-serif; }
.letter-spacing-1 { letter-spacing: 1px; }

.month-pill {
	background: #2563eb; color: #fff; padding: 4px 14px;
	border-radius: 8px; font-weight: 800; font-size: 0.9rem;
}

/* Win11 Slider Refinement */
.win11-slider {
	-webkit-appearance: none; width: 100%; height: 6px;
	background: #e2e8f0; border-radius: 10px; outline: none;
}
.win11-slider::-webkit-slider-thumb {
	-webkit-appearance: none; width: 22px; height: 22px;
	background: #2563eb; border: 4px solid #fff; border-radius: 50%;
	cursor: pointer; box-shadow: 0 4px 15px rgba(0,0,0,0.15); transition: 0.2s;
}
.win11-slider::-webkit-slider-thumb:hover { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1); }

.slider-labels { display: flex; justify-content: space-between; margin-top: 10px; font-size: 10px; font-weight: 700; color: #94a3b8; }

/* Mica Window Styling */
.mica-card {
	background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(30px) saturate(180%);
	border: 1px solid rgba(255,255,255,0.8); border-radius: 24px;
	box-shadow: 0 40px 100px -20px rgba(0,0,0,0.06); overflow: hidden;
}
.mica-header { background: rgba(248, 250, 252, 0.5); padding: 15px 25px; display: flex; align-items: center; border-bottom: 1px solid #e2e8f0; }
.mica-dots { display: flex; gap: 6px; margin-right: 20px; }
.mica-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.mica-title { font-size: 10px; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; }

.mica-body { padding: 40px; }

/* Progress Elements */
.label { font-size: 10px; font-weight: 800; color: #94a3b8; letter-spacing: 1px; }
.progress-track { width: 100%; height: 12px; background: #f1f5f9; border-radius: 50px; position: relative; }
.progress-fill { height: 100%; border-radius: 50px; transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.progress-fill.danger { background: linear-gradient(90deg, #f87171, #ef4444); }
.progress-fill.primary { background: linear-gradient(90deg, #60a5fa, #2563eb); }

.breakeven-marker {
	position: absolute; top: -5px; height: 22px; width: 2px;
	background: #0f172a; z-index: 2;
}
.breakeven-marker span {
	position: absolute; top: -20px; left: 50%; transform: translateX(-50%);
	font-size: 9px; font-weight: 800; color: #0f172a; text-transform: uppercase;
}

/* Savings Hero Card */
.savings-hero-card {
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
	padding: 25px; border-radius: 20px; border: 1px solid rgba(34, 197, 94, 0.1);
}
.hero-label { font-size: 11px; font-weight: 800; color: #166534; letter-spacing: 1px; margin-bottom: 5px; }
.savings-hero-card h2 { font-size: 2.8rem; font-weight: 900; color: #064e3b; margin: 0; }
.roi-badge {
	background: #064e3b; color: #fff; padding: 6px 12px; border-radius: 50px;
	font-size: 12px; font-weight: 800;
}
.sh-roi-elite-v4 { background: #ffffff; font-family: 'Inter', sans-serif; }

/* Elegant Slider */
.month-indicator {
	background: #0f172a; color: #fff; padding: 6px 16px;
	border-radius: 8px; font-weight: 800; font-size: 0.85rem;
}
.elite-slider {
	-webkit-appearance: none; width: 100%; height: 4px;
	background: #f1f5f9; border-radius: 10px; outline: none;
}
.elite-slider::-webkit-slider-thumb {
	-webkit-appearance: none; width: 20px; height: 20px;
	background: #2563eb; border: 4px solid #fff; border-radius: 50%;
	cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1); transition: 0.2s;
}
.slider-markers { display: flex; justify-content: space-between; margin-top: 12px; font-size: 10px; font-weight: 700; color: #94a3b8; }

/* The Window */
.wealth-window {
	background: #fff; border: 1px solid #e2e8f0; border-radius: 24px;
	box-shadow: 0 40px 100px -20px rgba(0,0,0,0.05); overflow: hidden;
}
.window-chrome { background: #f8fafc; padding: 15px 25px; display: flex; align-items: center; border-bottom: 1px solid #e2e8f0; }
.chrome-dots { display: flex; gap: 6px; margin-right: 25px; }
.chrome-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.chrome-title { font-size: 9px; font-weight: 800; color: #94a3b8; letter-spacing: 1.5px; }

.window-body { padding: 45px; }

/* Progress Rows */
.row-meta { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 12px; }
.row-label { font-size: 10px; font-weight: 800; letter-spacing: 1px; color: #64748b; }
.row-value { font-size: 1.2rem; font-weight: 800; line-height: 1; }

.progress-container { width: 100%; height: 10px; background: #f1f5f9; border-radius: 50px; position: relative; }
.progress-bar-danger { height: 100%; border-radius: 50px; background: linear-gradient(90deg, #f87171, #ef4444); transition: width 0.4s ease-out; }
.progress-bar-primary { height: 100%; border-radius: 50px; background: linear-gradient(90deg, #60a5fa, #2563eb); transition: width 0.4s ease-out; }

/* Breakeven Marker Fix (Moved below bar) */
.breakeven-indicator { position: absolute; top: 0; height: 25px; width: 1px; }
.b-line { height: 100%; width: 2px; background: #0f172a; margin: 0 auto; }
.b-text { position: absolute; top: 28px; left: 50%; transform: translateX(-50%); font-size: 8px; font-weight: 900; text-transform: uppercase; color: #0f172a; opacity: 0.5; }

/* Savings Card Redesign */
.verdict-glass-card {
	background: #f0fdf4; border: 1px solid rgba(34, 197, 94, 0.1);
	padding: 30px; border-radius: 20px; text-align: left;
}
.v-label { font-size: 10px; font-weight: 800; color: #166534; letter-spacing: 1px; margin-bottom: 8px; }
.v-main { display: flex; align-items: baseline; gap: 15px; margin-bottom: 10px; }
.v-main h3 { font-size: 3rem; font-weight: 900; color: #064e3b; margin: 0; letter-spacing: -2px; }
.v-badge { background: #064e3b; color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 800; }
.v-footer { font-size: 11px; color: #166534; opacity: 0.7; font-weight: 500; }

/* Typography & Logic */
.sh-roi-elite-v5 { background: #ffffff; font-family: 'Inter', system-ui, -apple-system, sans-serif; }
.x-small { font-size: 9px; letter-spacing: 1.2px; }
.letter-spacing-1 { letter-spacing: 1px; }

/* Control Panel */
.value-chip { background: #0f172a; color: #fff; padding: 6px 14px; border-radius: 8px; font-weight: 800; font-size: 0.85rem; }
.logic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; padding-top: 30px; border-top: 1px solid #f1f5f9; }

/* Windows 11 Slider Pro */
.win11-range-pro {
	-webkit-appearance: none; width: 100%; height: 4px;
	background: #e2e8f0; border-radius: 10px; outline: none;
}
.win11-range-pro::-webkit-slider-thumb {
	-webkit-appearance: none; width: 22px; height: 22px;
	background: #2563eb; border: 4px solid #fff; border-radius: 50%;
	cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.12); transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
}
.win11-range-pro::-webkit-slider-thumb:hover { transform: scale(1.15); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1); }

.range-labels { display: flex; justify-content: space-between; margin-top: 15px; font-size: 10px; font-weight: 700; color: #94a3b8; }
.breakeven-tick { color: #0f172a; border-bottom: 2px solid #2563eb; padding-bottom: 2px; }

/* Window Architecture */
.analytics-window { position: relative; padding: 20px; }
.window-mica {
	background: #fff; border: 1px solid #e2e8f0; border-radius: 28px;
	box-shadow: 0 40px 100px -20px rgba(0,0,0,0.08); overflow: hidden;
}
.window-header-elite { 
	background: #f8fafc; padding: 18px 25px; display: flex; align-items: center; 
	border-bottom: 1px solid #e2e8f0;
}
.header-dots { display: flex; gap: 8px; margin-right: 25px; }
.header-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.header-tab { font-size: 10px; font-weight: 800; color: #94a3b8; font-family: monospace; letter-spacing: 1px; }

.window-body-pro { padding: 45px; }

/* Dynamic Comparison Bars */
.provider-label { font-size: 1.05rem; font-weight: 700; color: #1e293b; }
.comp-amount { font-size: 1.3rem; font-weight: 800; }
.bar-track { width: 100%; height: 10px; background: #f1f5f9; border-radius: 50px; position: relative; }
.bar-fill { height: 100%; border-radius: 50px; transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.liability-grad { background: linear-gradient(90deg, #fca5a5, #ef4444); }
.asset-grad { background: linear-gradient(90deg, #60a5fa, #2563eb); }

/* Break-even Indicator */
.be-line { position: absolute; top: -10px; height: 30px; width: 2px; background: #0f172a; transition: left 0.5s ease; }
.be-pulse { 
	position: absolute; top: 100%; left: 50%; transform: translate(-50%, -50%);
	width: 8px; height: 8px; background: #2563eb; border-radius: 50%;
}
.be-tag { 
	position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
	font-size: 8px; font-weight: 900; white-space: nowrap; color: #0f172a; opacity: 0.4;
}

/* Verdict Widget */
.verdict-widget {
	background: #f0fdf4; border: 1px solid rgba(34, 197, 94, 0.1);
	padding: 30px; border-radius: 20px; transition: all 0.3s ease;
}
.verdict-widget.is-investing { background: #f8fafc; border-color: #e2e8f0; opacity: 0.7; }

.v-header { display: flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 800; color: #166534; letter-spacing: 1px; margin-bottom: 10px; }
.v-main { display: flex; align-items: baseline; gap: 15px; }
.v-main h2 { font-size: 3.5rem; font-weight: 900; color: #064e3b; margin: 0; letter-spacing: -2px; }
.roi-chip { background: #064e3b; color: #fff; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 800; }
.v-footer { font-size: 11px; color: #166534; opacity: 0.6; margin-top: 15px; font-weight: 500; }


/* =========================================
   ENTERPRISE SLA & TELEMETRY STYLES
   ========================================= */
.sh-sla-guarantee {
	background-color: #ffffff;
	overflow: hidden;
	font-family: 'Inter', system-ui, sans-serif;
	padding: 60px 0;
}

/* --- LEFT SIDE: TELEMETRY CARD --- */
.telemetry-wrapper {
	position: relative;
	padding: 20px;
}

.telemetry-glow {
	position: absolute;
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 120%; height: 120%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 60%);
	z-index: 0;
	pointer-events: none;
}

.telemetry-card {
	background: #0f172a; /* Deep server slate */
	border-radius: 16px;
	border: 1px solid rgba(255,255,255,0.1);
	box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.5);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.t-header {
	display: flex; justify-content: space-between; align-items: center;
	padding: 12px 18px;
	background: rgba(255,255,255,0.03);
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.t-node { display: flex; align-items: center; gap: 8px; color: #94a3b8; font-size: 10px; font-weight: 800; letter-spacing: 1px; }
.t-node iconify-icon { color: #38bdf8; font-size: 14px; }
.t-status { display: flex; align-items: center; gap: 6px; color: #22c55e; font-size: 9px; font-weight: 800; letter-spacing: 1px; }
.status-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulseG 2s infinite; }

.t-body { padding: 25px 20px; } /* Tighter body */

.t-metric-row { margin-bottom: 18px; }
.t-metric-row:last-child { margin-bottom: 0; }

.t-label { display: block; color: #64748b; font-size: 9px; font-weight: 800; margin-bottom: 6px; letter-spacing: 1px; }
.t-value { display: block; color: #f8fafc; font-size: 11px; font-weight: 800; margin-top: 6px; font-family: monospace; }

.t-bar-wrap { width: 100%; height: 5px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
.t-bar { height: 100%; background: linear-gradient(90deg, #38bdf8, #2563eb); border-radius: 10px; }
.w-85 { width: 85%; } .w-0 { width: 0%; }
.w-0 { width: 0%; }

.t-footer {
	padding: 12px 18px;
	background: rgba(0,0,0,0.3);
	border-top: 1px solid rgba(255,255,255,0.05);
}

.terminal-text { color: #4ade80; font-family: monospace; font-size: 10px; }
.type-anim {
	overflow: hidden; white-space: nowrap; border-right: 2px solid #4ade80;
	width: 0; animation: typing 3s steps(30, end) forwards, blink-caret .75s step-end infinite;
}
@keyframes typing { from { width: 0 } to { width: 100% } }
@keyframes blink-caret { from, to { border-color: transparent } 50% { border-color: #4ade80; } }

/* --- RIGHT SIDE: GUARANTEE STACK --- */
/* --- RIGHT SIDE: GUARANTEE STACK --- */
.guarantee-stack {
	display: flex;
	flex-direction: column;
	gap: 12px; /* Tighter stack */
}

.guarantee-card {
	display: flex;
	align-items: flex-start;
	padding: 18px 20px; /* Reduced from 25px */
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	border-radius: 14px;
	transition: all 0.3s ease;
}

.guarantee-card:hover {
	background: #ffffff;
	border-color: #e2e8f0;
	transform: translateX(8px);
	box-shadow: 0 15px 30px -15px rgba(0,0,0,0.05);
}

.g-icon {
	width: 40px; height: 40px; /* Shrunk icon box */
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; margin-right: 16px; flex-shrink: 0;
}
.g-icon.blue { background: #eff6ff; color: #2563eb; }
.g-icon.cyan { background: #ecfeff; color: #0891b2; }
.g-icon.indigo { background: #eef2ff; color: #4f46e5; }

.g-content h5 { font-size: 1rem; font-weight: 800; color: #0f172a; margin-bottom: 4px; letter-spacing: -0.3px; }
.g-content p { font-size: 0.85rem; color: #64748b; margin: 0; line-height: 1.5; }

/* =========================================
   DEPLOYMENT STACK / LAUNCHPAD (ELITE COMPACT)
   ========================================= */
.sh-deployment-stack {
	background-color: #f8fafc;
	font-family: 'Inter', system-ui, sans-serif;
	overflow: hidden;
}

.launchpad-wrapper {
	position: relative;
	padding: 15px;
}

.launchpad-glow {
	position: absolute;
	top: 50%; left: 50%; transform: translate(-50%, -50%);
	width: 100%; height: 100%;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
	z-index: 0; pointer-events: none;
}

.mica-launchpad {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(25px) saturate(150%);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 20px;
	box-shadow: 0 30px 60px -20px rgba(0,0,0,0.06);
	position: relative;
	z-index: 2;
	overflow: hidden;
}

/* Chrome Header */
.launchpad-chrome {
	background: rgba(248, 250, 252, 0.6);
	padding: 12px 20px;
	display: flex; align-items: center;
	border-bottom: 1px solid #e2e8f0;
}
.chrome-dots { display: flex; gap: 6px; margin-right: 20px; }
.chrome-dots span { width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.chrome-title { font-size: 9px; font-weight: 800; color: #94a3b8; letter-spacing: 1.5px; font-family: monospace;}

.launchpad-body { padding: 25px 30px; }

.tier-title {
	font-size: 10px; font-weight: 800; color: #64748b;
	letter-spacing: 1.5px; margin-bottom: 15px;
}

/* --- FIX: SINGLE LINE OS PILLS --- */
.os-pill-grid {
	display: flex; 
	flex-wrap: nowrap; /* Forces a single line on desktop */
	gap: 10px; /* Tighter gap to fit perfectly */
}

.os-pill {
	flex: 1; /* Distributes width evenly among all 4 pills */
	display: flex; align-items: center; justify-content: center; gap: 8px;
	background: #ffffff; border: 1px solid #e2e8f0;
	padding: 10px 12px; 
	border-radius: 10px;
	font-size: 0.75rem; /* Shrunk font for sleeker look */
	font-weight: 700; color: #334155;
	white-space: nowrap; /* PREVENTS TEXT FROM WRAPPING TO LINE 2 */
	transition: all 0.3s ease; cursor: default;
	position: relative;
}
.os-pill iconify-icon { font-size: 16px; flex-shrink: 0; }
.os-pill:hover { border-color: #cbd5e1; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.os-pill.active { border-color: #2563eb; background: #eff6ff; color: #1e40af; }

.os-badge {
	position: absolute; top: -10px; right: 5px; /* Tucked in tighter */
	background: #2563eb; color: #fff; font-size: 7px; font-weight: 800;
	padding: 3px 6px; border-radius: 50px; letter-spacing: 0.5px;
	z-index: 2;
}

/* App Card Grid */
.app-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 12px;
}
.app-card {
	display: flex; align-items: center; gap: 12px;
	background: #ffffff; border: 1px solid #e2e8f0;
	padding: 12px; border-radius: 12px;
	transition: all 0.3s ease; cursor: pointer;
}
.app-card:hover {
	transform: translateY(-4px);
	border-color: #2563eb;
	box-shadow: 0 10px 25px -10px rgba(37, 99, 235, 0.15);
}

.app-icon {
	width: 38px; height: 38px; border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px; flex-shrink: 0;
}

.app-info strong { display: block; font-size: 0.85rem; font-weight: 700; color: #0f172a; margin-bottom: 2px; }
.app-info span { display: block; font-size: 0.7rem; color: #64748b; line-height: 1.3; }

/* Floating Badge */
.floating-admin-badge {
	position: absolute; bottom: -10px; right: 30px;
	background: #0f172a; color: #fff;
	padding: 12px 20px; border-radius: 14px;
	display: flex; align-items: center; gap: 12px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.2); z-index: 3;
}
.floating-admin-badge iconify-icon { font-size: 24px; color: #4ade80; }
.floating-admin-badge strong { display: block; font-size: 0.95rem; font-weight: 800; }
.floating-admin-badge span { font-size: 0.75rem; color: #94a3b8; }

/* Responsive adjustments */
@media (max-width: 991px) {
	.os-pill-grid { flex-wrap: wrap; } /* Allow wrapping on tablets/mobile */
	.os-pill { flex: calc(50% - 10px); } /* 2 per row on tablet */
}
@media (max-width: 768px) {
	.floating-admin-badge { right: 20px; bottom: -15px; padding: 10px 15px; }
	.floating-admin-badge strong { font-size: 0.85rem; }
	.app-card-grid { grid-template-columns: 1fr; }
	.os-pill { flex: 100%; } /* 1 per row on tiny phones */
}
