/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}

/* === VARIABLES === */
:root {
    --primary:       #6366f1;
    --primary-dark:  #4f46e5;
    --secondary:     #8b5cf6;
    --accent:        #06b6d4;
    --success:       #10b981;
    --warning:       #f59e0b;
    --danger:        #ef4444;
    --dark:          #0f172a;
    --gray-50:       #f8fafc;
    --gray-100:      #f1f5f9;
    --gray-200:      #e2e8f0;
    --gray-400:      #94a3b8;
    --gray-500:      #64748b;
    --gray-700:      #334155;
    --shadow-sm:     0 1px 3px rgba(0,0,0,0.1);
    --shadow:        0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg:     0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl:     0 20px 40px rgba(0,0,0,0.15);
    --radius:        12px;
    --radius-lg:     20px;
}

h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(99,102,241,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99,102,241,0.5); }
.btn-secondary { background: white; color: var(--primary); border: 2px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--primary); background: var(--gray-50); }
.btn-ghost { background: transparent; color: var(--gray-700); padding: 10px 16px; }
.btn-ghost:hover { background: var(--gray-100); }
.btn-white { background: white; color: var(--primary); font-weight: 700; }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.5); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #dc2626; transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,0.5);
    transition: all 0.3s;
}
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: var(--shadow); }
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}
.logo-icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--gray-500); font-weight: 500; font-size: 15px; transition: color 0.2s; }
.nav-links a:hover { color: var(--dark); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99,102,241,0.15), transparent),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(139,92,246,0.1), transparent),
        radial-gradient(ellipse 50% 50% at 20% 60%, rgba(6,182,212,0.08), transparent);
}
.hero-content { position: relative; max-width: 780px; margin: 0 auto; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,102,241,0.1);
    color: var(--primary);
    border: 1px solid rgba(99,102,241,0.2);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(44px, 7vw, 84px);
    font-weight: 900;
    letter-spacing: -3px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}
.hero p { font-size: 20px; color: var(--gray-500); max-width: 560px; margin: 0 auto 40px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; justify-content: center; margin-top: 72px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-number {
    font-size: 38px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label { font-size: 14px; color: var(--gray-500); margin-top: 4px; }

/* === SECTIONS === */
section { padding: 100px 40px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-label {
    font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--primary); margin-bottom: 12px;
}
.section-title { font-size: clamp(32px, 4vw, 50px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.section-desc { font-size: 18px; color: var(--gray-500); }
.container { max-width: 1200px; margin: 0 auto; }

/* === FEATURES === */
.features { background: white; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.feature-card {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    background: white;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); border-color: rgba(99,102,241,0.3); }
.feature-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 20px;
}
.fi-purple { background: rgba(99,102,241,0.1); }
.fi-cyan   { background: rgba(6,182,212,0.1); }
.fi-green  { background: rgba(16,185,129,0.1); }
.fi-orange { background: rgba(245,158,11,0.1); }
.fi-red    { background: rgba(239,68,68,0.1); }
.fi-blue   { background: rgba(59,130,246,0.1); }
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 15px; line-height: 1.7; }

/* === PRICING === */
.pricing { background: var(--gray-50); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; max-width: 1000px; margin: 0 auto;
}
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 2px solid var(--gray-200);
    position: relative;
    transition: all 0.3s;
}
.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99,102,241,0.03), rgba(139,92,246,0.03));
}
.pricing-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; padding: 4px 20px; border-radius: 100px;
    font-size: 12px; font-weight: 700; white-space: nowrap;
}
.pricing-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-500); margin-bottom: 8px; }
.pricing-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; }
.price-amount { font-size: 52px; font-weight: 900; }
.price-currency { font-size: 22px; font-weight: 700; color: var(--gray-500); align-self: flex-start; margin-top: 12px; }
.price-period { font-size: 15px; color: var(--gray-500); }
.pricing-desc { color: var(--gray-500); font-size: 14px; margin-bottom: 28px; }
.pricing-features { list-style: none; margin-bottom: 32px; }
.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 15px;
    display: flex; align-items: center; gap: 10px;
    color: var(--gray-700);
}
.pricing-features li::before { content: "✓"; color: var(--success); font-weight: 700; }
.pricing-features li.no::before { content: "✗"; color: var(--gray-400); }
.pricing-features li.no { color: var(--gray-400); }

