@import "https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap";:root{--bg-main:#0c0a09;--bg-panel:#1c1917bf;--bg-sidebar:#0c0a09e6;--bg-hover:#ffffff0f;--text-primary:#f5f5f4;--text-secondary:#a8a29e;--border-color:#ffffff0f;--accent-primary:#f97316;--accent-primary-hover:#fb923c;--accent-primary-glow:#f9731666;--accent-primary-dim:#f9731626;--accent-green:#22c55e;--accent-green-bg:#22c55e1a;--accent-orange:#ea580c;--accent-purple:#d946ef;--accent-red:#ef4444;--accent-red-bg:#ef44441a;--shadow-sm:0 4px 6px #0003;--shadow-md:0 10px 30px #0009;--shadow-glow:0 0 20px var(--accent-primary-dim)}*{box-sizing:border-box;margin:0;padding:0}body{background-color:var(--bg-main);color:var(--text-primary);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-image:radial-gradient(circle at 80% 20%,#d9770626,#0000 50%),radial-gradient(circle at 20% 80%,#f9731614,#0000 40%),radial-gradient(circle at 100% 100%,#f973160d,#0000 40%);background-repeat:no-repeat;background-size:cover;background-attachment:fixed;font-family:Inter,sans-serif;line-height:1.5}.app-layout{width:100vw;min-height:100vh;display:flex;overflow:hidden}.sidebar{background-color:var(--bg-sidebar);border-right:1px solid var(--border-color);z-index:20;flex-direction:column;flex-shrink:0;align-items:center;width:90px;padding:2rem 0;display:flex}.sidebar-logo{justify-content:center;width:100%;margin-bottom:2.5rem;padding:0 1rem;display:flex}.sidebar-logo img{object-fit:contain;max-width:100%;max-height:40px}.sidebar-nav{flex-direction:column;align-items:center;gap:1.25rem;width:100%;display:flex}.nav-label{display:none}.nav-item{width:48px;height:48px;color:var(--text-secondary);border-radius:14px;justify-content:center;align-items:center;font-size:0;text-decoration:none;transition:all .3s;display:flex;position:relative}.nav-item svg{z-index:2;width:22px;height:22px;transition:color .3s}.nav-item:hover{background-color:var(--bg-hover);color:var(--text-primary)}.nav-item.active{color:var(--accent-primary);background-color:var(--accent-primary-dim);box-shadow:0 0 15px var(--accent-primary-glow)}.nav-item.active svg{color:var(--accent-primary)}.main-content{flex-direction:column;flex:1;height:100vh;display:flex;overflow:hidden auto}.header{background-color:#0000;border-bottom:none;justify-content:space-between;align-items:center;height:auto;min-height:80px;padding:2rem 2.5rem 1rem;display:flex}.header h1{letter-spacing:-.02em;font-size:1.5rem;font-weight:500}.header-controls{align-items:center;gap:1rem;display:flex}select{appearance:none;background-color:var(--bg-panel);border:1px solid var(--border-color);color:var(--text-primary);cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%238B9BB4'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");background-position:right 1rem center;background-repeat:no-repeat;background-size:1rem;border-radius:12px;outline:none;padding:.6rem 2.5rem .6rem 1.2rem;font-size:.875rem;transition:all .2s}select:focus{border-color:var(--accent-primary);box-shadow:0 0 0 1px var(--accent-primary)}select:hover{border-color:#ffffff26}.btn-primary{background:linear-gradient(135deg, var(--accent-primary), #2563eb);color:#fff;cursor:pointer;box-shadow:0 4px 15px var(--accent-primary-glow);border:none;border-radius:12px;align-items:center;gap:.5rem;padding:.6rem 1.25rem;font-weight:500;transition:all .3s;display:flex}.btn-primary:hover{box-shadow:0 6px 20px var(--accent-primary-glow);transform:translateY(-2px)}.btn-secondary{background-color:var(--bg-panel);color:var(--text-primary);border:1px solid var(--border-color);cursor:pointer;border-radius:12px;align-items:center;gap:.5rem;padding:.6rem 1.25rem;font-size:.875rem;font-weight:500;transition:all .2s;display:inline-flex}.btn-secondary:hover{background-color:var(--bg-hover);border-color:#ffffff26}.dashboard-container{flex-direction:column;gap:2rem;padding:1rem 2.5rem 2.5rem;display:flex}.split-view-grid{grid-template-columns:3fr 2fr;gap:1.5rem;display:grid}.metrics-grid{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;display:grid}.metric-card{background:var(--bg-panel);border:1px solid var(--border-color);border-radius:20px;flex-direction:column;gap:.75rem;padding:1.5rem;transition:all .3s;display:flex;position:relative;overflow:hidden}.metric-card:hover{border-color:#ffffff1f;transform:translateY(-3px);box-shadow:0 10px 25px #00000080,0 0 20px #3b82f60d}.metric-title{color:var(--text-secondary);font-size:.875rem;font-weight:500}.metric-value{color:var(--text-primary);letter-spacing:-.02em;font-size:2rem;font-weight:600}.chart-card{background:var(--bg-panel);border:1px solid var(--border-color);border-radius:20px;flex-direction:column;min-height:350px;padding:1.5rem;display:flex}.chart-header{justify-content:space-between;align-items:center;margin-bottom:1.5rem;display:flex}.chart-title{color:var(--text-primary);font-size:1.125rem;font-weight:500}.table-card{background:var(--bg-panel);border:1px solid var(--border-color);border-radius:20px;overflow:hidden}.table-toolbar{border-bottom:1px solid var(--border-color);justify-content:space-between;align-items:center;padding:1.25rem 1.5rem;display:flex}.table-wrapper{overflow-x:auto}table{border-collapse:collapse;text-align:left;width:100%}th{background-color:var(--bg-main);color:var(--text-secondary);text-transform:uppercase;letter-spacing:.05em;border-bottom:1px solid var(--border-color);white-space:nowrap;padding:1rem 1.5rem;font-size:.75rem;font-weight:600}td{border-bottom:1px solid var(--border-color);color:var(--text-primary);white-space:nowrap;padding:1.25rem 1.5rem;font-size:.875rem}tr:last-child td{border-bottom:none}tr:hover td{background-color:var(--bg-hover)}.status-dot{border-radius:50%;width:8px;height:8px;margin-right:.5rem;display:inline-block}.status-dot.active{background-color:var(--accent-green);box-shadow:0 0 10px #10b98199}.status-dot.paused{background-color:var(--text-secondary)}.status-dot.error{background-color:var(--accent-red);box-shadow:0 0 10px #f43f5e99}.funnel-panel{flex-direction:column;flex:1;justify-content:center;gap:1rem;display:flex}.funnel-step-clean{flex-direction:column;align-items:center;display:flex;position:relative}.f-bar-bg{border:1px solid var(--border-color);background-color:#0003;border-radius:12px;justify-content:center;align-items:center;width:100%;height:48px;display:flex;position:relative;overflow:hidden}.f-bar-fill{background:linear-gradient(90deg, #2563eb, var(--accent-primary));opacity:1;box-shadow:0 0 15px var(--accent-primary-glow);z-index:1;border-radius:12px;position:absolute;top:0;bottom:0;left:0}.f-bar-content{z-index:2;justify-content:space-between;align-items:center;width:100%;padding:0 1.25rem;display:flex;position:relative}.f-label{color:#fff;font-size:.875rem;font-weight:500}.f-value{color:#fff;font-size:1.125rem;font-weight:600}.f-connector{flex-direction:column;align-items:center;margin:.5rem 0;display:flex}.f-line{background:linear-gradient(to bottom, var(--border-color), transparent, var(--border-color));width:2px;height:20px}.f-rate{color:var(--accent-primary);background:var(--bg-main);border:1px solid var(--border-color);z-index:3;border-radius:12px;align-items:center;gap:4px;margin-top:-10px;padding:4px 10px;font-size:.75rem;font-weight:600;display:flex}.modal-overlay{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);z-index:50;background:#0a0d14cc;justify-content:center;align-items:center;display:flex;position:fixed;inset:0}.modal-content{background:var(--bg-panel);border:1px solid var(--border-color);border-radius:20px;flex-direction:column;width:100%;max-width:600px;max-height:90vh;display:flex;box-shadow:0 20px 40px #00000080}.modal-header{border-bottom:1px solid var(--border-color);justify-content:space-between;align-items:center;padding:1.5rem;display:flex}.modal-header h3{font-size:1.25rem;font-weight:600}.modal-body{flex-direction:column;gap:1.5rem;padding:1.5rem;display:flex;overflow-y:auto}.metrics-group h4{color:var(--text-secondary);margin-bottom:1rem;font-size:.875rem;font-weight:600}.metrics-grid-checkboxes{grid-template-columns:1fr 1fr;gap:.75rem;display:grid}.checkbox-label{cursor:pointer;color:var(--text-secondary);align-items:center;gap:.5rem;font-size:.875rem;display:flex}.checkbox-label:hover{color:var(--text-primary)}.checkbox-label input{width:1.1rem;height:1.1rem;accent-color:var(--accent-primary);cursor:pointer}input[type=text]{color:var(--text-primary);border:1px solid var(--border-color);background-color:#0003;border-radius:12px;padding:.75rem 1rem}input[type=text]:focus{outline:none;border-color:var(--accent-primary)!important}.modal-footer{border-top:1px solid var(--border-color);justify-content:flex-end;gap:1rem;padding:1.5rem;display:flex}.spinner{border:3px solid var(--border-color);border-top-color:var(--accent-primary);border-radius:50%;width:24px;height:24px;animation:1s linear infinite spin}@keyframes spin{to{transform:rotate(360deg)}}::-webkit-scrollbar{width:8px;height:8px}::-webkit-scrollbar-track{background:0 0}::-webkit-scrollbar-thumb{background:#ffffff1a;border-radius:10px}::-webkit-scrollbar-thumb:hover{background:#fff3}@media (width<=1024px){.split-view-grid{grid-template-columns:1fr}}@media (width<=768px){.app-layout{flex-direction:column}.sidebar{border-right:none;border-bottom:1px solid var(--border-color);flex-direction:row;justify-content:space-between;align-items:center;width:100%;padding:1rem}.sidebar-logo{width:auto;margin-bottom:0}.sidebar-nav{flex-flow:wrap;justify-content:center;gap:.5rem;width:auto}.nav-item{width:40px;height:40px}.header{flex-direction:column;align-items:flex-start;gap:1.5rem;height:auto;padding:1.5rem}.header-controls{flex-direction:column;align-items:stretch;width:100%}.dashboard-container{padding:1.5rem}}
