/* GenOS Foundation — Page Layout
   Uses tokens from ../design-system/components.css */

/* ---- RESET & LAYOUT ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', -apple-system, sans-serif; background: var(--gray-0); color: var(--gray-80); line-height: 1.5; -webkit-font-smoothing: antialiased; }
.app-container { padding-top: 72px; }
.main-content { max-width: 1320px; margin: 0 auto; padding: 32px 40px; }
.screen { display: none; }
.screen.active { display: block; animation: fadeIn 0.3s ease; }
.hidden { display: none !important; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }

/* ---- TOPNAV ---- */
.topnav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: 72px; background: white; border-bottom: 1px solid var(--gray-10); display: flex; align-items: center; justify-content: space-between; padding: 0 40px; }
.topnav-left { display: flex; align-items: center; gap: 16px; }
.topnav-logo { height: 22px; }
.topnav-divider { width: 1px; height: 24px; background: var(--gray-20); }
.topnav-product { font-size: 15px; font-weight: 600; color: var(--gray-80); letter-spacing: -0.02em; }
.topnav-links { display: flex; gap: 4px; }
.topnav-link { padding: 8px 16px; font-size: 13px; font-weight: 500; color: var(--gray-50); text-decoration: none; border-radius: var(--radius-xs); transition: var(--transition); }
.topnav-link:hover { color: var(--gray-80); background: var(--gray-0); }
.topnav-link.active { color: var(--primary); background: var(--primary-bg); }
.topnav-right { display: flex; align-items: center; gap: 12px; }
.topnav-avatar { width: 34px; height: 34px; background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; font-size: 12px; font-weight: 600; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ---- SECTION HEADERS ---- */
.section-header { display: flex; justify-content: space-between; align-items: flex-start; padding: 40px 0 32px; border-bottom: 1px solid var(--gray-10); margin-bottom: 32px; }
.section-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 8px; display: block; }
.section-title { font-size: 36px; font-weight: 700; color: var(--gray-100); letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 8px; }
.section-subtitle { font-size: 15px; color: var(--gray-50); max-width: 560px; line-height: 1.6; }
.section-header-status { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-50); padding-top: 12px; }
.section-header-actions { padding-top: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot-green { background: var(--success); }
.status-dot-orange { background: var(--warning); }

/* ---- DASHBOARD HERO ---- */
.dashboard-hero { background: linear-gradient(135deg, #4318D1 0%, #6B4DE6 50%, #0EA5A0 100%); border-radius: var(--radius-lg); padding: 64px 48px 80px; margin: 0 -40px 40px; position: relative; overflow: hidden; }
.dashboard-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>'); opacity: 0.4; }
.hero-content { position: relative; z-index: 1; max-width: 720px; animation: fadeIn 0.6s ease; }
.hero-label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); margin-bottom: 12px; display: block; }
.hero-title { font-size: 48px; font-weight: 700; color: white; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px; }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.6; }
.hero-status-card { position: relative; z-index: 1; margin-top: 28px; margin-bottom: 48px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: white; padding: 16px 24px; animation: slideUp 0.8s ease 0.2s both; }

/* ---- 3D HERO ELEMENTS ---- */
.hero-3d-elements { position: absolute; top: 0; right: 0; width: 600px; height: 100%; pointer-events: none; z-index: 1; opacity: 0.9; }

/* DNA Helix SVG - Horizontal, clean */
.hero-3d-dna { position: absolute; top: 50%; right: 80px; width: 300px; height: 150px; transform: translateY(-50%); filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.2)); opacity: 0.85; }

/* Flow Cell - Isometric 3D */
.hero-3d-flowcell { position: absolute; bottom: 100px; right: 120px; animation: float 6s ease-in-out infinite 1s; filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.2)); }

.flowcell-container { width: 160px; height: 120px; position: relative; transform-style: preserve-3d; transform: rotateX(25deg) rotateZ(-15deg); }

.flowcell-face { position: absolute; background: rgba(255,255,255,0.2); backdrop-filter: blur(12px); border: 2px solid rgba(255,255,255,0.3); }

.flowcell-top { width: 160px; height: 100px; border-radius: 16px; transform: translateZ(15px); background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(14,165,160,0.15) 100%); box-shadow: inset 0 4px 12px rgba(255,255,255,0.2), inset 0 -2px 8px rgba(0,0,0,0.1); }