/* === CTA === */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center; padding: 100px 40px; color: white;
}
.cta-section h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; margin-bottom: 16px; }
.cta-section p { font-size: 18px; opacity: 0.85; margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === FOOTER === */
footer { background: var(--dark); color: var(--gray-400); padding: 72px 40px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { color: white; font-size: 13px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--gray-400); transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex; justify-content: space-between; align-items: center; font-size: 14px;
}
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--gray-400); transition: color 0.2s; }
.footer-links a:hover { color: white; }

/* === AUTH === */
.auth-page { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; }
.auth-left {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 48px; color: white; position: relative; overflow: hidden;
}
.auth-left::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; background: rgba(255,255,255,0.06); border-radius: 50%;
}
.auth-left::after {
    content: ''; position: absolute; bottom: -150px; left: -100px;
    width: 500px; height: 500px; background: rgba(255,255,255,0.04); border-radius: 50%;
}
.auth-left-content { position: relative; z-index: 1; }
.auth-left .nav-logo { color: white; font-size: 24px; margin-bottom: 56px; display: flex; align-items: center; gap: 10px; }
.auth-left h2 { font-size: 38px; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.auth-left p { font-size: 17px; opacity: 0.85; line-height: 1.8; }
.auth-features { margin-top: 48px; display: flex; flex-direction: column; gap: 18px; }
.auth-feature { display: flex; align-items: center; gap: 16px; }
.auth-feature-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
}
.auth-feature-text { font-size: 15px; opacity: 0.9; }
.auth-copyright { position: relative; z-index: 1; font-size: 13px; opacity: 0.5; }
.auth-right {
    display: flex; align-items: center; justify-content: center;
    padding: 48px; background: var(--gray-50);
}
.auth-form-wrapper { width: 100%; max-width: 420px; }
.auth-form-header { margin-bottom: 32px; }
.auth-form-header h1 { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.auth-form-header p { color: var(--gray-500); font-size: 15px; }
.auth-form-header p a { color: var(--primary); font-weight: 600; }

/* === FORM === */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-control {
    width: 100%; padding: 13px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px; font-size: 15px;
    color: var(--dark); background: white;
    transition: all 0.2s; outline: none;
    font-family: inherit;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(99,102,241,0.1); }
.form-control::placeholder { color: var(--gray-400); }
.form-control.is-error { border-color: var(--danger); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-options { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; font-size: 14px; }
.form-options a { color: var(--primary); font-weight: 600; }
.checkbox-label { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 14px; color: var(--gray-700); }
.checkbox-label input { accent-color: var(--primary); }

/* === ALERTS === */
.alert {
    padding: 14px 18px; border-radius: 10px; font-size: 14px;
    font-weight: 500; margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
}
.alert-error   { background: rgba(239,68,68,0.1);  color: #dc2626; border: 1px solid rgba(239,68,68,0.2); }
.alert-success { background: rgba(16,185,129,0.1); color: #059669; border: 1px solid rgba(16,185,129,0.2); }

/* === DASHBOARD === */
.dashboard-layout { display: flex; min-height: 100vh; }
.sidebar {
    width: 260px; background: var(--dark);
    display: flex; flex-direction: column;
    padding: 20px 14px;
    position: fixed; top: 0; left: 0; bottom: 0;
    z-index: 100; overflow-y: auto;
}
.sidebar-logo {
    padding: 8px 10px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 20px;
}
.sidebar-logo .nav-logo { color: white; font-size: 20px; }
.sidebar-section { margin-bottom: 4px; }
.sidebar-label {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; color: var(--gray-500); padding: 0 10px; margin-bottom: 6px;
}
.sidebar-nav { list-style: none; }
.sidebar-nav li a {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 10px; border-radius: 9px;
    color: var(--gray-400); font-size: 14px; font-weight: 500;
    transition: all 0.2s; margin-bottom: 2px;
}
.sidebar-nav li a:hover { background: rgba(255,255,255,0.07); color: white; }
.sidebar-nav li a.active { background: rgba(99,102,241,0.2); color: #a5b4fc; }
.nav-icon { font-size: 17px; width: 20px; text-align: center; flex-shrink: 0; }
.sidebar-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 16px 0; }
.sidebar-bottom { margin-top: auto; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07); }
.user-card {
    display: flex; align-items: center; gap: 10px;
    padding: 10px; border-radius: 10px; background: rgba(255,255,255,0.05);
    margin-bottom: 6px;
}
.user-avatar {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 9px; display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.user-info { flex: 1; min-width: 0; }
.user-name { font-size: 13px; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-plan { font-size: 11px; color: var(--gray-500); }
.main-content { flex: 1; margin-left: 260px; display: flex; flex-direction: column; min-height: 100vh; }
.top-bar {
    background: white; border-bottom: 1px solid var(--gray-200);
    padding: 0 32px; height: 68px;
    display: flex; align-items: center; justify-content: space-between;
    position: sticky; top: 0; z-index: 50;
}
.top-bar-title { font-size: 20px; font-weight: 700; }
.top-bar-sub { font-size: 13px; color: var(--gray-500); }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.icon-btn {
    width: 38px; height: 38px; border-radius: 9px;
    border: 1px solid var(--gray-200); background: white;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px; transition: all 0.2s;
}
.icon-btn:hover { background: var(--gray-50); }
.content-area { padding: 28px 32px; flex: 1; }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-card {
    background: white; border-radius: var(--radius);
    padding: 22px; border: 1px solid var(--gray-200); transition: all 0.2s;
}
.stat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.stat-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.stat-icon {
    width: 46px; height: 46px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.si-purple { background: rgba(99,102,241,0.1); }
.si-cyan   { background: rgba(6,182,212,0.1); }
.si-green  { background: rgba(16,185,129,0.1); }
.si-orange { background: rgba(245,158,11,0.1); }
.trend-up   { background: rgba(16,185,129,0.1); color: #059669; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.trend-down { background: rgba(239,68,68,0.1);  color: #dc2626; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.stat-value { font-size: 30px; font-weight: 800; margin-bottom: 3px; }
.stat-label { font-size: 13px; color: var(--gray-500); }

/* === CARDS === */
.card { background: white; border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; }
.card-head {
    padding: 18px 24px; border-bottom: 1px solid var(--gray-200);
    display: flex; justify-content: space-between; align-items: center;
}
.card-head h3 { font-size: 15px; font-weight: 700; }
.dash-grid { display: grid; grid-template-columns: 5fr 3fr; gap: 20px; margin-bottom: 20px; }

/* === TABLE === */
table { width: 100%; border-collapse: collapse; }
thead th {
    font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gray-500);
    padding: 11px 20px; text-align: left;
    background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
tbody td { padding: 14px 20px; border-bottom: 1px solid var(--gray-100); font-size: 14px; vertical-align: middle; }
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover { background: var(--gray-50); }
.project-name { font-weight: 600; font-size: 14px; }
.project-url { font-size: 12px; color: var(--gray-400); }

/* === BADGES === */
.badge { display: inline-block; padding: 3px 10px; border-radius: 100px; font-size: 12px; font-weight: 600; }
.badge-active     { background: rgba(16,185,129,0.1);  color: #059669; }
.badge-pending    { background: rgba(245,158,11,0.1);  color: #d97706; }
.badge-inactive   { background: rgba(100,116,139,0.1); color: var(--gray-500); }
.badge-free       { background: rgba(100,116,139,0.1); color: var(--gray-500); }
.badge-pro        { background: rgba(99,102,241,0.1);  color: var(--primary); }
.badge-enterprise { background: rgba(245,158,11,0.1);  color: #d97706; }
.badge-owner      { background: rgba(180,83,9,0.1);    color: #b45309; font-weight: 700; }

/* === ACTIVITY === */
.activity-list { list-style: none; }
.activity-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px 20px; border-bottom: 1px solid var(--gray-100); }
.activity-item:last-child { border-bottom: none; }
.activity-dot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; flex-shrink: 0; }
.dot-purple { background: var(--primary); }
.dot-green  { background: var(--success); }
.dot-cyan   { background: var(--accent); }
.dot-orange { background: var(--warning); }
.activity-text { font-size: 14px; color: var(--gray-700); margin-bottom: 2px; }
.activity-time { font-size: 12px; color: var(--gray-400); }

/* === WELCOME BANNER === */
.welcome-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg); padding: 28px 32px; color: white;
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
}
.welcome-banner::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 220px; height: 220px; background: rgba(255,255,255,0.06); border-radius: 50%;
}
.welcome-banner::after {
    content: ''; position: absolute; bottom: -80px; right: 80px;
    width: 260px; height: 260px; background: rgba(255,255,255,0.04); border-radius: 50%;
}
.welcome-text { position: relative; z-index: 1; }
.welcome-text h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.welcome-text p { font-size: 15px; opacity: 0.85; }
.welcome-icon { font-size: 52px; position: relative; z-index: 1; }

/* === UPGRADE BANNER === */
.upgrade-banner {
    background: linear-gradient(135deg, rgba(99,102,241,0.07), rgba(139,92,246,0.07));
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-lg); padding: 22px 28px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    margin-top: 20px;
}
.upgrade-banner-text h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.upgrade-banner-text p  { font-size: 14px; color: var(--gray-500); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .navbar { padding: 0 20px; }
    .nav-links { display: none; }
    .auth-left { display: none; }
    .auth-page { grid-template-columns: 1fr; }
    .auth-right { padding: 40px 24px; }
    .sidebar { transform: translateX(-260px); transition: transform 0.3s; }
    .main-content { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 64px 20px; }
    .hero { padding: 100px 20px 60px; }
    .content-area { padding: 20px; }
    .top-bar { padding: 0 20px; }
}

/* === LUCIDE ICONS === */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.logo-icon [data-lucide]         { width: 20px; height: 20px; stroke: white; stroke-width: 2.5; }
.nav-icon [data-lucide]          { width: 17px; height: 17px; }
.feature-icon [data-lucide]      { width: 28px; height: 28px; stroke-width: 1.75; }
.auth-feature-icon [data-lucide] { width: 22px; height: 22px; stroke: white; }
.settings-nav-icon [data-lucide] { width: 16px; height: 16px; }
.stat-icon [data-lucide]         { width: 22px; height: 22px; stroke-width: 1.75; }
.welcome-icon [data-lucide]      { width: 48px; height: 48px; stroke: white; stroke-width: 1.5; }
.empty-icon [data-lucide]        { width: 52px; height: 52px; stroke: var(--gray-300); stroke-width: 1.25; }
.icon-btn [data-lucide]          { width: 18px; height: 18px; }
.alert [data-lucide],
.flash [data-lucide]             { width: 16px; height: 16px; flex-shrink: 0; }
.btn [data-lucide]               { width: 15px; height: 15px; }
.btn-approve [data-lucide],
.btn-reject  [data-lucide]       { width: 14px; height: 14px; }

/* Feature icon stroke colors */
.fi-purple [data-lucide] { stroke: var(--primary); }
.fi-cyan   [data-lucide] { stroke: var(--accent); }
.fi-green  [data-lucide] { stroke: var(--success); }
.fi-orange [data-lucide] { stroke: var(--warning); }
.fi-red    [data-lucide] { stroke: var(--danger); }
.fi-blue   [data-lucide] { stroke: #3b82f6; }

/* Stat icon stroke colors */
.si-purple [data-lucide] { stroke: var(--primary); }
.si-cyan   [data-lucide] { stroke: var(--accent); }
.si-green  [data-lucide] { stroke: var(--success); }
.si-orange [data-lucide] { stroke: var(--warning); }

/* Footer logo */
footer .logo-icon [data-lucide] { stroke: white; }
