:root {

    --bg-black: #050608;

    --card-surface: #0d1117;

    --accent-blue: #3f6ad8;

    --text-white: #f8f9fa;

    --text-muted: #6b7280;

    --border: rgba(255, 255, 255, 0.05);

}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

body { margin: 0; font-family: 'Inter', sans-serif; background: var(--bg-black); color: var(--text-white); overflow: hidden; }

/* Onboarding & Modals */

.overlay, .modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 1000; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }

.lock-card { background: var(--card-surface); padding: 40px; border-radius: 24px; text-align: center; border: 1px solid var(--border); width: 90%; max-width: 400px; }

.onboarding-logo { width: 100px; margin-bottom: 20px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

.input-field { width: 100%; padding: 12px; margin: 10px 0; background: #1a1f26; border: 1px solid var(--border); border-radius: 8px; color: white; }

.input-row { display: flex; gap: 10px; }

/* Dashboard Layout */

.dashboard-wrapper { display: flex; height: 100vh; }

.sidebar { width: 90px; background: #080a0d; border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; padding: 30px 0; }

.nav-logo-container { width: 55px; height: 55px; border-radius: 12px; overflow: hidden; margin-bottom: 40px; border: 1px solid var(--border); }

.nav-logo-img { width: 100%; height: 100%; object-fit: cover; }

.nav-link { font-size: 1.4rem; color: var(--text-muted); margin: 20px 0; cursor: pointer; transition: 0.3s; }

.nav-link.active { color: var(--accent-blue); }

.main-view { flex: 1; overflow-y: auto; padding: 40px; }

.executive-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }

.status-pill { padding: 6px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 700; }

.status-pill.green { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid #10b981; }

/* Grid & Cards */

.grid-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.card { background: var(--card-surface); padding: 25px; border-radius: 16px; border: 1px solid var(--border); }

.wide { grid-column: span 2; }

.card-header h3 { margin: 0 0 20px 0; font-size: 0.85rem; text-transform: uppercase; color: var(--text-muted); letter-spacing: 1.5px; }

/* Buttons & Lists */

.btn-primary { width: 100%; background: var(--accent-blue); color: white; border: none; padding: 14px; border-radius: 8px; font-weight: 700; cursor: pointer; margin-top: 15px; }

.btn-accent { background: var(--accent-blue); color: white; border: none; padding: 10px 20px; border-radius: 8px; font-weight: 600; cursor: pointer; }

.btn-cancel { background: transparent; color: #ef4444; border: 1px solid #ef4444; margin-top: 10px; width: 100%; padding: 12px; border-radius: 8px; cursor: pointer; }

.check-list { list-style: none; padding: 0; }

.check-list li { padding: 12px; background: rgba(255,255,255,0.02); border-radius: 8px; margin-bottom: 8px; display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }

.card-divider { border: 0; border-top: 1px solid var(--border); margin: 15px 0; }

.list-label { color: var(--text-muted); font-weight: 700; text-transform: uppercase; font-size: 0.65rem; margin-bottom: 10px; display: block; }