.flowcell-right { width: 30px; height: 100px; border-radius: 0 12px 12px 0; transform: translateX(160px) rotateY(90deg); transform-origin: left; background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.08) 100%); }

.flowcell-front { width: 160px; height: 30px; border-radius: 0 0 12px 12px; transform: translateY(100px) rotateX(-90deg); transform-origin: top; background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.06) 100%); }

/* Flow cell grid/lanes */
.flowcell-grid { display: flex; gap: 8px; padding: 16px; height: 100%; }
.flowcell-lane { flex: 1; background: linear-gradient(180deg, rgba(67,24,209,0.3) 0%, rgba(14,165,160,0.3) 100%); border-radius: 6px; box-shadow: inset 0 2px 8px rgba(0,0,0,0.2); animation: pulse 2s ease-in-out infinite; }
.flowcell-lane:nth-child(2) { animation-delay: 0.3s; }
.flowcell-lane:nth-child(3) { animation-delay: 0.6s; }
.flowcell-lane:nth-child(4) { animation-delay: 0.9s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ---- DASHBOARD HERO ALTERNATE ---- */
.dashboard-hero-alt { padding: 48px 0 40px; }
.hero-greeting { margin-bottom: 20px; }
.hero-greeting-title { font-size: 42px; font-weight: 700; color: var(--gray-100); letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 12px; }
.hero-greeting-subtitle { font-size: 16px; color: var(--gray-50); line-height: 1.6; }
.hero-status-inline { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-60); font-weight: 500; margin-bottom: 32px; padding: 10px 20px; background: var(--gray-0); border-radius: var(--radius-md); border: 1px solid var(--gray-10); }

.stats-grid-alt { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card-alt { border-radius: var(--radius-lg); padding: 32px; position: relative; overflow: hidden; cursor: pointer; transition: all 0.4s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); border: 1px solid transparent; }
.stat-card-alt:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12); }

.stat-card-large { grid-column: span 2; min-height: 220px; }
.stat-card-small { grid-column: span 1; min-height: 220px; }

