/* === DASHBOARD === */
    .dashboard { padding: 6rem 2rem 4rem; max-width: 1400px; margin: 0 auto; }
    .welcome-header { text-align: center; margin-bottom: 3rem; }
    .welcome-header h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 800; margin-bottom: 0.5rem; background: linear-gradient(to right, #fff, #e0e7ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .welcome-header p { color: #94a3b8; font-size: 1.1rem; }

    .stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
    .stat-card { background: rgba(30,41,59,0.6); border: 1px solid rgba(99,102,241,0.3); border-radius: 1.5rem; padding: 1.5rem; text-align: center; backdrop-filter: blur(10px); transition: transform 0.3s; }
    .stat-card:hover { transform: translateY(-5px); }
    .stat-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 0.8rem; }
    .stat-value { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 0.3rem; }
    .stat-label { color: #94a3b8; font-size: 0.9rem; }

    .phase-section { margin-bottom: 4rem; }
    .phase-title { font-size: 1.8rem; font-weight: 700; color: #fff; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
    .phase-title i { color: var(--primary); }
    .phase-desc { color: #94a3b8; font-size: 1rem; margin-bottom: 2rem; }

    .roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.8rem; }
    .role-card { background: rgba(30,41,59,0.6); border: 1px solid rgba(99,102,241,0.3); border-radius: 1.5rem; padding: 1.8rem; backdrop-filter: blur(10px); transition: all 0.3s; }
    .role-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(99,102,241,0.2); }
    .role-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
    .role-title { font-size: 1.25rem; font-weight: 700; color: #e0e7ff; }
    .role-icon { font-size: 1.8rem; color: var(--primary); }
    .role-desc { color: #94a3b8; font-size: 0.95rem; margin-bottom: 1.2rem; line-height: 1.5; }
    .progress-container { background: rgba(15,23,42,0.8); border-radius: 999px; height: 8px; margin-bottom: 1rem; overflow: hidden; }
    .progress-bar { height: 100%; background: var(--gradient); width: 0%; transition: width 0.6s ease; border-radius: 999px; }
    .progress-text { font-size: 0.85rem; color: #94a3b8; display: flex; justify-content: space-between; margin-bottom: 1rem; }
    .start-btn { width: 100%; background: var(--gradient); color: white; padding: 0.9rem; border: none; border-radius: 999px; font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.5rem; transition: all 0.3s; }
    .start-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(99,102,241,0.3); }
    .start-btn:disabled { background: #475569; cursor: not-allowed; opacity: 0.7; }

    .cta-banner { background: var(--gradient); color: white; padding: 1.5rem; border-radius: 1.5rem; text-align: center; margin: 2rem 0; font-weight: 600; }
    .cta-banner strong { font-size: 1.2rem; }