.stat-card-primary { background: linear-gradient(135deg, #4318D1 0%, #6B4DE6 100%); color: white; }
.stat-card-primary:hover { border-color: rgba(255, 255, 255, 0.3); }
.stat-card-secondary { background: linear-gradient(135deg, #0EA5A0 0%, #0D9488 100%); color: white; }
.stat-card-secondary:hover { border-color: rgba(255, 255, 255, 0.3); }
.stat-card-teal { background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%); color: white; }
.stat-card-teal:hover { border-color: rgba(255, 255, 255, 0.3); }
.stat-card-success { background: linear-gradient(135deg, #10B981 0%, #047857 100%); color: white; }
.stat-card-success:hover { border-color: rgba(255, 255, 255, 0.3); }

.stat-card-content { position: relative; z-index: 2; }
.stat-label-alt { font-size: 13px; font-weight: 600; opacity: 0.9; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-value-xl { font-size: 56px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 8px; }
.stat-value-md { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }

.stat-card-icon-large { position: absolute; right: 32px; top: 32px; opacity: 0.2; z-index: 1; transition: all 0.4s ease; }
.stat-card-alt:hover .stat-card-icon-large { opacity: 0.3; transform: scale(1.1); }

.stat-icon-small { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }

.stat-card-arrow { position: absolute; bottom: 32px; right: 32px; font-size: 24px; opacity: 0.6; transition: all 0.3s ease; }
.stat-card-alt:hover .stat-card-arrow { opacity: 1; transform: translateX(4px); }

/* ---- CARDS ---- */
.card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); transition: all 0.3s ease; }
.card:hover { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); border-color: var(--gray-20); transform: translateY(-1px); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.card-header h3 { font-size: 18px; font-weight: 600; color: var(--gray-100); letter-spacing: -0.02em; }
.card-wide { grid-column: 1 / -1; }

/* ---- STATS ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stats-row-hero { position: relative; z-index: 1; margin-bottom: 0; }
.stat-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card-enhanced { padding: 32px 28px; position: relative; transition: all 0.3s ease; animation: slideUp 0.6s ease both; }
.stat-card-enhanced:nth-child(1) { animation-delay: 0.1s; }
.stat-card-enhanced:nth-child(2) { animation-delay: 0.2s; }
.stat-card-enhanced:nth-child(3) { animation-delay: 0.3s; }
.stat-card-enhanced:nth-child(4) { animation-delay: 0.4s; }
.stat-card-enhanced:hover { transform: translateY(-4px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.stat-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.stat-icon-primary { background: var(--primary-bg); color: var(--primary); }
.stat-icon-secondary { background: rgba(67, 24, 209, 0.08); color: #6B4DE6; }
.stat-icon-teal { background: rgba(14, 165, 160, 0.1); color: var(--secondary); }
.stat-icon-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.stat-label { font-size: 12px; color: var(--gray-50); font-weight: 500; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-value { font-size: 36px; font-weight: 700; color: var(--gray-100); letter-spacing: -0.03em; }
.stat-value-large { font-size: 48px; font-weight: 600; color: var(--gray-100); letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; }
.stat-delta { font-size: 13px; color: var(--gray-50); font-weight: 500; margin-top: 6px; }
.stat-positive { color: var(--success); font-weight: 600; }
.stat-negative { color: var(--error); }

/* ---- DASHBOARD GRID ---- */
.dashboard-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ---- SECTION BACKGROUNDS ---- */
.section-bg-white { background: white; padding: 48px 0; margin: 0 -40px; }
.section-bg-white .dashboard-grid { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.section-bg-tinted { background: linear-gradient(to bottom, rgba(67, 24, 209, 0.02), rgba(14, 165, 160, 0.02)); padding: 48px 0; margin: 0 -40px; }
.section-bg-tinted .dashboard-grid { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ---- PIPELINE ---- */
.pipeline-visual { display: flex; align-items: center; gap: 8px; padding: 12px 0; }
.pipeline-stage { flex: 1; }
.pipeline-stage-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.pipeline-stage-label { font-size: 13px; font-weight: 600; color: var(--gray-60); text-transform: uppercase; letter-spacing: 0.04em; }
.pipeline-stage-count { font-size: 28px; font-weight: 600; color: var(--gray-100); letter-spacing: -0.02em; }
.pipeline-bar { height: 8px; background: var(--gray-10); border-radius: var(--radius-sm); overflow: hidden; }
.pipeline-fill { height: 100%; background: var(--primary); border-radius: var(--radius-sm); transition: width 0.6s ease; }
.pipeline-fill.fill-teal { background: var(--secondary); }
.pipeline-fill.fill-purple { background: var(--primary-light); }
.pipeline-fill.fill-orange { background: var(--warning); }
.pipeline-fill.fill-green { background: var(--success); }
.pipeline-arrow { color: var(--gray-30); font-size: 20px; flex-shrink: 0; }

/* ---- RUN LIST ---- */
.run-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-10); }
.run-item:last-child { border-bottom: none; }
.run-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.run-icon.seq { background: var(--primary-bg); }
.run-icon.analyze { background: #D1FAE5; }
.run-icon.qc { background: #FEF3C7; }
.run-icon.done { background: #DBEAFE; }
.run-info { flex: 1; min-width: 0; }
.run-info-title { font-size: 15px; font-weight: 600; color: var(--gray-80); margin-bottom: 2px; }
.run-info-meta { font-size: 13px; color: var(--gray-50); }
.run-progress { width: 80px; }
.run-progress-bar { height: 6px; background: var(--gray-10); border-radius: var(--radius-xs); overflow: hidden; }
.run-progress-fill { height: 100%; border-radius: var(--radius-xs); }

/* ---- EXCEPTION LIST ---- */
.exception-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-10); }
.exception-item:last-child { border-bottom: none; }
.exception-dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 5px; flex-shrink: 0; }
.exception-dot.warn { background: var(--warning); }
.exception-dot.error { background: var(--error); }
.exception-info { flex: 1; }
.exception-info-title { font-size: 15px; font-weight: 600; color: var(--gray-80); margin-bottom: 4px; }
.exception-info-detail { font-size: 13px; color: var(--gray-50); line-height: 1.5; }

/* ---- DATA TABLE ---- */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; font-size: 12px; font-weight: 700; color: var(--gray-50); text-transform: uppercase; letter-spacing: 0.08em; padding: 12px 16px; border-bottom: 2px solid var(--gray-20); }
.data-table td { font-size: 14px; padding: 16px; border-bottom: 1px solid var(--gray-10); color: var(--gray-70); font-weight: 500; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--gray-0); }

/* ---- AI INSIGHTS BAR ---- */
.ai-insights-bar { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.ai-bar-label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.ai-bar-items { display: flex; flex-direction: column; gap: 8px; }
.ai-bar-item { padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.6; }
.ai-bar-warn { background: #FFF7ED; color: #92400E; }
.ai-bar-info { background: #EFF6FF; color: #1E40AF; }
.ai-bar-tip { background: #F0FDF4; color: #166534; }

/* ---- AI INSIGHTS ENHANCED ---- */
.ai-insights-enhanced { margin-bottom: 40px; }
.ai-insights-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.ai-insights-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 12px rgba(67, 24, 209, 0.25); }
.ai-insights-title { font-size: 18px; font-weight: 700; color: var(--gray-100); letter-spacing: -0.02em; }
.ai-insights-cards { display: grid; gap: 16px; }
.ai-insight-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 20px 24px; box-shadow: var(--shadow-md); display: flex; gap: 16px; align-items: flex-start; transition: all 0.3s ease; position: relative; overflow: hidden; }
.ai-insight-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.ai-insight-indicator { width: 4px; height: 100%; position: absolute; left: 0; top: 0; border-radius: 0 var(--radius-xs) var(--radius-xs) 0; }
.ai-insight-warn .ai-insight-indicator { background: linear-gradient(180deg, #F97316, #EA580C); }
.ai-insight-info .ai-insight-indicator { background: linear-gradient(180deg, #3B82F6, #2563EB); }
.ai-insight-tip .ai-insight-indicator { background: linear-gradient(180deg, #10B981, #059669); }
.ai-insight-content { font-size: 14px; line-height: 1.7; color: var(--gray-70); padding-left: 12px; }
.ai-insight-content strong { color: var(--gray-100); font-weight: 600; }
.ai-insight-warn { border-left: 4px solid #F97316; }
.ai-insight-info { border-left: 4px solid #3B82F6; }
.ai-insight-tip { border-left: 4px solid #10B981; }

/* ---- ACTION CENTER ---- */
.action-center { margin-bottom: 48px; }
.action-center-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 20px; }
.action-center-title-wrapper { display: flex; align-items: center; gap: 16px; }
.action-center-icon { width: 56px; height: 56px; background: linear-gradient(135deg, #6366F1, #8B5CF6); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 4px 16px rgba(99, 102, 241, 0.25); }
.action-center-title { font-size: 28px; font-weight: 700; color: var(--gray-100); letter-spacing: -0.02em; line-height: 1.2; }
.action-center-subtitle { font-size: 14px; color: var(--gray-50); margin-top: 4px; }
.action-center-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.action-filter { padding: 8px 18px; border-radius: var(--radius-md); font-size: 13px; font-weight: 600; border: 2px solid var(--gray-10); background: white; color: var(--gray-60); cursor: pointer; transition: all 0.2s ease; }
.action-filter:hover { border-color: var(--gray-20); background: var(--gray-0); }
.action-filter.active { border-color: var(--primary); background: var(--primary); color: white; }

.action-items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.action-item { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); transition: all 0.3s ease; position: relative; overflow: hidden; }
.action-item::before { content: ''; position: absolute; right: 0; top: 0; width: 200px; height: 200px; border-radius: 50%; opacity: 0.04; transition: all 0.4s ease; pointer-events: none; transform: translate(60px, -60px); }
.action-item:hover { box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.08); transform: translateY(-3px); border-color: var(--gray-20); }
.action-item:hover::before { opacity: 0.08; transform: translate(40px, -40px); }

/* Type-based styling (primary visual) */
.action-item.action-exception { background: linear-gradient(135deg, #FFFFFF 0%, #FFF7ED 100%); border-color: rgba(234, 88, 12, 0.15); }
.action-item.action-exception::before { background: radial-gradient(circle, #EA580C, #C2410C); }
.action-item.action-exception:hover { border-color: rgba(234, 88, 12, 0.3); }

.action-item.action-ai-prediction { background: linear-gradient(135deg, #FFFFFF 0%, #EFF6FF 100%); border-color: rgba(59, 130, 246, 0.15); }
.action-item.action-ai-prediction::before { background: radial-gradient(circle, #3B82F6, #2563EB); }
.action-item.action-ai-prediction:hover { border-color: rgba(59, 130, 246, 0.3); }

.action-item.action-optimization { background: linear-gradient(135deg, #FFFFFF 0%, #F0FDF4 100%); border-color: rgba(16, 185, 129, 0.15); }
.action-item.action-optimization::before { background: radial-gradient(circle, #10B981, #059669); }
.action-item.action-optimization:hover { border-color: rgba(16, 185, 129, 0.3); }

.action-item-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.action-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; border-radius: var(--radius-md); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; position: relative; overflow: hidden; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08); }
.action-badge svg { position: relative; z-index: 1; }
.action-badge::before { content: ''; position: absolute; inset: 0; opacity: 0.1; transition: opacity 0.3s ease; }
.action-item:hover .action-badge::before { opacity: 0.15; }

/* Badge styling based on parent card type */
.action-item.action-exception .action-badge { background: linear-gradient(135deg, #FFEDD5, #FED7AA); color: #C2410C; border: 1px solid rgba(234, 88, 12, 0.2); }
.action-item.action-exception .action-badge::before { background: linear-gradient(135deg, #EA580C, #C2410C); }

.action-item.action-ai-prediction .action-badge { background: linear-gradient(135deg, #DBEAFE, #BFDBFE); color: #1E40AF; border: 1px solid rgba(59, 130, 246, 0.2); }
.action-item.action-ai-prediction .action-badge::before { background: linear-gradient(135deg, #3B82F6, #2563EB); }

.action-item.action-optimization .action-badge { background: linear-gradient(135deg, #D1FAE5, #A7F3D0); color: #047857; border: 1px solid rgba(16, 185, 129, 0.2); }
.action-item.action-optimization .action-badge::before { background: linear-gradient(135deg, #10B981, #059669); }

.action-time { font-size: 12px; color: var(--gray-40); font-weight: 500; }

.action-item-title { font-size: 17px; font-weight: 600; color: var(--gray-100); margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.01em; }
.action-item-detail { font-size: 14px; color: var(--gray-60); line-height: 1.7; margin-bottom: 20px; }
.action-item-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- AI SUGGESTION CARD ---- */
.ai-suggestion-card { background: var(--gray-0); border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 14px; }
.ai-suggestion-icon { color: var(--success); flex-shrink: 0; margin-top: 2px; }
.ai-suggestion-content { flex: 1; }
.ai-suggestion-title { font-size: 12px; font-weight: 600; color: var(--success); margin-bottom: 4px; }
.ai-suggestion-text { font-size: 13px; color: var(--gray-60); line-height: 1.6; }

/* ---- AI QC PREDICTIONS ---- */
.ai-qc-predictions { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 24px 28px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.ai-prediction-header { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-60); margin-bottom: 16px; }
.ai-prediction-items { display: flex; flex-direction: column; gap: 8px; }
.ai-prediction-item { display: flex; align-items: center; gap: 14px; padding: 12px 16px; border-radius: var(--radius-sm); background: var(--gray-0); }
.ai-prediction-sample { font-size: 13px; font-weight: 600; min-width: 110px; color: var(--gray-80); }
.ai-prediction-run { font-size: 12px; color: var(--gray-50); min-width: 130px; }
.ai-prediction-risk { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; }
.ai-prediction-risk.high { color: var(--error); }
.ai-prediction-risk.medium { color: var(--warning); }
.ai-prediction-risk.low { color: var(--success); }
.ai-prediction-bar { width: 80px; height: 5px; background: var(--gray-10); border-radius: var(--radius-xs); overflow: hidden; }
.ai-prediction-bar-fill { height: 100%; border-radius: var(--radius-xs); }
.ai-prediction-bar-fill.high { background: var(--error); }
.ai-prediction-bar-fill.medium { background: var(--warning); }
.ai-prediction-bar-fill.low { background: var(--success); }
.ai-prediction-detail { font-size: 12px; color: var(--gray-50); flex: 1; }

/* ---- START WORKFLOW ---- */
.workflow-start-layout { display: flex; flex-direction: column; gap: 20px; }
.rp-step-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.rp-step-num { width: 34px; height: 34px; background: var(--primary); color: white; font-size: 14px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rp-step-header h3 { font-size: 18px; font-weight: 600; color: var(--gray-80); }
.assay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.assay-card { background: white; border: 2px solid var(--gray-10); border-radius: var(--radius-md); padding: 24px; cursor: pointer; transition: var(--transition); }
.assay-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.assay-card.selected { border-color: var(--primary); background: var(--primary-bg-subtle); }
.assay-card-name { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--gray-80); }
.assay-card-desc { font-size: 13px; color: var(--gray-50); margin-bottom: 10px; line-height: 1.5; }
.assay-card-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.assay-tag { font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: var(--radius-xs); background: var(--gray-10); color: var(--gray-50); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.native-select { appearance: none; border: none; outline: none; background: transparent; font-family: inherit; font-size: 13px; font-weight: 400; color: var(--gray-80); width: 100%; cursor: pointer; }
.sample-section { margin-top: 20px; }
.sample-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.sample-section-header h4 { font-size: 15px; font-weight: 600; color: var(--gray-80); }
.sample-actions { display: flex; gap: 8px; }
.batching-hint { margin-top: 14px; padding: 14px 18px; background: var(--primary-bg-subtle); border-radius: var(--radius-sm); font-size: 13px; color: var(--primary-dark); line-height: 1.5; }
.rp-actions { display: flex; justify-content: flex-end; gap: 14px; margin-top: 28px; }
.validation-results { margin-bottom: 24px; }
.validation-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 14px; color: var(--gray-70); }
.validation-icon { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.validation-icon.pass { background: #D1FAE5; color: var(--success); }
.validation-icon.fail { background: #FEE2E2; color: var(--error); }
.sample-sheet-preview { background: var(--gray-0); border: 1px solid var(--gray-10); border-radius: var(--radius-sm); padding: 20px; font-family: 'SF Mono', 'Fira Code', monospace; font-size: 11px; line-height: 1.7; white-space: pre; overflow-x: auto; max-height: 260px; }

/* ---- MONITORING ---- */
.monitoring-list { display: flex; flex-direction: column; gap: 20px; }
.monitor-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-sm); }
.monitor-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.monitor-header h3 { font-size: 16px; font-weight: 600; color: var(--gray-80); }
.monitor-meta { font-size: 12px; color: var(--gray-50); margin-top: 4px; }
.monitor-stages { display: flex; gap: 4px; align-items: center; margin-top: 14px; }
.monitor-stage { flex: 1; text-align: center; padding: 10px 8px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; }
.monitor-stage.complete { background: #D1FAE5; color: #047857; }
.monitor-stage.active { background: #DBEAFE; color: #1D4ED8; animation: pulse 2s infinite; }
.monitor-stage.pending { background: var(--gray-10); color: var(--gray-40); }
.monitor-stage-arrow { color: var(--gray-30); font-size: 14px; flex-shrink: 0; }
.monitor-samples { margin-top: 18px; font-size: 13px; color: var(--gray-50); }
.monitor-progress { margin-top: 14px; }
.monitor-progress-bar { height: 6px; background: var(--gray-10); border-radius: var(--radius-xs); overflow: hidden; }
.monitor-progress-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--primary-light)); border-radius: var(--radius-xs); transition: width 0.6s ease; }
.monitor-progress-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray-50); margin-top: 6px; }

/* ---- QC REVIEW ---- */
.qc-filters { display: flex; gap: 8px; margin-bottom: 24px; }
.qc-list { display: flex; flex-direction: column; gap: 16px; }
.qc-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-sm); }
.qc-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.qc-card-title { font-size: 15px; font-weight: 600; color: var(--gray-80); }
.qc-card-meta { font-size: 12px; color: var(--gray-50); margin-top: 4px; }
.qc-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 20px 0; }
.qc-metric { background: var(--gray-0); border-radius: var(--radius-sm); padding: 14px; }
.qc-metric-label { font-size: 11px; color: var(--gray-50); font-weight: 500; }
.qc-metric-value { font-size: 18px; font-weight: 700; margin-top: 4px; }
.qc-metric-value.fail { color: var(--error); }
.qc-metric-value.pass { color: var(--success); }
.qc-metric-threshold { font-size: 10px; color: var(--gray-40); margin-top: 4px; }
.qc-recommendation { background: #FFF7ED; border: 1px solid #FED7AA; border-radius: var(--radius-sm); padding: 14px 18px; font-size: 13px; color: #92400E; margin-bottom: 20px; line-height: 1.6; }
.qc-actions { display: flex; gap: 10px; }

/* ---- WORKFLOWS ---- */
.workflow-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.workflow-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); cursor: pointer; transition: var(--transition); }
.workflow-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.wf-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.wf-card-title { font-size: 15px; font-weight: 600; color: var(--gray-80); }
.wf-card-desc { font-size: 13px; color: var(--gray-50); margin-bottom: 14px; line-height: 1.5; }
.wf-card-steps { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.wf-step-tag { font-size: 10px; font-weight: 500; padding: 4px 12px; border-radius: var(--radius-xs); background: var(--primary-bg); color: var(--primary); }
.wf-card-footer { display: flex; gap: 20px; font-size: 12px; color: var(--gray-40); }

/* ---- WORKFLOW DETAIL ---- */
.wf-detail-content { display: flex; flex-direction: column; gap: 16px; }
.wf-step-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.wf-step-card-header { display: flex; align-items: center; gap: 14px; }
.wf-step-num { width: 30px; height: 30px; background: var(--primary-bg); color: var(--primary); font-size: 12px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wf-step-card-title { font-size: 15px; font-weight: 600; color: var(--gray-80); }
.wf-step-card-desc { font-size: 13px; color: var(--gray-50); margin-top: 10px; margin-left: 44px; }
.wf-step-connector { display: flex; justify-content: center; padding: 4px 0; color: var(--gray-30); font-size: 18px; }
.wf-detail-actions { display: flex; gap: 14px; margin-top: 12px; }

/* ---- FLEET ---- */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 20px; }
.fleet-card { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.fleet-card:hover { box-shadow: var(--shadow-md); }
.fleet-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.fleet-card-name { font-size: 16px; font-weight: 600; color: var(--gray-80); }
.fleet-card-model { font-size: 12px; color: var(--gray-50); margin-top: 4px; }
.fleet-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 14px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; }
.fleet-status.running { background: #DBEAFE; color: #1D4ED8; }
.fleet-status.idle { background: #D1FAE5; color: #047857; }
.fleet-status.error { background: #FEE2E2; color: #DC2626; }
.fleet-status-dot { width: 6px; height: 6px; border-radius: 50%; }
.fleet-status.running .fleet-status-dot { background: #1D4ED8; animation: pulse 2s infinite; }
.fleet-status.idle .fleet-status-dot { background: #047857; }
.fleet-status.error .fleet-status-dot { background: #DC2626; }
.fleet-card-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.fleet-metric { text-align: center; padding: 12px; background: var(--gray-0); border-radius: var(--radius-sm); }
.fleet-metric-label { font-size: 10px; color: var(--gray-40); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.fleet-metric-value { font-size: 18px; font-weight: 700; margin-top: 4px; color: var(--gray-80); }
.fleet-card-run { margin-top: 14px; padding: 12px 16px; background: #EFF6FF; border-radius: var(--radius-sm); font-size: 12px; color: #1E40AF; }
.fleet-card-run-label { font-weight: 600; }
.fleet-card-idle { margin-top: 14px; padding: 12px 16px; background: var(--gray-0); border-radius: var(--radius-sm); font-size: 12px; color: var(--gray-50); }

/* ---- FLEET UTIL CHART ---- */
.fleet-util-chart { padding: 16px 0; }
.fleet-util-bar-group { display: flex; flex-direction: column; align-items: center; flex: 1; }
.fleet-util-bar-container { width: 100%; height: 120px; display: flex; align-items: flex-end; justify-content: center; gap: 4px; }
.fleet-util-bar { width: 32px; border-radius: 4px 4px 0 0; transition: height 0.4s ease; }
.fleet-util-bar.runs { background: var(--primary); }
.fleet-util-bar.samples { background: var(--secondary); opacity: 0.5; }
.fleet-util-label { font-size: 11px; font-weight: 600; color: var(--gray-50); margin-top: 10px; text-align: center; }
.fleet-util-legend { display: flex; gap: 20px; justify-content: center; margin-top: 16px; font-size: 12px; color: var(--gray-50); }
.fleet-util-legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 6px; }

/* ---- ANOMALY LIST ---- */
.anomaly-list { display: flex; flex-direction: column; gap: 8px; }
.anomaly-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; line-height: 1.6; }
.anomaly-item.warn { background: #FFF7ED; color: #92400E; }
.anomaly-item.info { background: #EFF6FF; color: #1E40AF; }
.anomaly-item.ok { background: #F0FDF4; color: #166534; }
.anomaly-icon { flex-shrink: 0; font-size: 14px; margin-top: 2px; }
.anomaly-time { font-size: 11px; color: var(--gray-40); flex-shrink: 0; min-width: 60px; text-align: right; }

/* ---- FLEET MINI BAR ---- */
.fleet-mini-bar { display: flex; gap: 14px; margin-bottom: 24px; }
.fleet-mini-item { background: white; border: 1px solid var(--gray-10); border-radius: var(--radius-md); padding: 14px 18px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 12px; flex: 1; cursor: pointer; transition: var(--transition); }
.fleet-mini-item:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.fleet-mini-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.fleet-mini-dot.running { background: #3B82F6; animation: pulse 2s infinite; }
.fleet-mini-dot.idle { background: var(--success); }
.fleet-mini-dot.error { background: var(--error); }
.fleet-mini-name { font-size: 13px; font-weight: 600; color: var(--gray-80); }
.fleet-mini-status { font-size: 11px; color: var(--gray-50); }

/* ---- TOAST ---- */
.toast-area { position: fixed; bottom: 28px; right: 28px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.page-toast { background: var(--gray-100); color: white; padding: 14px 22px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; box-shadow: var(--shadow-lg); animation: slideUp 0.3s ease; }
.page-toast.success { background: var(--success); }
.page-toast.error { background: var(--error); }

/* ---- TAB CONTENT ---- */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- BADGES ---- */
.badge-published { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; background: #D1FAE5; color: #047857; }
.badge-draft { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; background: #FEF3C7; color: #B45309; }
.badge-info { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; background: #DBEAFE; color: #1D4ED8; }
.badge-success { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; background: #D1FAE5; color: #047857; }
.badge-warning { display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--radius-xs); font-size: 11px; font-weight: 600; background: #FEF3C7; color: #B45309; }

/* Settings Page */
.settings-reset-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-20);
}

.settings-reset-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 4px;
}

.settings-reset-desc {
  font-size: 13px;
  color: var(--gray-60);
}

/* Add Instrument Wizard */
.wizard-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.wizard-overlay.active {
  display: flex;
}

.wizard-container {
  background: white;
  border-radius: 24px;
  width: 90%;
  max-width: 560px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.wizard-step {
  display: none;
  padding: 48px;
  text-align: center;
  animation: fadeInStep 0.4s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.wizard-icon-pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.wizard-icon-success {
  background: linear-gradient(135deg, #10B981, #059669);
}

.wizard-icon-celebrate {
  animation: celebrate 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes celebrate {
  0% { transform: scale(0) rotate(-180deg); }
  50% { transform: scale(1.1) rotate(10deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.wizard-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--gray-100);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.wizard-subtitle {
  font-size: 15px;
  color: var(--gray-60);
  margin-bottom: 32px;
  line-height: 1.5;
}

.wizard-progress {
  height: 4px;
  background: var(--gray-20);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 4px;
  transition: width 0.3s ease;
  animation: shimmer 1.5s infinite;
  background-size: 200% 100%;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.wizard-status {
  font-size: 13px;
  color: var(--gray-60);
  font-weight: 500;
}

.wizard-instruments-list {
  margin: 32px 0;
  text-align: left;
}

.wizard-instrument-card {
  border: 2px solid var(--gray-20);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-instrument-card:hover {
  border-color: var(--primary);
  background: rgba(67, 24, 209, 0.02);
}

.wizard-instrument-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(67, 24, 209, 0.08), rgba(14, 165, 160, 0.08));
  box-shadow: 0 4px 12px rgba(67, 24, 209, 0.1);
}

.wizard-instrument-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 4px;
}

.wizard-instrument-detail {
  font-size: 13px;
  color: var(--gray-60);
}

.wizard-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.wizard-form {
  text-align: left;
  margin: 32px 0;
}

.wizard-form-group {
  margin-bottom: 20px;
}

.wizard-form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 8px;
}

.wizard-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-20);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.2s ease;
}

.wizard-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(67, 24, 209, 0.1);
}

.wizard-checklist {
  text-align: left;
  margin-top: 32px;
}

.wizard-checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--gray-60);
}

.wizard-checklist-item.completed {
  color: var(--gray-100);
}

.wizard-checklist-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.wizard-checklist-item.completed .wizard-checklist-icon {
  animation: checkBounce 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes checkBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.wizard-success-card {
  background: linear-gradient(135deg, rgba(67, 24, 209, 0.08), rgba(14, 165, 160, 0.08));
  border: 1px solid var(--gray-20);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
}

.wizard-success-icon {
  font-size: 32px;
}

.wizard-success-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-100);
  margin-bottom: 4px;
}

.wizard-success-detail {
  font-size: 14px;
  color: var(--gray-60);
}

.topnav-avatar {
  cursor: pointer;
  transition: all 0.2s ease;
}

.topnav-avatar:hover {
  background: var(--primary);
  transform: scale(1.05);
}
